2015-08-23 22:38:18 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
require_once('include/attach.php');
|
|
|
|
require_once('include/identity.php');
|
|
|
|
require_once('include/photos.php');
|
|
|
|
|
|
|
|
function wall_attach_post(&$a) {
|
|
|
|
|
2016-01-12 02:47:38 +01:00
|
|
|
$using_api = false;
|
|
|
|
|
2016-04-17 16:29:18 +02:00
|
|
|
if(App::$data['api_info'] && array_key_exists('media',$_FILES)) {
|
2016-01-12 02:47:38 +01:00
|
|
|
$using_api = true;
|
2016-04-17 16:29:18 +02:00
|
|
|
$user_info = App::$data['api_info'];
|
2015-08-23 22:38:18 +02:00
|
|
|
$nick = $user_info['screen_name'];
|
|
|
|
$channel = get_channel_by_nick($user_info['screen_name']);
|
2016-01-12 02:47:38 +01:00
|
|
|
}
|
|
|
|
elseif(argc() > 1)
|
|
|
|
$channel = get_channel_by_nick(argv(1));
|
2015-08-23 22:38:18 +02:00
|
|
|
|
|
|
|
if(! $channel)
|
|
|
|
killme();
|
|
|
|
|
2016-04-17 16:29:18 +02:00
|
|
|
$observer = App::get_observer();
|
2015-08-23 22:38:18 +02:00
|
|
|
|
|
|
|
|
|
|
|
$def_album = get_pconfig($channel['channel_id'],'system','photo_path');
|
|
|
|
$def_attach = get_pconfig($channel['channel_id'],'system','attach_path');
|
|
|
|
|
|
|
|
$r = attach_store($channel,(($observer) ? $observer['xchan_hash'] : ''),'', array('source' => 'editor', 'visible' => 0, 'album' => $def_album, 'directory' => $def_attach, 'allow_cid' => '<' . $channel['channel_hash'] . '>'));
|
|
|
|
|
|
|
|
if(! $r['success']) {
|
|
|
|
notice( $r['message'] . EOL);
|
|
|
|
killme();
|
|
|
|
}
|
|
|
|
|
|
|
|
if(intval($r['data']['is_photo'])) {
|
2016-01-12 02:47:38 +01:00
|
|
|
$s = "\n\n" . $r['body'] . "\n\n";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$s = "\n\n" . '[attachment]' . $r['data']['hash'] . ',' . $r['data']['revision'] . '[/attachment]' . "\n";
|
2015-08-23 22:38:18 +02:00
|
|
|
}
|
2016-01-12 02:47:38 +01:00
|
|
|
|
|
|
|
if($using_api)
|
|
|
|
return $s;
|
|
|
|
|
|
|
|
echo $s;
|
2015-08-23 22:38:18 +02:00
|
|
|
killme();
|
|
|
|
|
|
|
|
}
|