X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Ftagger.php;h=568b5fd54de1c87484ba501c08db4962e4647e08;hb=9435cc4b88de611407bf992f571e12e8f54b3c51;hp=5d3d1923e4425958b4d53a00e3ea436cd8553c76;hpb=e17db489eee549f47c39c9b5494063476ed4aeb0;p=friendica.git diff --git a/mod/tagger.php b/mod/tagger.php index 5d3d1923e4..568b5fd54d 100644 --- a/mod/tagger.php +++ b/mod/tagger.php @@ -2,20 +2,24 @@ /** * @file mod/tagger.php */ + use Friendica\App; use Friendica\Core\Hook; -use Friendica\Core\L10n; use Friendica\Core\Logger; +use Friendica\Core\Session; use Friendica\Core\System; use Friendica\Core\Worker; use Friendica\Database\DBA; +use Friendica\DI; use Friendica\Model\Item; +use Friendica\Protocol\Activity; use Friendica\Util\Strings; use Friendica\Util\XML; +use Friendica\Worker\Delivery; function tagger_content(App $a) { - if (!local_user() && !remote_user()) { + if (!Session::isAuthenticated()) { return; } @@ -65,9 +69,9 @@ function tagger_content(App $a) { $uri = Item::newURI($owner_uid); $xterm = XML::escape($term); - $post_type = (($item['resource-id']) ? L10n::t('photo') : L10n::t('status')); - $targettype = (($item['resource-id']) ? ACTIVITY_OBJ_IMAGE : ACTIVITY_OBJ_NOTE ); - $href = System::baseUrl() . '/display/' . $item['guid']; + $post_type = (($item['resource-id']) ? DI::l10n()->t('photo') : DI::l10n()->t('status')); + $targettype = (($item['resource-id']) ? Activity\ObjectType::IMAGE : Activity\ObjectType::NOTE ); + $href = DI::baseUrl() . '/display/' . $item['guid']; $link = XML::escape('' . "\n"); @@ -84,8 +88,8 @@ function tagger_content(App $a) { EOT; - $tagid = System::baseUrl() . '/search?tag=' . $xterm; - $objtype = ACTIVITY_OBJ_TAGTERM; + $tagid = DI::baseUrl() . '/search?tag=' . $xterm; + $objtype = Activity\ObjectType::TAGTERM; $obj = <<< EOT @@ -98,13 +102,13 @@ EOT; EOT; - $bodyverb = L10n::t('%1$s tagged %2$s\'s %3$s with %4$s'); + $bodyverb = DI::l10n()->t('%1$s tagged %2$s\'s %3$s with %4$s'); if (!isset($bodyverb)) { return; } - $termlink = html_entity_decode('⌗') . '[url=' . System::baseUrl() . '/search?tag=' . $term . ']'. $term . '[/url]'; + $termlink = html_entity_decode('⌗') . '[url=' . DI::baseUrl() . '/search?tag=' . $term . ']'. $term . '[/url]'; $arr = []; @@ -128,7 +132,7 @@ EOT; $plink = '[url=' . $item['plink'] . ']' . $post_type . '[/url]'; $arr['body'] = sprintf( $bodyverb, $ulink, $alink, $plink, $termlink ); - $arr['verb'] = ACTIVITY_TAG; + $arr['verb'] = Activity::TAG; $arr['target-type'] = $targettype; $arr['target'] = $target; $arr['object-type'] = $objtype; @@ -194,7 +198,7 @@ EOT; Hook::callAll('post_local_end', $arr); - Worker::add(PRIORITY_HIGH, "Notifier", "tag", $post_id); + Worker::add(PRIORITY_HIGH, "Notifier", Delivery::POST, $post_id); exit(); }