3 * @file mod/wall_attach.php
7 use Friendica\Core\Config;
8 use Friendica\Core\L10n;
9 use Friendica\Database\DBM;
10 use Friendica\Util\DateTimeFormat;
11 use Friendica\Util\Mimetype;
13 function wall_attach_post(App $a) {
15 $r_json = (x($_GET,'response') && $_GET['response']=='json');
19 $r = q("SELECT `user`.*, `contact`.`id` FROM `user` LEFT JOIN `contact` on `user`.`uid` = `contact`.`uid` WHERE `user`.`nickname` = '%s' AND `user`.`blocked` = 0 and `contact`.`self` = 1 LIMIT 1",
22 if (! DBM::is_result($r)) {
24 echo json_encode(['error'=>L10n::t('Invalid request.')]);
32 echo json_encode(['error'=>L10n::t('Invalid request.')]);
41 $page_owner_uid = $r[0]['uid'];
42 $page_owner_cid = $r[0]['id'];
43 $page_owner_nick = $r[0]['nickname'];
44 $community_page = (($r[0]['page-flags'] == PAGE_COMMUNITY) ? true : false);
46 if((local_user()) && (local_user() == $page_owner_uid))
49 if($community_page && remote_user()) {
51 if(is_array($_SESSION['remote'])) {
52 foreach($_SESSION['remote'] as $v) {
53 if($v['uid'] == $page_owner_uid) {
54 $contact_id = $v['cid'];
61 $r = q("SELECT `uid` FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `id` = %d AND `uid` = %d LIMIT 1",
63 intval($page_owner_uid)
65 if (DBM::is_result($r)) {
67 $visitor = $contact_id;
74 echo json_encode(['error'=>L10n::t('Permission denied.')]);
77 notice(L10n::t('Permission denied.') . EOL );
81 if(! x($_FILES,'userfile')) {
83 echo json_encode(['error'=>L10n::t('Invalid request.')]);
88 $src = $_FILES['userfile']['tmp_name'];
89 $filename = basename($_FILES['userfile']['name']);
90 $filesize = intval($_FILES['userfile']['size']);
92 $maxfilesize = Config::get('system','maxfilesize');
94 /* Found html code written in text field of form,
95 * when trying to upload a file with filesize
96 * greater than upload_max_filesize. Cause is unknown.
97 * Then Filesize gets <= 0.
101 $msg = L10n::t('Sorry, maybe your upload is bigger than the PHP configuration allows') . EOL .(L10n::t('Or - did you try to upload an empty file?'));
103 echo json_encode(['error'=>$msg]);
111 if(($maxfilesize) && ($filesize > $maxfilesize)) {
112 $msg = L10n::t('File exceeds size limit of %s', formatBytes($maxfilesize));
114 echo json_encode(['error'=>$msg]);
122 $filedata = @file_get_contents($src);
123 $mimetype = Mimetype::getContentType($filename);
124 $hash = get_guid(64);
125 $created = DateTimeFormat::utcNow();
127 $fields = ['uid' => $page_owner_uid, 'hash' => $hash, 'filename' => $filename, 'filetype' => $mimetype,
128 'filesize' => $filesize, 'data' => $filedata, 'created' => $created, 'edited' => $created,
129 'allow_cid' => '<' . $page_owner_cid . '>', 'allow_gid' => '','deny_cid' => '', 'deny_gid' => ''];
131 $r = dba::insert('attach', $fields);
136 $msg = L10n::t('File upload failed.');
138 echo json_encode(['error'=>$msg]);
145 $r = q("SELECT `id` FROM `attach` WHERE `uid` = %d AND `created` = '%s' AND `hash` = '%s' LIMIT 1",
146 intval($page_owner_uid),
151 if (! DBM::is_result($r)) {
152 $msg = L10n::t('File upload failed.');
154 echo json_encode(['error'=>$msg]);
162 echo json_encode(['ok'=>true]);
168 echo $lf . $lf . '[attachment]' . $r[0]['id'] . '[/attachment]' . $lf;