X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fwall_attach.php;h=0324a5581ca9a674d48ac08381edd6289e392964;hb=1f535016d473b2e619ff9dc5b45c75b45be92a70;hp=9b790a440ef08692371a062d8c2d109ae2e7afea;hpb=895b3abf320a28ecf0f797f4f4900e6baf429308;p=friendica.git diff --git a/mod/wall_attach.php b/mod/wall_attach.php index 9b790a440e..0324a5581c 100644 --- a/mod/wall_attach.php +++ b/mod/wall_attach.php @@ -6,11 +6,10 @@ use Friendica\App; use Friendica\Core\Config; use Friendica\Core\L10n; -use Friendica\Core\System; +use Friendica\Core\Session; use Friendica\Database\DBA; -use Friendica\Model\Contact; -use Friendica\Util\DateTimeFormat; -use Friendica\Util\Mimetype; +use Friendica\Model\Attach; +use Friendica\Model\User; use Friendica\Util\Strings; function wall_attach_post(App $a) { @@ -40,43 +39,26 @@ function wall_attach_post(App $a) { } $can_post = false; - $visitor = 0; $page_owner_uid = $r[0]['uid']; $page_owner_cid = $r[0]['id']; - $page_owner_nick = $r[0]['nickname']; - $community_page = (($r[0]['page-flags'] == Contact::PAGE_COMMUNITY) ? true : false); + $community_page = (($r[0]['page-flags'] == User::PAGE_FLAGS_COMMUNITY) ? true : false); - if ((local_user()) && (local_user() == $page_owner_uid)) { + if (local_user() && (local_user() == $page_owner_uid)) { $can_post = true; - } else { - if ($community_page && remote_user()) { - $contact_id = 0; - - if (is_array($_SESSION['remote'])) { - foreach ($_SESSION['remote'] as $v) { - if ($v['uid'] == $page_owner_uid) { - $contact_id = $v['cid']; - break; - } - } - } - - if ($contact_id > 0) { - $r = q("SELECT `uid` FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `id` = %d AND `uid` = %d LIMIT 1", - intval($contact_id), - intval($page_owner_uid) - ); + } elseif ($community_page && !empty(Session::getRemoteContactID($page_owner_uid))) { + $contact_id = Session::getRemoteContactID($page_owner_uid); + $r = q("SELECT `uid` FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `id` = %d AND `uid` = %d LIMIT 1", + intval($contact_id), + intval($page_owner_uid) + ); - if (DBA::isResult($r)) { - $can_post = true; - $visitor = $contact_id; - } - } + if (DBA::isResult($r)) { + $can_post = true; } } - if (! $can_post) { + if (!$can_post) { if ($r_json) { echo json_encode(['error' => L10n::t('Permission denied.')]); exit(); @@ -126,20 +108,11 @@ function wall_attach_post(App $a) { exit(); } - $filedata = @file_get_contents($src); - $mimetype = Mimetype::getContentType($filename); - $hash = System::createGUID(64); - $created = DateTimeFormat::utcNow(); - - $fields = ['uid' => $page_owner_uid, 'hash' => $hash, 'filename' => $filename, 'filetype' => $mimetype, - 'filesize' => $filesize, 'data' => $filedata, 'created' => $created, 'edited' => $created, - 'allow_cid' => '<' . $page_owner_cid . '>', 'allow_gid' => '','deny_cid' => '', 'deny_gid' => '']; - - $r = DBA::insert('attach', $fields); + $newid = Attach::storeFile($src, $page_owner_uid, $filename, '<' . $page_owner_cid . '>'); @unlink($src); - if (! $r) { + if ($newid === false) { $msg = L10n::t('File upload failed.'); if ($r_json) { echo json_encode(['error' => $msg]); @@ -149,30 +122,14 @@ function wall_attach_post(App $a) { exit(); } - $r = q("SELECT `id` FROM `attach` WHERE `uid` = %d AND `created` = '%s' AND `hash` = '%s' LIMIT 1", - intval($page_owner_uid), - DBA::escape($created), - DBA::escape($hash) - ); - - if (! DBA::isResult($r)) { - $msg = L10n::t('File upload failed.'); - if ($r_json) { - echo json_encode(['error' => $msg]); - } else { - echo $msg . EOL; - } - exit(); - } - if ($r_json) { - echo json_encode(['ok' => true]); + echo json_encode(['ok' => true, 'id' => $newid]); exit(); } $lf = "\n"; - echo $lf . $lf . '[attachment]' . $r[0]['id'] . '[/attachment]' . $lf; + echo $lf . $lf . '[attachment]' . $newid . '[/attachment]' . $lf; exit(); // NOTREACHED