]> git.mxchange.org Git - friendica.git/blob - mod/display.php
Merge pull request #7343 from MrPetovan/bug/notices
[friendica.git] / mod / display.php
1 <?php
2 /**
3  * @file mod/display.php
4  */
5
6 use Friendica\App;
7 use Friendica\Content\Pager;
8 use Friendica\Content\Text\BBCode;
9 use Friendica\Content\Text\HTML;
10 use Friendica\Core\ACL;
11 use Friendica\Core\Config;
12 use Friendica\Core\L10n;
13 use Friendica\Core\Logger;
14 use Friendica\Core\Protocol;
15 use Friendica\Core\Renderer;
16 use Friendica\Core\System;
17 use Friendica\Database\DBA;
18 use Friendica\Model\Contact;
19 use Friendica\Model\Group;
20 use Friendica\Model\Item;
21 use Friendica\Model\Profile;
22 use Friendica\Module\Objects;
23 use Friendica\Network\HTTPException;
24 use Friendica\Protocol\ActivityPub;
25 use Friendica\Protocol\DFRN;
26 use Friendica\Util\Strings;
27
28 function display_init(App $a)
29 {
30         if (ActivityPub::isRequest()) {
31                 Objects::rawContent();
32         }
33
34         if (Config::get('system', 'block_public') && !local_user() && !remote_user()) {
35                 return;
36         }
37
38         $nick = (($a->argc > 1) ? $a->argv[1] : '');
39
40         $item = null;
41         $item_user = local_user();
42
43         $fields = ['id', 'parent', 'author-id', 'body', 'uid', 'guid'];
44
45         // If there is only one parameter, then check if this parameter could be a guid
46         if ($a->argc == 2) {
47                 $nick = "";
48
49                 // Does the local user have this item?
50                 if (local_user()) {
51                         $item = Item::selectFirstForUser(local_user(), $fields, ['guid' => $a->argv[1], 'uid' => local_user()]);
52                         if (DBA::isResult($item)) {
53                                 $nick = $a->user["nickname"];
54                         }
55                 // Is this item private but could be visible to the remove visitor?
56                 } elseif (remote_user()) {
57                         $item = Item::selectFirst($fields, ['guid' => $a->argv[1], 'private' => 1]);
58                         if (DBA::isResult($item)) {
59                                 if (!Contact::isFollower(remote_user(), $item['uid'])) {
60                                         $item = null;
61                                 } else {
62                                         $item_user = $item['uid'];
63                                 }
64                         }
65                 }
66
67                 // Is it an item with uid=0?
68                 if (!DBA::isResult($item)) {
69                         $item = Item::selectFirstForUser(local_user(), $fields, ['guid' => $a->argv[1], 'private' => [0, 2], 'uid' => 0]);
70                 }
71         } elseif ($a->argc >= 3 && $nick == 'feed-item') {
72                 $item_id = $a->argv[2];
73                 if (substr($item_id, -5) == '.atom') {
74                         $item_id = substr($item_id, 0, -5);
75                 }
76                 $item = Item::selectFirstForUser(local_user(), $fields, ['id' => $item_id, 'private' => [0, 2], 'uid' => 0]);
77         }
78
79         if (!DBA::isResult($item)) {
80                 return;
81         }
82
83         if ($a->argc >= 3 && $nick == 'feed-item') {
84                 displayShowFeed($item['id'], $a->argc > 3 && $a->argv[3] == 'conversation.atom');
85         }
86
87         if ($a->argc >= 3 && $nick == 'feed-item') {
88                 displayShowFeed($item['id'], $a->argc > 3 && $a->argv[3] == 'conversation.atom');
89         }
90
91         if (!empty($_SERVER['HTTP_ACCEPT']) && strstr($_SERVER['HTTP_ACCEPT'], 'application/atom+xml')) {
92                 Logger::log('Directly serving XML for id '.$item["id"], Logger::DEBUG);
93                 displayShowFeed($item["id"], false);
94         }
95
96         if ($item["id"] != $item["parent"]) {
97                 $item = Item::selectFirstForUser($item_user, $fields, ['id' => $item["parent"]]);
98         }
99
100         $profiledata = display_fetchauthor($a, $item);
101
102         if (strstr(Strings::normaliseLink($profiledata["url"]), Strings::normaliseLink(System::baseUrl()))) {
103                 $nickname = str_replace(Strings::normaliseLink(System::baseUrl())."/profile/", "", Strings::normaliseLink($profiledata["url"]));
104
105                 if (($nickname != $a->user["nickname"])) {
106                         $profile = DBA::fetchFirst("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `contact`.`avatar-date` AS picdate, `user`.* FROM `profile`
107                                 INNER JOIN `contact` on `contact`.`uid` = `profile`.`uid` INNER JOIN `user` ON `profile`.`uid` = `user`.`uid`
108                                 WHERE `user`.`nickname` = ? AND `profile`.`is-default` AND `contact`.`self` LIMIT 1",
109                                 $nickname
110                         );
111                         if (DBA::isResult($profile)) {
112                                 $profiledata = $profile;
113                         }
114                         $profiledata["network"] = Protocol::DFRN;
115                 } else {
116                         $profiledata = [];
117                 }
118         }
119
120         Profile::load($a, $nick, 0, $profiledata);
121 }
122
123 function display_fetchauthor($a, $item)
124 {
125         $author = DBA::selectFirst('contact', ['name', 'nick', 'photo', 'network', 'url'], ['id' => $item['author-id']]);
126
127         $profiledata = [];
128         $profiledata['uid'] = -1;
129         $profiledata['nickname'] = $author['nick'];
130         $profiledata['name'] = $author['name'];
131         $profiledata['picdate'] = '';
132         $profiledata['photo'] = $author['photo'];
133         $profiledata['url'] = $author['url'];
134         $profiledata['network'] = $author['network'];
135
136         // Check for a repeated message
137         $skip = false;
138         $body = trim($item["body"]);
139
140         // Skip if it isn't a pure repeated messages
141         // Does it start with a share?
142         if (!$skip && strpos($body, "[share") > 0) {
143                 $skip = true;
144         }
145         // Does it end with a share?
146         if (!$skip && (strlen($body) > (strrpos($body, "[/share]") + 8))) {
147                 $skip = true;
148         }
149         if (!$skip) {
150                 $attributes = preg_replace("/\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism","$1",$body);
151                 // Skip if there is no shared message in there
152                 if ($body == $attributes) {
153                         $skip = true;
154                 }
155         }
156
157         if (!$skip) {
158                 preg_match("/author='(.*?)'/ism", $attributes, $matches);
159                 if (!empty($matches[1])) {
160                         $profiledata["name"] = html_entity_decode($matches[1],ENT_QUOTES,'UTF-8');
161                 }
162                 preg_match('/author="(.*?)"/ism', $attributes, $matches);
163                 if (!empty($matches[1])) {
164                         $profiledata["name"] = html_entity_decode($matches[1],ENT_QUOTES,'UTF-8');
165                 }
166                 preg_match("/profile='(.*?)'/ism", $attributes, $matches);
167                 if (!empty($matches[1])) {
168                         $profiledata["url"] = $matches[1];
169                 }
170                 preg_match('/profile="(.*?)"/ism', $attributes, $matches);
171                 if (!empty($matches[1])) {
172                         $profiledata["url"] = $matches[1];
173                 }
174                 preg_match("/avatar='(.*?)'/ism", $attributes, $matches);
175                 if (!empty($matches[1])) {
176                         $profiledata["photo"] = $matches[1];
177                 }
178                 preg_match('/avatar="(.*?)"/ism', $attributes, $matches);
179                 if (!empty($matches[1])) {
180                         $profiledata["photo"] = $matches[1];
181                 }
182                 $profiledata["nickname"] = $profiledata["name"];
183                 $profiledata["network"] = Protocol::matchByProfileUrl($profiledata["url"]);
184
185                 $profiledata["address"] = "";
186                 $profiledata["about"] = "";
187         }
188
189         $profiledata = Contact::getDetailsByURL($profiledata["url"], local_user(), $profiledata);
190
191         $profiledata["photo"] = System::removedBaseUrl($profiledata["photo"]);
192
193         return $profiledata;
194 }
195
196 function display_content(App $a, $update = false, $update_uid = 0)
197 {
198         if (Config::get('system','block_public') && !local_user() && !remote_user()) {
199                 throw new HTTPException\ForbiddenException(L10n::t('Public access denied.'));
200         }
201
202         $o = '';
203
204         if ($update) {
205                 $item_id = $_REQUEST['item_id'];
206                 $item = Item::selectFirst(['uid', 'parent', 'parent-uri'], ['id' => $item_id]);
207                 if ($item['uid'] != 0) {
208                         $a->profile = ['uid' => intval($item['uid']), 'profile_uid' => intval($item['uid'])];
209                 } else {
210                         $a->profile = ['uid' => intval($update_uid), 'profile_uid' => intval($update_uid)];
211                 }
212                 $item_parent = $item['parent'];
213                 $item_parent_uri = $item['parent-uri'];
214         } else {
215                 $item_id = (($a->argc > 2) ? $a->argv[2] : 0);
216                 $item_parent = $item_id;
217
218                 if ($a->argc == 2) {
219                         $item_parent = 0;
220                         $fields = ['id', 'parent', 'parent-uri', 'uid'];
221
222                         if (local_user()) {
223                                 $condition = ['guid' => $a->argv[1], 'uid' => local_user()];
224                                 $item = Item::selectFirstForUser(local_user(), $fields, $condition);
225                                 if (DBA::isResult($item)) {
226                                         $item_id = $item["id"];
227                                         $item_parent = $item["parent"];
228                                         $item_parent_uri = $item['parent-uri'];
229                                 }
230                         } elseif (remote_user()) {
231                                 $item = Item::selectFirst($fields, ['guid' => $a->argv[1], 'private' => 1]);
232                                 if (DBA::isResult($item) && Contact::isFollower(remote_user(), $item['uid'])) {
233                                         $item_id = $item["id"];
234                                         $item_parent = $item["parent"];
235                                         $item_parent_uri = $item['parent-uri'];
236                                 }
237                         }
238
239                         if ($item_parent == 0) {
240                                 $condition = ['private' => [0, 2], 'guid' => $a->argv[1], 'uid' => 0];
241                                 $item = Item::selectFirstForUser(local_user(), $fields, $condition);
242                                 if (DBA::isResult($item)) {
243                                         $item_id = $item["id"];
244                                         $item_parent = $item["parent"];
245                                         $item_parent_uri = $item['parent-uri'];
246                                 }
247                         }
248                 }
249         }
250
251         if (!$item_id) {
252                 throw new HTTPException\NotFoundException(L10n::t('The requested item doesn\'t exist or has been deleted.'));
253         }
254
255         // We are displaying an "alternate" link if that post was public. See issue 2864
256         $is_public = Item::exists(['id' => $item_id, 'private' => [0, 2]]);
257         if ($is_public) {
258                 // For the atom feed the nickname doesn't matter at all, we only need the item id.
259                 $alternate = System::baseUrl().'/display/feed-item/'.$item_id.'.atom';
260                 $conversation = System::baseUrl().'/display/feed-item/'.$item_parent.'/conversation.atom';
261         } else {
262                 $alternate = '';
263                 $conversation = '';
264         }
265
266         $a->page['htmlhead'] .= Renderer::replaceMacros(Renderer::getMarkupTemplate('display-head.tpl'),
267                                 ['$alternate' => $alternate,
268                                         '$conversation' => $conversation]);
269
270         $groups = [];
271         $remote_cid = null;
272         $is_remote_contact = false;
273         $item_uid = local_user();
274
275         if (isset($item_parent_uri)) {
276                 $parent = Item::selectFirst(['uid'], ['uri' => $item_parent_uri, 'wall' => true]);
277                 if (DBA::isResult($parent)) {
278                         $a->profile['uid'] = defaults($a->profile, 'uid', $parent['uid']);
279                         $a->profile['profile_uid'] = defaults($a->profile, 'profile_uid', $parent['uid']);
280                         $is_remote_contact = Contact::isFollower(remote_user(), $a->profile['profile_uid']);
281
282                         if ($is_remote_contact) {
283                                 $cdata = Contact::getPublicAndUserContacID(remote_user(), $a->profile['profile_uid']);
284                                 if (!empty($cdata['user'])) {
285                                         $groups = Group::getIdsByContactId($cdata['user']);
286                                         $remote_cid = $cdata['user'];
287                                         $item_uid = $parent['uid'];
288                                 }
289                         }
290                 }
291         }
292
293
294         $page_contact = DBA::selectFirst('contact', [], ['self' => true, 'uid' => $a->profile['uid']]);
295         if (DBA::isResult($page_contact)) {
296                 $a->page_contact = $page_contact;
297         }
298         $is_owner = (local_user() && (in_array($a->profile['profile_uid'], [local_user(), 0])) ? true : false);
299
300         if (!empty($a->profile['hidewall']) && !$is_owner && !$is_remote_contact) {
301                 throw new HTTPException\ForbiddenException(L10n::t('Access to this profile has been restricted.'));
302         }
303
304         // We need the editor here to be able to reshare an item.
305         if ($is_owner) {
306                 $x = [
307                         'is_owner' => true,
308                         'allow_location' => $a->user['allow_location'],
309                         'default_location' => $a->user['default-location'],
310                         'nickname' => $a->user['nickname'],
311                         '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'),
312                         'acl' => ACL::getFullSelectorHTML($a->user, true),
313                         'bang' => '',
314                         'visitor' => 'block',
315                         'profile_uid' => local_user(),
316                 ];
317                 $o .= status_editor($a, $x, 0, true);
318         }
319         $sql_extra = Item::getPermissionsSQLByUserId($a->profile['profile_uid'], $is_remote_contact, $groups, $remote_cid);
320
321         if (local_user() && (local_user() == $a->profile['profile_uid'])) {
322                 $condition = ['parent-uri' => $item_parent_uri, 'uid' => local_user(), 'unseen' => true];
323                 $unseen = Item::exists($condition);
324         } else {
325                 $unseen = false;
326         }
327
328         if ($update && !$unseen) {
329                 return '';
330         }
331
332         $condition = ["`id` = ? AND `item`.`uid` IN (0, ?) " . $sql_extra, $item_id, $item_uid];
333         $fields = ['parent-uri', 'body', 'title', 'author-name', 'author-avatar', 'plink'];
334         $item = Item::selectFirstForUser(local_user(), $fields, $condition);
335
336         if (!DBA::isResult($item)) {
337                 throw new HTTPException\NotFoundException(L10n::t('The requested item doesn\'t exist or has been deleted.'));
338         }
339
340         $item['uri'] = $item['parent-uri'];
341
342         if ($unseen) {
343                 $condition = ['parent-uri' => $item_parent_uri, 'uid' => local_user(), 'unseen' => true];
344                 Item::update(['unseen' => false], $condition);
345         }
346
347         if (!$update) {
348                 $o .= "<script> var netargs = '?f=&item_id=" . $item_id . "'; </script>";
349         }
350
351         $o .= conversation($a, [$item], new Pager($a->query_string), 'display', $update_uid, false, 'commented', $item_uid);
352
353         // Preparing the meta header
354         $description = trim(HTML::toPlaintext(BBCode::convert($item["body"], false), 0, true));
355         $title = trim(HTML::toPlaintext(BBCode::convert($item["title"], false), 0, true));
356         $author_name = $item["author-name"];
357
358         $image = $a->removeBaseURL($item["author-avatar"]);
359
360         if ($title == "") {
361                 $title = $author_name;
362         }
363
364         // Limit the description to 160 characters
365         if (strlen($description) > 160) {
366                 $description = substr($description, 0, 157) . '...';
367         }
368
369         $description = htmlspecialchars($description, ENT_COMPAT, 'UTF-8', true); // allow double encoding here
370         $title = htmlspecialchars($title, ENT_COMPAT, 'UTF-8', true); // allow double encoding here
371         $author_name = htmlspecialchars($author_name, ENT_COMPAT, 'UTF-8', true); // allow double encoding here
372
373         //<meta name="keywords" content="">
374         $a->page['htmlhead'] .= '<meta name="author" content="'.$author_name.'" />'."\n";
375         $a->page['htmlhead'] .= '<meta name="title" content="'.$title.'" />'."\n";
376         $a->page['htmlhead'] .= '<meta name="fulltitle" content="'.$title.'" />'."\n";
377         $a->page['htmlhead'] .= '<meta name="description" content="'.$description.'" />'."\n";
378
379         // Schema.org microdata
380         $a->page['htmlhead'] .= '<meta itemprop="name" content="'.$title.'" />'."\n";
381         $a->page['htmlhead'] .= '<meta itemprop="description" content="'.$description.'" />'."\n";
382         $a->page['htmlhead'] .= '<meta itemprop="image" content="'.$image.'" />'."\n";
383         $a->page['htmlhead'] .= '<meta itemprop="author" content="'.$author_name.'" />'."\n";
384
385         // Twitter cards
386         $a->page['htmlhead'] .= '<meta name="twitter:card" content="summary" />'."\n";
387         $a->page['htmlhead'] .= '<meta name="twitter:title" content="'.$title.'" />'."\n";
388         $a->page['htmlhead'] .= '<meta name="twitter:description" content="'.$description.'" />'."\n";
389         $a->page['htmlhead'] .= '<meta name="twitter:image" content="'.System::baseUrl().'/'.$image.'" />'."\n";
390         $a->page['htmlhead'] .= '<meta name="twitter:url" content="'.$item["plink"].'" />'."\n";
391
392         // Dublin Core
393         $a->page['htmlhead'] .= '<meta name="DC.title" content="'.$title.'" />'."\n";
394         $a->page['htmlhead'] .= '<meta name="DC.description" content="'.$description.'" />'."\n";
395
396         // Open Graph
397         $a->page['htmlhead'] .= '<meta property="og:type" content="website" />'."\n";
398         $a->page['htmlhead'] .= '<meta property="og:title" content="'.$title.'" />'."\n";
399         $a->page['htmlhead'] .= '<meta property="og:image" content="'.System::baseUrl().'/'.$image.'" />'."\n";
400         $a->page['htmlhead'] .= '<meta property="og:url" content="'.$item["plink"].'" />'."\n";
401         $a->page['htmlhead'] .= '<meta property="og:description" content="'.$description.'" />'."\n";
402         $a->page['htmlhead'] .= '<meta name="og:article:author" content="'.$author_name.'" />'."\n";
403         // article:tag
404
405         return $o;
406 }
407
408 function displayShowFeed($item_id, $conversation)
409 {
410         $xml = DFRN::itemFeed($item_id, $conversation);
411         if ($xml == '') {
412                 throw new HTTPException\InternalServerErrorException(L10n::t('The feed for this item is unavailable.'));
413         }
414         header("Content-type: application/atom+xml");
415         echo $xml;
416         exit();
417 }