aboutsummaryrefslogblamecommitdiffstats
path: root/mod/wall_upload.php
blob: cee40744fdb74a0fdda36cb799bafc210165e516 (plain) (tree)
1
2
3
4
5
6
7
8
9

     
                          
                                   


 

                                








                                                            
                                        




                                


                                                                                            

                                         
         
 


                               

                                                       
         
 

                                       

                                                                                                
 
                                                      
 
                               

                               

                                        
         
 
                          
 



                                                     
                 
 
<?php

require_once('Photo.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 = null;

	if($nick) {		
		$r = q("SELECT channel.* from channel where channel_address = '%s' limit 1",
			dbesc($nick)
		);
		if($r)
			$channel = $r[0];
	}

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

	$observer = $a->get_observer();

	$args = array( 'source' => 'editor', 'album' => t('Wall Photos'), 
			'not_visible' => 1, 'contact_allow' => array($channel['channel_hash']));

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

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

	$m = $ret['body'];

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