streams/Zotlabs/Module/Wall_upload.php

56 lines
1 KiB
PHP
Raw Normal View History

2016-04-19 03:38:38 +00:00
<?php
namespace Zotlabs\Module;
require_once('include/photo/photo_driver.php');
require_once('include/channel.php');
2016-04-19 03:38:38 +00:00
require_once('include/photos.php');
class Wall_upload extends \Zotlabs\Web\Controller {
function post() {
$using_api = ((x($_FILES,'media')) ? true : false);
if($using_api) {
require_once('include/api.php');
2016-11-09 01:47:56 +00:00
if(api_user())
$channel = channelx_by_n(api_user());
2016-04-19 03:38:38 +00:00
}
else {
if(argc() > 1)
$channel = channelx_by_nick(argv(1));
2016-04-19 03:38:38 +00:00
}
if(! $channel) {
if($using_api)
return;
notice( t('Channel not found.') . EOL);
killme();
}
$observer = \App::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();
}
}