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