3 * @copyright Copyright (C) 2020, Friendica
5 * @license GNU AGPL version 3 or any later version
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as
9 * published by the Free Software Foundation, either version 3 of the
10 * License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
23 use Friendica\Content\Pager;
24 use Friendica\Content\Text\BBCode;
25 use Friendica\Content\Text\HTML;
26 use Friendica\Core\ACL;
27 use Friendica\Core\Logger;
28 use Friendica\Core\Protocol;
29 use Friendica\Core\Renderer;
30 use Friendica\Core\Session;
31 use Friendica\Database\DBA;
33 use Friendica\Model\Contact;
34 use Friendica\Model\Item;
35 use Friendica\Model\Profile;
36 use Friendica\Module\Objects;
37 use Friendica\Network\HTTPException;
38 use Friendica\Protocol\ActivityPub;
39 use Friendica\Protocol\DFRN;
40 use Friendica\Util\Strings;
42 function display_init(App $a)
44 if (ActivityPub::isRequest()) {
45 Objects::rawContent(['guid' => $a->argv[1] ?? null]);
48 if (DI::config()->get('system', 'block_public') && !Session::isAuthenticated()) {
52 $nick = (($a->argc > 1) ? $a->argv[1] : '');
55 $item_user = local_user();
57 $fields = ['id', 'parent', 'author-id', 'body', 'uid', 'guid'];
59 // If there is only one parameter, then check if this parameter could be a guid
63 // Does the local user have this item?
65 $item = Item::selectFirstForUser(local_user(), $fields, ['guid' => $a->argv[1], 'uid' => local_user()]);
66 if (DBA::isResult($item)) {
67 $nick = $a->user["nickname"];
71 // Is this item private but could be visible to the remove visitor?
72 if (!DBA::isResult($item) && remote_user()) {
73 $item = Item::selectFirst($fields, ['guid' => $a->argv[1], 'private' => Item::PRIVATE, 'origin' => true]);
74 if (DBA::isResult($item)) {
75 if (!Contact::isFollower(remote_user(), $item['uid'])) {
78 $item_user = $item['uid'];
83 // Is it an item with uid=0?
84 if (!DBA::isResult($item)) {
85 $item = Item::selectFirstForUser(local_user(), $fields, ['guid' => $a->argv[1], 'private' => [Item::PUBLIC, Item::UNLISTED], 'uid' => 0]);
87 } elseif ($a->argc >= 3 && $nick == 'feed-item') {
88 $item_id = $a->argv[2];
89 if (substr($item_id, -5) == '.atom') {
90 $item_id = substr($item_id, 0, -5);
92 $item = Item::selectFirstForUser(local_user(), $fields, ['id' => $item_id, 'private' => [Item::PUBLIC, Item::UNLISTED], 'uid' => 0]);
95 if (!DBA::isResult($item)) {
99 if ($a->argc >= 3 && $nick == 'feed-item') {
100 displayShowFeed($item['id'], $a->argc > 3 && $a->argv[3] == 'conversation.atom');
103 if (!empty($_SERVER['HTTP_ACCEPT']) && strstr($_SERVER['HTTP_ACCEPT'], 'application/atom+xml')) {
104 Logger::log('Directly serving XML for id '.$item["id"], Logger::DEBUG);
105 displayShowFeed($item["id"], false);
108 if ($item["id"] != $item["parent"]) {
109 $parent = Item::selectFirstForUser($item_user, $fields, ['id' => $item["parent"]]);
110 $item = $parent ?: $item;
113 $profiledata = display_fetchauthor($a, $item);
115 if (strstr(Strings::normaliseLink($profiledata['url']), Strings::normaliseLink(DI::baseUrl()))) {
116 $nickname = str_replace(Strings::normaliseLink(DI::baseUrl()) . '/profile/', '', Strings::normaliseLink($profiledata['url']));
118 if (!empty($a->user['nickname']) && $nickname != $a->user['nickname']) {
119 $profile = DBA::fetchFirst("SELECT `profile`.* , `contact`.`avatar-date` AS picdate, `user`.* FROM `profile`
120 INNER JOIN `contact` on `contact`.`uid` = `profile`.`uid` INNER JOIN `user` ON `profile`.`uid` = `user`.`uid`
121 WHERE `user`.`nickname` = ? AND `contact`.`self` LIMIT 1",
124 if (DBA::isResult($profile)) {
125 $profiledata = $profile;
127 $profiledata["network"] = Protocol::DFRN;
133 Profile::load($a, $nick, $profiledata);
136 function display_fetchauthor($a, $item)
138 $author = DBA::selectFirst('contact', ['name', 'nick', 'photo', 'network', 'url'], ['id' => $item['author-id']]);
141 $profiledata['uid'] = -1;
142 $profiledata['nickname'] = $author['nick'];
143 $profiledata['name'] = $author['name'];
144 $profiledata['picdate'] = '';
145 $profiledata['photo'] = $author['photo'];
146 $profiledata['url'] = $author['url'];
147 $profiledata['network'] = $author['network'];
149 // Check for a repeated message
150 $shared = Item::getShareArray($item);
151 if (!empty($shared) && empty($shared['comment'])) {
152 if (!empty($shared['author'])) {
153 $profiledata['name'] = $shared['author'];
156 if (!empty($shared['profile'])) {
157 $profiledata['url'] = $shared['profile'];
160 if (!empty($shared['avatar'])) {
161 $profiledata['photo'] = $shared['avatar'];
164 $profiledata["nickname"] = $profiledata["name"];
165 $profiledata["network"] = Protocol::matchByProfileUrl($profiledata["url"]);
167 $profiledata["address"] = "";
168 $profiledata["about"] = "";
171 $profiledata = Contact::getDetailsByURL($profiledata["url"], local_user(), $profiledata);
173 if (!empty($profiledata["photo"])) {
174 $profiledata["photo"] = DI::baseUrl()->remove($profiledata["photo"]);
180 function display_content(App $a, $update = false, $update_uid = 0)
182 if (DI::config()->get('system','block_public') && !Session::isAuthenticated()) {
183 throw new HTTPException\ForbiddenException(DI::l10n()->t('Public access denied.'));
191 $item_id = $_REQUEST['item_id'];
192 $item = Item::selectFirst(['uid', 'parent', 'parent-uri'], ['id' => $item_id]);
193 if ($item['uid'] != 0) {
194 $a->profile = ['uid' => intval($item['uid'])];
196 $a->profile = ['uid' => intval($update_uid)];
198 $item_parent = $item['parent'];
199 $item_parent_uri = $item['parent-uri'];
201 $item_id = (($a->argc > 2) ? $a->argv[2] : 0);
202 $item_parent = $item_id;
206 $fields = ['id', 'parent', 'parent-uri', 'uid'];
209 $condition = ['guid' => $a->argv[1], 'uid' => local_user()];
210 $item = Item::selectFirstForUser(local_user(), $fields, $condition);
211 if (DBA::isResult($item)) {
212 $item_id = $item["id"];
213 $item_parent = $item["parent"];
214 $item_parent_uri = $item['parent-uri'];
218 if (($item_parent == 0) && remote_user()) {
219 $item = Item::selectFirst($fields, ['guid' => $a->argv[1], 'private' => Item::PRIVATE, 'origin' => true]);
220 if (DBA::isResult($item) && Contact::isFollower(remote_user(), $item['uid'])) {
221 $item_id = $item["id"];
222 $item_parent = $item["parent"];
223 $item_parent_uri = $item['parent-uri'];
227 if ($item_parent == 0) {
228 $condition = ['private' => [Item::PUBLIC, Item::UNLISTED], 'guid' => $a->argv[1], 'uid' => 0];
229 $item = Item::selectFirstForUser(local_user(), $fields, $condition);
230 if (DBA::isResult($item)) {
231 $item_id = $item["id"];
232 $item_parent = $item["parent"];
233 $item_parent_uri = $item['parent-uri'];
240 throw new HTTPException\NotFoundException(DI::l10n()->t('The requested item doesn\'t exist or has been deleted.'));
243 // We are displaying an "alternate" link if that post was public. See issue 2864
244 $is_public = Item::exists(['id' => $item_id, 'private' => [Item::PUBLIC, Item::UNLISTED]]);
246 // For the atom feed the nickname doesn't matter at all, we only need the item id.
247 $alternate = DI::baseUrl().'/display/feed-item/'.$item_id.'.atom';
248 $conversation = DI::baseUrl().'/display/feed-item/'.$item_parent.'/conversation.atom';
254 DI::page()['htmlhead'] .= Renderer::replaceMacros(Renderer::getMarkupTemplate('display-head.tpl'),
255 ['$alternate' => $alternate,
256 '$conversation' => $conversation]);
258 $is_remote_contact = false;
259 $item_uid = local_user();
262 if (!empty($item_parent_uri)) {
263 $parent = Item::selectFirst(['uid'], ['uri' => $item_parent_uri, 'wall' => true]);
266 if (DBA::isResult($parent)) {
267 $a->profile['uid'] = ($a->profile['uid'] ?? 0) ?: $parent['uid'];
268 $is_remote_contact = Session::getRemoteContactID($a->profile['uid']);
269 if ($is_remote_contact) {
270 $item_uid = $parent['uid'];
273 $a->profile = ['uid' => intval($item['uid'])];
276 $page_contact = DBA::selectFirst('contact', [], ['self' => true, 'uid' => $a->profile['uid']]);
277 if (DBA::isResult($page_contact)) {
278 $a->page_contact = $page_contact;
281 $is_owner = (local_user() && (in_array($a->profile['uid'], [local_user(), 0])) ? true : false);
283 if (!empty($a->profile['hidewall']) && !$is_owner && !$is_remote_contact) {
284 throw new HTTPException\ForbiddenException(DI::l10n()->t('Access to this profile has been restricted.'));
287 // We need the editor here to be able to reshare an item.
291 'allow_location' => $a->user['allow_location'],
292 'default_location' => $a->user['default-location'],
293 'nickname' => $a->user['nickname'],
294 'lockstate' => (is_array($a->user) && (strlen($a->user['allow_cid']) || strlen($a->user['allow_gid']) || strlen($a->user['deny_cid']) || strlen($a->user['deny_gid'])) ? 'lock' : 'unlock'),
295 'acl' => ACL::getFullSelectorHTML(DI::page(), $a->user, true),
297 'visitor' => 'block',
298 'profile_uid' => local_user(),
300 $o .= status_editor($a, $x, 0, true);
302 $sql_extra = Item::getPermissionsSQLByUserId($a->profile['uid']);
304 if (local_user() && (local_user() == $a->profile['uid'])) {
305 $condition = ['parent-uri' => $item_parent_uri, 'uid' => local_user(), 'unseen' => true];
306 $unseen = Item::exists($condition);
311 if ($update && !$unseen) {
315 $condition = ["`id` = ? AND `item`.`uid` IN (0, ?) " . $sql_extra, $item_id, $item_uid];
316 $fields = ['parent-uri', 'body', 'title', 'author-name', 'author-avatar', 'plink', 'author-id', 'owner-id', 'contact-id'];
317 $item = Item::selectFirstForUser($a->profile['uid'], $fields, $condition);
319 if (!DBA::isResult($item)) {
320 throw new HTTPException\NotFoundException(DI::l10n()->t('The requested item doesn\'t exist or has been deleted.'));
323 $item['uri'] = $item['parent-uri'];
326 $condition = ['parent-uri' => $item_parent_uri, 'uid' => local_user(), 'unseen' => true];
327 Item::update(['unseen' => false], $condition);
331 $o .= "<script> var netargs = '?item_id=" . $item_id . "'; </script>";
334 $o .= conversation($a, [$item], 'display', $update_uid, false, 'commented', $item_uid);
336 // Preparing the meta header
337 $description = trim(HTML::toPlaintext(BBCode::convert($item["body"], false), 0, true));
338 $title = trim(HTML::toPlaintext(BBCode::convert($item["title"], false), 0, true));
339 $author_name = $item["author-name"];
341 $image = DI::baseUrl()->remove($item["author-avatar"]);
344 $title = $author_name;
347 // Limit the description to 160 characters
348 if (strlen($description) > 160) {
349 $description = substr($description, 0, 157) . '...';
352 $description = htmlspecialchars($description, ENT_COMPAT, 'UTF-8', true); // allow double encoding here
353 $title = htmlspecialchars($title, ENT_COMPAT, 'UTF-8', true); // allow double encoding here
354 $author_name = htmlspecialchars($author_name, ENT_COMPAT, 'UTF-8', true); // allow double encoding here
358 if (DBA::exists('contact', ['unsearchable' => true, 'id' => [$item['contact-id'], $item['author-id'], $item['owner-id']]])) {
359 $page['htmlhead'] .= '<meta content="noindex, noarchive" name="robots" />' . "\n";
362 DI::page()['htmlhead'] .= '<meta name="author" content="'.$author_name.'" />'."\n";
363 $page['htmlhead'] .= '<meta name="title" content="'.$title.'" />'."\n";
364 $page['htmlhead'] .= '<meta name="fulltitle" content="'.$title.'" />'."\n";
365 $page['htmlhead'] .= '<meta name="description" content="'.$description.'" />'."\n";
367 // Schema.org microdata
368 $page['htmlhead'] .= '<meta itemprop="name" content="'.$title.'" />'."\n";
369 $page['htmlhead'] .= '<meta itemprop="description" content="'.$description.'" />'."\n";
370 $page['htmlhead'] .= '<meta itemprop="image" content="'.$image.'" />'."\n";
371 $page['htmlhead'] .= '<meta itemprop="author" content="'.$author_name.'" />'."\n";
374 $page['htmlhead'] .= '<meta name="twitter:card" content="summary" />'."\n";
375 $page['htmlhead'] .= '<meta name="twitter:title" content="'.$title.'" />'."\n";
376 $page['htmlhead'] .= '<meta name="twitter:description" content="'.$description.'" />'."\n";
377 $page['htmlhead'] .= '<meta name="twitter:image" content="'.DI::baseUrl().'/'.$image.'" />'."\n";
378 $page['htmlhead'] .= '<meta name="twitter:url" content="'.$item["plink"].'" />'."\n";
381 $page['htmlhead'] .= '<meta name="DC.title" content="'.$title.'" />'."\n";
382 $page['htmlhead'] .= '<meta name="DC.description" content="'.$description.'" />'."\n";
385 $page['htmlhead'] .= '<meta property="og:type" content="website" />'."\n";
386 $page['htmlhead'] .= '<meta property="og:title" content="'.$title.'" />'."\n";
387 $page['htmlhead'] .= '<meta property="og:image" content="'.DI::baseUrl().'/'.$image.'" />'."\n";
388 $page['htmlhead'] .= '<meta property="og:url" content="'.$item["plink"].'" />'."\n";
389 $page['htmlhead'] .= '<meta property="og:description" content="'.$description.'" />'."\n";
390 $page['htmlhead'] .= '<meta name="og:article:author" content="'.$author_name.'" />'."\n";
396 function displayShowFeed($item_id, $conversation)
398 $xml = DFRN::itemFeed($item_id, $conversation);
400 throw new HTTPException\InternalServerErrorException(DI::l10n()->t('The feed for this item is unavailable.'));
402 header("Content-type: application/atom+xml");