aboutsummaryrefslogtreecommitdiffstats
path: root/mod/wall_upload.php
blob: 31a497f0f8767cc9333e9841bf01ce7fa4563fad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php

require_once('include/photo/photo_driver.php');
require_once('include/identity.php');
require_once('include/photos.php');



function wall_upload_post(&$a) {


	$using_api = ((x($_FILES,'media')) ? true : false); 

	if($using_api) {
		require_once('include/api.php');
		$user_info = api_get_user($a);
		$nick = $user_info['screen_name'];
	}
	else {
		if(argc() > 1)
			$nick = argv(1);
	}

	$channel = (($nick) ? get_channel_by_nick($nick) : false);

	if(! $channel) {
		if($using_api)
			return;
		notice( t('Channel not found.') . EOL);
		killme();
	}

	$observer = $a->get_observer();

	$args = array( 'source' => 'editor', 'visible' => 0, 'contact_allow' => array($channel['channel_hash']));

 	$ret = photo_upload($channel,$observer,$args);

	if(! $ret['success']) {
		if($using_api)
			return;
		notice($ret['message']);
		killme();
	}

	if($using_api)
		return("\n\n" . $ret['body'] . "\n\n");
	else
		echo  "\n\n" . $ret['body'] . "\n\n";
	killme();
}