. * */ use Friendica\App; use Friendica\BaseModule; use Friendica\Content\ContactSelector; use Friendica\Content\Feature; use Friendica\Core\ACL; use Friendica\Core\Hook; use Friendica\Core\Logger; use Friendica\Core\Protocol; use Friendica\Core\Renderer; use Friendica\Core\Session; use Friendica\Core\Theme; use Friendica\Database\DBA; use Friendica\DI; use Friendica\Model\Contact; use Friendica\Model\Item; use Friendica\Model\Post; use Friendica\Model\Tag; use Friendica\Model\User; use Friendica\Model\Verb; use Friendica\Object\Post as PostObject; use Friendica\Object\Thread; use Friendica\Protocol\Activity; use Friendica\Util\Crypto; use Friendica\Util\DateTimeFormat; use Friendica\Util\Proxy; use Friendica\Util\Strings; use Friendica\Util\Temporal; use Friendica\Util\XML; /** * Render actions localized * * @param $item * @throws ImagickException * @throws \Friendica\Network\HTTPException\InternalServerErrorException */ function localize_item(&$item) { DI::profiler()->startRecording('rendering'); /// @todo The following functionality needs to be cleaned up. if (!empty($item['verb'])) { $activity = DI::activity(); $xmlhead = "<" . "?xml version='1.0' encoding='UTF-8' ?" . ">"; if (stristr($item['verb'], Activity::POKE)) { $verb = urldecode(substr($item['verb'], strpos($item['verb'],'#') + 1)); if (!$verb) { DI::profiler()->stopRecording(); return; } if ($item['object-type'] == "" || $item['object-type'] !== Activity\ObjectType::PERSON) { DI::profiler()->stopRecording(); return; } $obj = XML::parseString($xmlhead . $item['object']); $Bname = $obj->title; $Blink = $obj->id; $Bphoto = ""; foreach ($obj->link as $l) { $atts = $l->attributes(); switch ($atts['rel']) { case "alternate": $Blink = $atts['href']; case "photo": $Bphoto = $atts['href']; } } $author = ['uid' => 0, 'id' => $item['author-id'], 'network' => $item['author-network'], 'url' => $item['author-link']]; $A = '[url=' . Contact::magicLinkByContact($author) . ']' . $item['author-name'] . '[/url]'; if (!empty($Blink)) { $B = '[url=' . Contact::magicLink($Blink) . ']' . $Bname . '[/url]'; } else { $B = ''; } if ($Bphoto != "" && !empty($Blink)) { $Bphoto = '[url=' . Contact::magicLink($Blink) . '][img=80x80]' . $Bphoto . '[/img][/url]'; } /* * we can't have a translation string with three positions but no distinguishable text * So here is the translate string. */ $txt = DI::l10n()->t('%1$s poked %2$s'); // now translate the verb $poked_t = trim(sprintf($txt, '', '')); $txt = str_replace($poked_t, DI::l10n()->t($verb), $txt); // then do the sprintf on the translation string $item['body'] = sprintf($txt, $A, $B) . "\n\n\n" . $Bphoto; } if ($activity->match($item['verb'], Activity::TAG)) { $fields = ['author-id', 'author-link', 'author-name', 'author-network', 'verb', 'object-type', 'resource-id', 'body', 'plink']; $obj = Post::selectFirst($fields, ['uri' => $item['parent-uri']]); if (!DBA::isResult($obj)) { DI::profiler()->stopRecording(); return; } $author_arr = ['uid' => 0, 'id' => $item['author-id'], 'network' => $item['author-network'], 'url' => $item['author-link']]; $author = '[url=' . Contact::magicLinkByContact($author_arr) . ']' . $item['author-name'] . '[/url]'; $author_arr = ['uid' => 0, 'id' => $obj['author-id'], 'network' => $obj['author-network'], 'url' => $obj['author-link']]; $objauthor = '[url=' . Contact::magicLinkByContact($author_arr) . ']' . $obj['author-name'] . '[/url]'; switch ($obj['verb']) { case Activity::POST: switch ($obj['object-type']) { case Activity\ObjectType::EVENT: $post_type = DI::l10n()->t('event'); break; default: $post_type = DI::l10n()->t('status'); } break; default: if ($obj['resource-id']) { $post_type = DI::l10n()->t('photo'); $m=[]; preg_match("/\[url=([^]]*)\]/", $obj['body'], $m); $rr['plink'] = $m[1]; } else { $post_type = DI::l10n()->t('status'); } // Let's break everthing ... ;-) break; } $plink = '[url=' . $obj['plink'] . ']' . $post_type . '[/url]'; $parsedobj = XML::parseString($xmlhead . $item['object']); $tag = sprintf('#[url=%s]%s[/url]', $parsedobj->id, $parsedobj->content); $item['body'] = DI::l10n()->t('%1$s tagged %2$s\'s %3$s with %4$s', $author, $objauthor, $plink, $tag); } } $matches = null; if (preg_match_all('/@\[url=(.*?)\]/is', $item['body'], $matches, PREG_SET_ORDER)) { foreach ($matches as $mtch) { if (!strpos($mtch[1], 'zrl=')) { $item['body'] = str_replace($mtch[0], '@[url=' . Contact::magicLink($mtch[1]) . ']', $item['body']); } } } // add sparkle links to appropriate permalinks // Only create a redirection to a magic link when logged in if (!empty($item['plink']) && Session::isAuthenticated()) { $author = ['uid' => 0, 'id' => $item['author-id'], 'network' => $item['author-network'], 'url' => $item['author-link']]; $item['plink'] = Contact::magicLinkByContact($author, $item['plink']); } DI::profiler()->stopRecording(); } /** * Count the total of comments on this item and its desendants * @TODO proper type-hint + doc-tag * @param $item * @return int */ function count_descendants($item) { $total = count($item['children']); if ($total > 0) { foreach ($item['children'] as $child) { if (!visible_activity($child)) { $total --; } $total += count_descendants($child); } } return $total; } function visible_activity($item) { $activity = DI::activity(); if (empty($item['verb']) || $activity->isHidden($item['verb'])) { return false; } // @TODO below if() block can be rewritten to a single line: $isVisible = allConditionsHere; if ($activity->match($item['verb'], Activity::FOLLOW) && $item['object-type'] === Activity\ObjectType::NOTE && empty($item['self']) && $item['uid'] == local_user()) { return false; } return true; } function conv_get_blocklist() { if (!local_user()) { return []; } $str_blocked = str_replace(["\n", "\r"], ",", DI::pConfig()->get(local_user(), 'system', 'blocked')); if (empty($str_blocked)) { return []; } $blocklist = []; foreach (explode(',', $str_blocked) as $entry) { $cid = Contact::getIdForURL(trim($entry), 0, false); if (!empty($cid)) { $blocklist[] = $cid; } } return $blocklist; } /** * "Render" a conversation or list of items for HTML display. * There are two major forms of display: * - Sequential or unthreaded ("New Item View" or search results) * - conversation view * The $mode parameter decides between the various renderings and also * figures out how to determine page owner and other contextual items * that are based on unique features of the calling module. * @param App $a * @param array $items * @param $mode * @param $update * @param bool $preview * @param string $order * @param int $uid * @return string * @throws ImagickException * @throws \Friendica\Network\HTTPException\InternalServerErrorException */ function conversation(App $a, array $items, $mode, $update, $preview = false, $order = 'commented', $uid = 0) { DI::profiler()->startRecording('rendering'); $page = DI::page(); $page->registerFooterScript(Theme::getPathForFile('asset/typeahead.js/dist/typeahead.bundle.js')); $page->registerFooterScript(Theme::getPathForFile('js/friendica-tagsinput/friendica-tagsinput.js')); $page->registerStylesheet(Theme::getPathForFile('js/friendica-tagsinput/friendica-tagsinput.css')); $page->registerStylesheet(Theme::getPathForFile('js/friendica-tagsinput/friendica-tagsinput-typeahead.css')); $ssl_state = (local_user() ? true : false); $live_update_div = ''; $blocklist = conv_get_blocklist(); $previewing = (($preview) ? ' preview ' : ''); if ($mode === 'network') { $items = conversation_add_children($items, false, $order, $uid); if (!$update) { /* * The special div is needed for liveUpdate to kick in for this page. * We only launch liveUpdate if you aren't filtering in some incompatible * way and also you aren't writing a comment (discovered in javascript). */ $live_update_div = '
' . "\r\n" . "\r\n"; } } elseif ($mode === 'profile') { $items = conversation_add_children($items, false, $order, $uid); if (!$update) { $tab = 'posts'; if (!empty($_GET['tab'])) { $tab = Strings::escapeTags(trim($_GET['tab'])); } if ($tab === 'posts') { /* * This is ugly, but we can't pass the profile_uid through the session to the ajax updater, * because browser prefetching might change it on us. We have to deliver it with the page. */ $live_update_div = '' . "\r\n" . "\r\n"; } } } elseif ($mode === 'notes') { $items = conversation_add_children($items, false, $order, local_user()); if (!$update) { $live_update_div = '' . "\r\n" . "\r\n"; } } elseif ($mode === 'display') { $items = conversation_add_children($items, false, $order, $uid); if (!$update) { $live_update_div = '' . "\r\n" . ""; } } elseif ($mode === 'community') { $items = conversation_add_children($items, true, $order, $uid); if (!$update) { $live_update_div = '' . "\r\n" . "\r\n"; } } elseif ($mode === 'contacts') { $items = conversation_add_children($items, false, $order, $uid); if (!$update) { $live_update_div = '' . "\r\n" . "\r\n"; } } elseif ($mode === 'search') { $live_update_div = '' . "\r\n"; } $page_dropping = ((local_user() && local_user() == $uid) ? true : false); if (!$update) { $_SESSION['return_path'] = DI::args()->getQueryString(); } $cb = ['items' => $items, 'mode' => $mode, 'update' => $update, 'preview' => $preview]; Hook::callAll('conversation_start', $cb); $items = $cb['items']; $conv_responses = [ 'like' => [], 'dislike' => [], 'attendyes' => [], 'attendno' => [], 'attendmaybe' => [], 'announce' => [], ]; if (DI::pConfig()->get(local_user(), 'system', 'hide_dislike')) { unset($conv_responses['dislike']); } // array with html for each thread (parent+comments) $threads = []; $threadsid = -1; $page_template = Renderer::getMarkupTemplate("conversation.tpl"); $formSecurityToken = BaseModule::getFormSecurityToken('contact_action'); if (!empty($items)) { if (in_array($mode, ['community', 'contacts'])) { $writable = true; } else { $writable = ($items[0]['uid'] == 0) && in_array($items[0]['network'], Protocol::FEDERATED); } if (!local_user()) { $writable = false; } if (in_array($mode, ['filed', 'search', 'contact-posts'])) { /* * "New Item View" on network page or search page results * - just loop through the items and format them minimally for display */ $tpl = 'search_item.tpl'; $uriids = []; foreach ($items as $item) { if (in_array($item['uri-id'], $uriids)) { continue; } $uriids[] = $item['uri-id']; if (!visible_activity($item)) { continue; } if (in_array($item['author-id'], $blocklist)) { continue; } $threadsid++; // prevent private email from leaking. if ($item['network'] === Protocol::MAIL && local_user() != $item['uid']) { continue; } $profile_name = $item['author-name']; if (!empty($item['author-link']) && empty($item['author-name'])) { $profile_name = $item['author-link']; } $tags = Tag::populateFromItem($item); $author = ['uid' => 0, 'id' => $item['author-id'], 'network' => $item['author-network'], 'url' => $item['author-link']]; $profile_link = Contact::magicLinkByContact($author); $sparkle = ''; if (strpos($profile_link, 'redir/') === 0) { $sparkle = ' sparkle'; } $locate = ['location' => $item['location'], 'coord' => $item['coord'], 'html' => '']; Hook::callAll('render_location', $locate); $location_html = $locate['html'] ?: Strings::escapeHtml($locate['location'] ?: $locate['coord'] ?: ''); localize_item($item); if ($mode === 'filed') { $dropping = true; } else { $dropping = false; } $drop = [ 'dropping' => $dropping, 'pagedrop' => $page_dropping, 'select' => DI::l10n()->t('Select'), 'delete' => DI::l10n()->t('Delete'), ]; $likebuttons = [ 'like' => null, 'dislike' => null, 'share' => null, 'announce' => null, ]; if (DI::pConfig()->get(local_user(), 'system', 'hide_dislike')) { unset($likebuttons['dislike']); } $body_html = Item::prepareBody($item, true, $preview); list($categories, $folders) = DI::contentItem()->determineCategoriesTerms($item, local_user()); if (!empty($item['content-warning']) && DI::pConfig()->get(local_user(), 'system', 'disable_cw', false)) { $title = ucfirst($item['content-warning']); } else { $title = $item['title']; } $tmp_item = [ 'template' => $tpl, 'id' => ($preview ? 'P0' : $item['id']), 'guid' => ($preview ? 'Q0' : $item['guid']), 'commented' => $item['commented'], 'received' => $item['received'], 'created_date' => $item['created'], 'uriid' => $item['uri-id'], 'network' => $item['network'], 'network_name' => ContactSelector::networkToName($item['author-network'], $item['author-link'], $item['network']), 'network_icon' => ContactSelector::networkToIcon($item['network'], $item['author-link']), 'linktitle' => DI::l10n()->t('View %s\'s profile @ %s', $profile_name, $item['author-link']), 'profile_url' => $profile_link, 'item_photo_menu_html' => item_photo_menu($item, $formSecurityToken), 'name' => $profile_name, 'sparkle' => $sparkle, 'lock' => false, 'thumb' => DI::baseUrl()->remove(Contact::getAvatarUrlForUrl($item['author-link'], $item['uid'], Proxy::SIZE_THUMB)), 'title' => $title, 'body_html' => $body_html, 'tags' => $tags['tags'], 'hashtags' => $tags['hashtags'], 'mentions' => $tags['mentions'], 'implicit_mentions' => $tags['implicit_mentions'], 'txt_cats' => DI::l10n()->t('Categories:'), 'txt_folders' => DI::l10n()->t('Filed under:'), 'has_cats' => ((count($categories)) ? 'true' : ''), 'has_folders' => ((count($folders)) ? 'true' : ''), 'categories' => $categories, 'folders' => $folders, 'text' => strip_tags($body_html), 'localtime' => DateTimeFormat::local($item['created'], 'r'), 'ago' => (($item['app']) ? DI::l10n()->t('%s from %s', Temporal::getRelativeDate($item['created']), $item['app']) : Temporal::getRelativeDate($item['created'])), 'location_html' => $location_html, 'indent' => '', 'owner_name' => '', 'owner_url' => '', 'owner_photo' => DI::baseUrl()->remove(Contact::getAvatarUrlForUrl($item['owner-link'], $item['uid'], Proxy::SIZE_THUMB)), 'plink' => Item::getPlink($item), 'edpost' => false, 'isstarred' => 'unstarred', 'star' => false, 'drop' => $drop, 'vote' => $likebuttons, 'like_html' => '', 'dislike_html' => '', 'comment_html' => '', 'conv' => (($preview) ? '' : ['href'=> 'display/'.$item['guid'], 'title'=> DI::l10n()->t('View in context')]), 'previewing' => $previewing, 'wait' => DI::l10n()->t('Please wait'), 'thread_level' => 1, ]; $arr = ['item' => $item, 'output' => $tmp_item]; Hook::callAll('display_item', $arr); $threads[$threadsid]['id'] = $item['id']; $threads[$threadsid]['network'] = $item['network']; $threads[$threadsid]['items'] = [$arr['output']]; } } else { // Normal View $page_template = Renderer::getMarkupTemplate("threaded_conversation.tpl"); $conv = new Thread($mode, $preview, $writable); /* * get all the topmost parents * this shouldn't be needed, as we should have only them in our array * But for now, this array respects the old style, just in case */ foreach ($items as $item) { if (in_array($item['author-id'], $blocklist)) { continue; } // Can we put this after the visibility check? builtin_activity_puller($item, $conv_responses); // Only add what is visible if ($item['network'] === Protocol::MAIL && local_user() != $item['uid']) { continue; } if (!visible_activity($item)) { continue; } /// @todo Check if this call is needed or not $arr = ['item' => $item]; Hook::callAll('display_item', $arr); $item['pagedrop'] = $page_dropping; if ($item['gravity'] == GRAVITY_PARENT) { $item_object = new PostObject($item); $conv->addParent($item_object); } } $threads = $conv->getTemplateData($conv_responses, $formSecurityToken); if (!$threads) { Logger::log('[ERROR] conversation : Failed to get template data.', Logger::DEBUG); $threads = []; } } } $o = Renderer::replaceMacros($page_template, [ '$baseurl' => DI::baseUrl()->get($ssl_state), '$return_path' => DI::args()->getQueryString(), '$live_update' => $live_update_div, '$remove' => DI::l10n()->t('remove'), '$mode' => $mode, '$update' => $update, '$threads' => $threads, '$dropping' => ($page_dropping ? DI::l10n()->t('Delete Selected Items') : False), ]); DI::profiler()->stopRecording(); return $o; } /** * Adds some information (Causer, post reason, direction) to the fetched post row. * * @param array $row Post row * @param array $activity Contact data of the resharer * * @return array items with parents and comments */ function conversation_add_row_information(array $row, array $activity) { DI::profiler()->startRecording('rendering'); if ($row['uid'] == 0) { $row['writable'] = in_array($row['network'], Protocol::FEDERATED); } if (!empty($activity)) { if (($row['gravity'] == GRAVITY_PARENT)) { $row['post-reason'] = Item::PR_ANNOUNCEMENT; $row = array_merge($row, $activity); $contact = Contact::getById($activity['causer-id'], ['url', 'name', 'thumb']); $row['causer-link'] = $contact['url']; $row['causer-avatar'] = $contact['thumb']; $row['causer-name'] = $contact['name']; } elseif (($row['gravity'] == GRAVITY_ACTIVITY) && ($row['verb'] == Activity::ANNOUNCE) && ($row['author-id'] == $activity['causer-id'])) { return $row; } } switch ($row['post-reason']) { case Item::PR_TO: $row['direction'] = ['direction' => 7, 'title' => DI::l10n()->t('You had been addressed (%s).', 'to')]; break; case Item::PR_CC: $row['direction'] = ['direction' => 7, 'title' => DI::l10n()->t('You had been addressed (%s).', 'cc')]; break; case Item::PR_BTO: $row['direction'] = ['direction' => 7, 'title' => DI::l10n()->t('You had been addressed (%s).', 'bto')]; break; case Item::PR_BCC: $row['direction'] = ['direction' => 7, 'title' => DI::l10n()->t('You had been addressed (%s).', 'bcc')]; break; case Item::PR_FOLLOWER: $row['direction'] = ['direction' => 6, 'title' => DI::l10n()->t('You are following %s.', $row['author-name'])]; break; case Item::PR_TAG: $row['direction'] = ['direction' => 4, 'title' => DI::l10n()->t('Tagged')]; break; case Item::PR_ANNOUNCEMENT: if (!empty($row['causer-id']) && DI::pConfig()->get(local_user(), 'system', 'display_resharer')) { $row['owner-id'] = $row['causer-id']; $row['owner-link'] = $row['causer-link']; $row['owner-avatar'] = $row['causer-avatar']; $row['owner-name'] = $row['causer-name']; } if (($row['gravity'] == GRAVITY_PARENT) && !empty($row['causer-id'])) { $causer = ['uid' => 0, 'id' => $row['causer-id'], 'network' => $row['causer-network'], 'url' => $row['causer-link']]; $row['reshared'] = DI::l10n()->t('%s reshared this.', '' . htmlentities($row['causer-name']) . ''); } $row['direction'] = ['direction' => 3, 'title' => (empty($row['causer-id']) ? DI::l10n()->t('Reshared') : DI::l10n()->t('Reshared by %s <%s>', $row['causer-name'], $row['causer-link']))]; break; case Item::PR_COMMENT: $row['direction'] = ['direction' => 5, 'title' => DI::l10n()->t('%s is participating in this thread.', $row['author-name'])]; break; case Item::PR_STORED: $row['direction'] = ['direction' => 8, 'title' => DI::l10n()->t('Stored')]; break; case Item::PR_GLOBAL: $row['direction'] = ['direction' => 9, 'title' => DI::l10n()->t('Global')]; break; case Item::PR_RELAY: $row['direction'] = ['direction' => 10, 'title' => (empty($row['causer-id']) ? DI::l10n()->t('Relayed') : DI::l10n()->t('Relayed by %s <%s>', $row['causer-name'], $row['causer-link']))]; break; case Item::PR_FETCHED: $row['direction'] = ['direction' => 2, 'title' => (empty($row['causer-id']) ? DI::l10n()->t('Fetched') : DI::l10n()->t('Fetched because of %s <%s>', $row['causer-name'], $row['causer-link']))]; break; } DI::profiler()->stopRecording(); return $row; } /** * Add comments to top level entries that had been fetched before * * The system will fetch the comments for the local user whenever possible. * This behaviour is currently needed to allow commenting on Friendica posts. * * @param array $parents Parent items * * @param $block_authors * @param $order * @param $uid * @return array items with parents and comments * @throws \Friendica\Network\HTTPException\InternalServerErrorException */ function conversation_add_children(array $parents, $block_authors, $order, $uid) { DI::profiler()->startRecording('rendering'); if (count($parents) > 1) { $max_comments = DI::config()->get('system', 'max_comments', 100); } else { $max_comments = DI::config()->get('system', 'max_display_comments', 1000); } $params = ['order' => ['uri-id' => true, 'uid' => true]]; $activities = []; $uriids = []; $commentcounter = []; $activitycounter = []; foreach ($parents AS $parent) { if (!empty($parent['thr-parent-id']) && !empty($parent['gravity']) && ($parent['gravity'] == GRAVITY_ACTIVITY)) { $uriid = $parent['thr-parent-id']; if (!empty($parent['author-id'])) { $activities[$uriid] = ['causer-id' => $parent['author-id']]; foreach (['commented', 'received', 'created'] as $orderfields) { if (!empty($parent[$orderfields])) { $activities[$uriid][$orderfields] = $parent[$orderfields]; } } } } else { $uriid = $parent['uri-id']; } $uriids[] = $uriid; $commentcounter[$uriid] = 0; $activitycounter[$uriid] = 0; } $condition = ['parent-uri-id' => $uriids]; if ($block_authors) { $condition['author-hidden'] = false; } $condition = DBA::mergeConditions($condition, ["`uid` IN (0, ?) AND (`vid` != ? OR `vid` IS NULL)", $uid, Verb::getID(Activity::FOLLOW)]); $thread_items = Post::selectForUser(local_user(), array_merge(Item::DISPLAY_FIELDLIST, ['pinned', 'contact-uid', 'gravity', 'post-type', 'post-reason']), $condition, $params); $items = []; while ($row = Post::fetch($thread_items)) { if (!empty($items[$row['uri-id']]) && ($row['uid'] == 0)) { continue; } if ($max_comments > 0) { if (($row['gravity'] == GRAVITY_COMMENT) && (++$commentcounter[$row['parent-uri-id']] > $max_comments)) { continue; } if (($row['gravity'] == GRAVITY_ACTIVITY) && (++$activitycounter[$row['parent-uri-id']] > $max_comments)) { continue; } } $items[$row['uri-id']] = conversation_add_row_information($row, $activities[$row['uri-id']] ?? []); } DBA::close($thread_items); $items = conv_sort($items, $order); DI::profiler()->stopRecording(); return $items; } function item_photo_menu($item, string $formSecurityToken) { DI::profiler()->startRecording('rendering'); $sub_link = ''; $poke_link = ''; $contact_url = ''; $pm_url = ''; $status_link = ''; $photos_link = ''; $posts_link = ''; $block_link = ''; $ignore_link = ''; if (local_user() && local_user() == $item['uid'] && $item['gravity'] == GRAVITY_PARENT && !$item['self'] && !$item['mention']) { $sub_link = 'javascript:doFollowThread(' . $item['id'] . '); return false;'; } $author = ['uid' => 0, 'id' => $item['author-id'], 'network' => $item['author-network'], 'url' => $item['author-link']]; $profile_link = Contact::magicLinkByContact($author, $item['author-link']); $sparkle = (strpos($profile_link, 'redir/') === 0); $cid = 0; $pcid = $item['author-id']; $network = ''; $rel = 0; $condition = ['uid' => local_user(), 'nurl' => Strings::normaliseLink($item['author-link'])]; $contact = DBA::selectFirst('contact', ['id', 'network', 'rel'], $condition); if (DBA::isResult($contact)) { $cid = $contact['id']; $network = $contact['network']; $rel = $contact['rel']; } if ($sparkle) { $status_link = $profile_link . '/status'; $photos_link = str_replace('/profile/', '/photos/', $profile_link); $profile_link = $profile_link . '/profile'; } if (!empty($pcid)) { $contact_url = 'contact/' . $pcid; $posts_link = $contact_url . '/posts'; $block_link = $item['self'] ? '' : $contact_url . '/block?t=' . $formSecurityToken; $ignore_link = $item['self'] ? '' : $contact_url . '/ignore?t=' . $formSecurityToken; } if ($cid && !$item['self']) { $contact_url = 'contact/' . $cid; $poke_link = $contact_url . '/poke'; $posts_link = $contact_url . '/posts'; if (in_array($network, [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA])) { $pm_url = 'message/new/' . $cid; } } if (local_user()) { $menu = [ DI::l10n()->t('Follow Thread') => $sub_link, DI::l10n()->t('View Status') => $status_link, DI::l10n()->t('View Profile') => $profile_link, DI::l10n()->t('View Photos') => $photos_link, DI::l10n()->t('Network Posts') => $posts_link, DI::l10n()->t('View Contact') => $contact_url, DI::l10n()->t('Send PM') => $pm_url, DI::l10n()->t('Block') => $block_link, DI::l10n()->t('Ignore') => $ignore_link ]; if (!empty($item['language'])) { $menu[DI::l10n()->t('Languages')] = 'javascript:alert(\'' . Item::getLanguageMessage($item) . '\');'; } if ($network == Protocol::DFRN) { $menu[DI::l10n()->t("Poke")] = $poke_link; } if ((($cid == 0) || ($rel == Contact::FOLLOWER)) && in_array($item['network'], Protocol::FEDERATED)) { $menu[DI::l10n()->t('Connect/Follow')] = 'follow?url=' . urlencode($item['author-link']) . '&auto=1'; } } else { $menu = [DI::l10n()->t('View Profile') => $item['author-link']]; } $args = ['item' => $item, 'menu' => $menu]; Hook::callAll('item_photo_menu', $args); $menu = $args['menu']; $o = ''; foreach ($menu as $k => $v) { if (strpos($v, 'javascript:') === 0) { $v = substr($v, 11); $o .= '