1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/hubzilla_ynh.git synced 2024-09-03 19:26:21 +02:00
hubzilla_ynh/sources/mod/wall_attach.php

50 lines
1.2 KiB
PHP
Raw Normal View History

<?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'];
$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));
if(! $channel)
killme();
2016-04-17 16:29:18 +02:00
$observer = App::get_observer();
$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";
}
2016-01-12 02:47:38 +01:00
if($using_api)
return $s;
echo $s;
killme();
}