X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fsubthread.php;h=aa65b86218dfc99af5425267d8d47b8c9c941281;hb=11e71780b97811af7a3042dd3fda9119b7d4e149;hp=e3cfe39e6e73b58ff203333abc1f1b9c3cfdf42a;hpb=748fb8b94693ea468ef6b539d6268ea3f7ab9bea;p=friendica.git diff --git a/mod/subthread.php b/mod/subthread.php index e3cfe39e6e..aa65b86218 100644 --- a/mod/subthread.php +++ b/mod/subthread.php @@ -2,27 +2,29 @@ /** * @file mod/subthread.php */ + use Friendica\App; -use Friendica\Core\Addon; +use Friendica\Core\Hook; use Friendica\Core\L10n; use Friendica\Core\Logger; +use Friendica\Core\Session; use Friendica\Core\System; use Friendica\Database\DBA; use Friendica\Model\Item; +use Friendica\Protocol\Activity; use Friendica\Util\Security; use Friendica\Util\Strings; - -require_once 'include/items.php'; +use Friendica\Util\XML; function subthread_content(App $a) { - if (!local_user() && !remote_user()) { + if (!Session::isAuthenticated()) { return; } - $activity = ACTIVITY_FOLLOW; + $activity = Activity::FOLLOW; - $item_id = (($a->argc > 1) ? notags(trim($a->argv[1])) : 0); + $item_id = (($a->argc > 1) ? Strings::escapeTags(trim($a->argv[1])) : 0); $condition = ["`parent` = ? OR `parent-uri` = ? AND `parent` = `id`", $item_id, $item_id]; $item = Item::selectFirst([], $condition); @@ -87,8 +89,8 @@ function subthread_content(App $a) { $uri = Item::newURI($owner_uid); $post_type = (($item['resource-id']) ? L10n::t('photo') : L10n::t('status')); - $objtype = (($item['resource-id']) ? ACTIVITY_OBJ_IMAGE : ACTIVITY_OBJ_NOTE ); - $link = Strings::escape('' . "\n") ; + $objtype = (($item['resource-id']) ? Activity\ObjectType::IMAGE : Activity\ObjectType::NOTE ); + $link = XML::escape('' . "\n"); $body = $item['body']; $obj = <<< EOT @@ -129,7 +131,7 @@ EOT; $ulink = '[url=' . $contact['url'] . ']' . $contact['name'] . '[/url]'; $alink = '[url=' . $item['author-link'] . ']' . $item['author-name'] . '[/url]'; - $plink = '[url=' . System::baseUrl() . '/display/' . $owner['nickname'] . '/' . $item['id'] . ']' . $post_type . '[/url]'; + $plink = '[url=' . System::baseUrl() . '/display/' . $item['guid'] . ']' . $post_type . '[/url]'; $arr['body'] = sprintf( $bodyverb, $ulink, $alink, $plink ); $arr['verb'] = $activity; @@ -150,8 +152,8 @@ EOT; $arr['id'] = $post_id; - Addon::callHooks('post_local_end', $arr); + Hook::callAll('post_local_end', $arr); - killme(); + exit(); }