]> git.mxchange.org Git - friendica.git/blob - src/Protocol/Feed.php
Merge pull request #10451 from annando/contact-path
[friendica.git] / src / Protocol / Feed.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2021, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
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.
11  *
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.
16  *
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/>.
19  *
20  */
21
22 namespace Friendica\Protocol;
23
24 use DOMDocument;
25 use DOMXPath;
26 use Friendica\Content\PageInfo;
27 use Friendica\Content\Text\BBCode;
28 use Friendica\Content\Text\HTML;
29 use Friendica\Core\Cache\Duration;
30 use Friendica\Core\Logger;
31 use Friendica\Core\Protocol;
32 use Friendica\Database\DBA;
33 use Friendica\DI;
34 use Friendica\Model\Contact;
35 use Friendica\Model\Item;
36 use Friendica\Model\Post;
37 use Friendica\Model\Tag;
38 use Friendica\Model\User;
39 use Friendica\Util\DateTimeFormat;
40 use Friendica\Util\Network;
41 use Friendica\Util\ParseUrl;
42 use Friendica\Util\Proxy;
43 use Friendica\Util\Strings;
44 use Friendica\Util\XML;
45
46 /**
47  * This class contain functions to import feeds (RSS/RDF/Atom)
48  */
49 class Feed
50 {
51         /**
52          * Read a RSS/RDF/Atom feed and create an item entry for it
53          *
54          * @param string $xml      The feed data
55          * @param array  $importer The user record of the importer
56          * @param array  $contact  The contact record of the feed
57          *
58          * @return array Returns the header and the first item in dry run mode
59          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
60          */
61         public static function import($xml, array $importer = [], array $contact = [])
62         {
63                 $dryRun = empty($importer) && empty($contact);
64
65                 if ($dryRun) {
66                         Logger::info("Test Atom/RSS feed");
67                 } else {
68                         Logger::info("Import Atom/RSS feed '" . $contact["name"] . "' (Contact " . $contact["id"] . ") for user " . $importer["uid"]);
69                 }
70
71                 if (empty($xml)) {
72                         Logger::info('XML is empty.');
73                         return [];
74                 }
75
76                 if (!empty($contact['poll'])) {
77                         $basepath = $contact['poll'];
78                 } elseif (!empty($contact['url'])) {
79                         $basepath = $contact['url'];
80                 } else {
81                         $basepath = '';
82                 }
83
84                 $doc = new DOMDocument();
85                 @$doc->loadXML(trim($xml));
86                 $xpath = new DOMXPath($doc);
87                 $xpath->registerNamespace('atom', ActivityNamespace::ATOM1);
88                 $xpath->registerNamespace('dc', "http://purl.org/dc/elements/1.1/");
89                 $xpath->registerNamespace('content', "http://purl.org/rss/1.0/modules/content/");
90                 $xpath->registerNamespace('rdf', "http://www.w3.org/1999/02/22-rdf-syntax-ns#");
91                 $xpath->registerNamespace('rss', "http://purl.org/rss/1.0/");
92                 $xpath->registerNamespace('media', "http://search.yahoo.com/mrss/");
93                 $xpath->registerNamespace('poco', ActivityNamespace::POCO);
94
95                 $author = [];
96                 $entries = null;
97
98                 // Is it RDF?
99                 if ($xpath->query('/rdf:RDF/rss:channel')->length > 0) {
100                         $author["author-link"] = XML::getFirstNodeValue($xpath, '/rdf:RDF/rss:channel/rss:link/text()');
101                         $author["author-name"] = XML::getFirstNodeValue($xpath, '/rdf:RDF/rss:channel/rss:title/text()');
102
103                         if (empty($author["author-name"])) {
104                                 $author["author-name"] = XML::getFirstNodeValue($xpath, '/rdf:RDF/rss:channel/rss:description/text()');
105                         }
106                         $entries = $xpath->query('/rdf:RDF/rss:item');
107                 }
108
109                 // Is it Atom?
110                 if ($xpath->query('/atom:feed')->length > 0) {
111                         $alternate = XML::getFirstAttributes($xpath, "atom:link[@rel='alternate']");
112                         if (is_object($alternate)) {
113                                 foreach ($alternate AS $attribute) {
114                                         if ($attribute->name == "href") {
115                                                 $author["author-link"] = $attribute->textContent;
116                                         }
117                                 }
118                         }
119
120                         if (empty($author["author-link"])) {
121                                 $self = XML::getFirstAttributes($xpath, "atom:link[@rel='self']");
122                                 if (is_object($self)) {
123                                         foreach ($self AS $attribute) {
124                                                 if ($attribute->name == "href") {
125                                                         $author["author-link"] = $attribute->textContent;
126                                                 }
127                                         }
128                                 }
129                         }
130
131                         if (empty($author["author-link"])) {
132                                 $author["author-link"] = XML::getFirstNodeValue($xpath, '/atom:feed/atom:id/text()');
133                         }
134                         $author["author-avatar"] = XML::getFirstNodeValue($xpath, '/atom:feed/atom:logo/text()');
135
136                         $author["author-name"] = XML::getFirstNodeValue($xpath, '/atom:feed/atom:title/text()');
137
138                         if (empty($author["author-name"])) {
139                                 $author["author-name"] = XML::getFirstNodeValue($xpath, '/atom:feed/atom:subtitle/text()');
140                         }
141
142                         if (empty($author["author-name"])) {
143                                 $author["author-name"] = XML::getFirstNodeValue($xpath, '/atom:feed/atom:author/atom:name/text()');
144                         }
145
146                         $value = XML::getFirstNodeValue($xpath, 'atom:author/poco:displayName/text()');
147                         if ($value != "") {
148                                 $author["author-name"] = $value;
149                         }
150
151                         if ($dryRun) {
152                                 $author["author-id"] = XML::getFirstNodeValue($xpath, '/atom:feed/atom:author/atom:id/text()');
153
154                                 // See https://tools.ietf.org/html/rfc4287#section-3.2.2
155                                 $value = XML::getFirstNodeValue($xpath, 'atom:author/atom:uri/text()');
156                                 if ($value != "") {
157                                         $author["author-link"] = $value;
158                                 }
159
160                                 $value = XML::getFirstNodeValue($xpath, 'atom:author/poco:preferredUsername/text()');
161                                 if ($value != "") {
162                                         $author["author-nick"] = $value;
163                                 }
164
165                                 $value = XML::getFirstNodeValue($xpath, 'atom:author/poco:address/poco:formatted/text()');
166                                 if ($value != "") {
167                                         $author["author-location"] = $value;
168                                 }
169
170                                 $value = XML::getFirstNodeValue($xpath, 'atom:author/poco:note/text()');
171                                 if ($value != "") {
172                                         $author["author-about"] = $value;
173                                 }
174
175                                 $avatar = XML::getFirstAttributes($xpath, "atom:author/atom:link[@rel='avatar']");
176                                 if (is_object($avatar)) {
177                                         foreach ($avatar AS $attribute) {
178                                                 if ($attribute->name == "href") {
179                                                         $author["author-avatar"] = $attribute->textContent;
180                                                 }
181                                         }
182                                 }
183                         }
184
185                         $author["edited"] = $author["created"] = XML::getFirstNodeValue($xpath, '/atom:feed/atom:updated/text()');
186
187                         $author["app"] = XML::getFirstNodeValue($xpath, '/atom:feed/atom:generator/text()');
188
189                         $entries = $xpath->query('/atom:feed/atom:entry');
190                 }
191
192                 // Is it RSS?
193                 if ($xpath->query('/rss/channel')->length > 0) {
194                         $author["author-link"] = XML::getFirstNodeValue($xpath, '/rss/channel/link/text()');
195
196                         $author["author-name"] = XML::getFirstNodeValue($xpath, '/rss/channel/title/text()');
197                         $author["author-avatar"] = XML::getFirstNodeValue($xpath, '/rss/channel/image/url/text()');
198
199                         if (empty($author["author-name"])) {
200                                 $author["author-name"] = XML::getFirstNodeValue($xpath, '/rss/channel/copyright/text()');
201                         }
202
203                         if (empty($author["author-name"])) {
204                                 $author["author-name"] = XML::getFirstNodeValue($xpath, '/rss/channel/description/text()');
205                         }
206
207                         $author["edited"] = $author["created"] = XML::getFirstNodeValue($xpath, '/rss/channel/pubDate/text()');
208
209                         $author["app"] = XML::getFirstNodeValue($xpath, '/rss/channel/generator/text()');
210
211                         $entries = $xpath->query('/rss/channel/item');
212                 }
213
214                 if (!$dryRun) {
215                         $author["author-link"] = $contact["url"];
216
217                         if (empty($author["author-name"])) {
218                                 $author["author-name"] = $contact["name"];
219                         }
220
221                         $author["author-avatar"] = $contact["thumb"];
222
223                         $author["owner-link"] = $contact["url"];
224                         $author["owner-name"] = $contact["name"];
225                         $author["owner-avatar"] = $contact["thumb"];
226                 }
227
228                 $header = [];
229                 $header["uid"] = $importer["uid"] ?? 0;
230                 $header["network"] = Protocol::FEED;
231                 $header["wall"] = 0;
232                 $header["origin"] = 0;
233                 $header["gravity"] = GRAVITY_PARENT;
234                 $header["private"] = Item::PUBLIC;
235                 $header["verb"] = Activity::POST;
236                 $header["object-type"] = Activity\ObjectType::NOTE;
237                 $header["post-type"] = Item::PT_ARTICLE;
238
239                 $header["contact-id"] = $contact["id"] ?? 0;
240
241                 if (!is_object($entries)) {
242                         Logger::info("There are no entries in this feed.");
243                         return [];
244                 }
245
246                 $items = [];
247                 $creation_dates = [];
248
249                 // Limit the number of items that are about to be fetched
250                 $total_items = ($entries->length - 1);
251                 $max_items = DI::config()->get('system', 'max_feed_items');
252                 if (($max_items > 0) && ($total_items > $max_items)) {
253                         $total_items = $max_items;
254                 }
255
256                 $postings = [];
257
258                 // Importing older entries first
259                 for ($i = $total_items; $i >= 0; --$i) {
260                         $entry = $entries->item($i);
261
262                         $item = array_merge($header, $author);
263
264                         $alternate = XML::getFirstAttributes($xpath, "atom:link[@rel='alternate']", $entry);
265                         if (!is_object($alternate)) {
266                                 $alternate = XML::getFirstAttributes($xpath, "atom:link", $entry);
267                         }
268                         if (is_object($alternate)) {
269                                 foreach ($alternate AS $attribute) {
270                                         if ($attribute->name == "href") {
271                                                 $item["plink"] = $attribute->textContent;
272                                         }
273                                 }
274                         }
275
276                         if (empty($item["plink"])) {
277                                 $item["plink"] = XML::getFirstNodeValue($xpath, 'link/text()', $entry);
278                         }
279
280                         if (empty($item["plink"])) {
281                                 $item["plink"] = XML::getFirstNodeValue($xpath, 'rss:link/text()', $entry);
282                         }
283
284                         $item["uri"] = XML::getFirstNodeValue($xpath, 'atom:id/text()', $entry);
285
286                         if (empty($item["uri"])) {
287                                 $item["uri"] = XML::getFirstNodeValue($xpath, 'guid/text()', $entry);
288                         }
289
290                         if (empty($item["uri"])) {
291                                 $item["uri"] = $item["plink"];
292                         }
293
294                         // Add the base path if missing
295                         $item["uri"] = Network::addBasePath($item["uri"], $basepath);
296                         $item["plink"] = Network::addBasePath($item["plink"], $basepath);
297
298                         $orig_plink = $item["plink"];
299
300                         $item["plink"] = DI::httpRequest()->finalUrl($item["plink"]);
301
302                         $item["title"] = XML::getFirstNodeValue($xpath, 'atom:title/text()', $entry);
303
304                         if (empty($item["title"])) {
305                                 $item["title"] = XML::getFirstNodeValue($xpath, 'title/text()', $entry);
306                         }
307                         if (empty($item["title"])) {
308                                 $item["title"] = XML::getFirstNodeValue($xpath, 'rss:title/text()', $entry);
309                         }
310
311                         $item["title"] = html_entity_decode($item["title"], ENT_QUOTES, 'UTF-8');
312
313                         $published = XML::getFirstNodeValue($xpath, 'atom:published/text()', $entry);
314
315                         if (empty($published)) {
316                                 $published = XML::getFirstNodeValue($xpath, 'pubDate/text()', $entry);
317                         }
318
319                         if (empty($published)) {
320                                 $published = XML::getFirstNodeValue($xpath, 'dc:date/text()', $entry);
321                         }
322
323                         $updated = XML::getFirstNodeValue($xpath, 'atom:updated/text()', $entry);
324
325                         if (empty($updated) && !empty($published)) {
326                                 $updated = $published;
327                         }
328
329                         if (empty($published) && !empty($updated)) {
330                                 $published = $updated;
331                         }
332
333                         if ($published != "") {
334                                 $item["created"] = $published;
335                         }
336
337                         if ($updated != "") {
338                                 $item["edited"] = $updated;
339                         }
340
341                         if (!$dryRun) {
342                                 $condition = ["`uid` = ? AND `uri` = ? AND `network` IN (?, ?)",
343                                         $importer["uid"], $item["uri"], Protocol::FEED, Protocol::DFRN];
344                                 $previous = Post::selectFirst(['id', 'created'], $condition);
345                                 if (DBA::isResult($previous)) {
346                                         // Use the creation date when the post had been stored. It can happen this date changes in the feed.
347                                         $creation_dates[] = $previous['created'];
348                                         Logger::info("Item with uri " . $item["uri"] . " for user " . $importer["uid"] . " already existed under id " . $previous["id"]);
349                                         continue;
350                                 }
351                                 $creation_dates[] = DateTimeFormat::utc($item['created']);
352                         }
353
354                         $creator = XML::getFirstNodeValue($xpath, 'author/text()', $entry);
355
356                         if (empty($creator)) {
357                                 $creator = XML::getFirstNodeValue($xpath, 'atom:author/atom:name/text()', $entry);
358                         }
359
360                         if (empty($creator)) {
361                                 $creator = XML::getFirstNodeValue($xpath, 'dc:creator/text()', $entry);
362                         }
363
364                         if ($creator != "") {
365                                 $item["author-name"] = $creator;
366                         }
367
368                         $creator = XML::getFirstNodeValue($xpath, 'dc:creator/text()', $entry);
369
370                         if ($creator != "") {
371                                 $item["author-name"] = $creator;
372                         }
373
374                         /// @TODO ?
375                         // <category>Ausland</category>
376                         // <media:thumbnail width="152" height="76" url="http://www.taz.de/picture/667875/192/14388767.jpg"/>
377
378                         $attachments = [];
379
380                         $enclosures = $xpath->query("enclosure|atom:link[@rel='enclosure']", $entry);
381                         foreach ($enclosures AS $enclosure) {
382                                 $href = "";
383                                 $length = null;
384                                 $type = null;
385
386                                 foreach ($enclosure->attributes AS $attribute) {
387                                         if (in_array($attribute->name, ["url", "href"])) {
388                                                 $href = $attribute->textContent;
389                                         } elseif ($attribute->name == "length") {
390                                                 $length = (int)$attribute->textContent;
391                                         } elseif ($attribute->name == "type") {
392                                                 $type = $attribute->textContent;
393                                         }
394                                 }
395
396                                 if (!empty($href)) {
397                                         $attachments[] = ['type' => Post\Media::DOCUMENT, 'url' => $href, 'mimetype' => $type, 'size' => $length];
398                                 }
399                         }
400
401                         $taglist = [];
402                         $categories = $xpath->query("category", $entry);
403                         foreach ($categories AS $category) {
404                                 $taglist[] = $category->nodeValue;
405                         }
406
407                         $body = trim(XML::getFirstNodeValue($xpath, 'atom:content/text()', $entry));
408
409                         if (empty($body)) {
410                                 $body = trim(XML::getFirstNodeValue($xpath, 'content:encoded/text()', $entry));
411                         }
412
413                         $summary = trim(XML::getFirstNodeValue($xpath, 'atom:summary/text()', $entry));
414
415                         if (empty($summary)) {
416                                 $summary = trim(XML::getFirstNodeValue($xpath, 'description/text()', $entry));
417                         }
418
419                         if (empty($body)) {
420                                 $body = $summary;
421                                 $summary = '';
422                         }
423
424                         if ($body == $summary) {
425                                 $summary = '';
426                         }
427
428                         // remove the content of the title if it is identically to the body
429                         // This helps with auto generated titles e.g. from tumblr
430                         if (self::titleIsBody($item["title"], $body)) {
431                                 $item["title"] = "";
432                         }
433                         $item["body"] = HTML::toBBCode($body, $basepath);
434
435                         // Remove tracking pixels
436                         $item["body"] = preg_replace("/\[img=1x1\]([^\[\]]*)\[\/img\]/Usi", '', $item["body"]);
437
438                         if (($item["body"] == '') && ($item["title"] != '')) {
439                                 $item["body"] = $item["title"];
440                                 $item["title"] = '';
441                         }
442
443                         if ($dryRun) {
444                                 $items[] = $item;
445                                 break;
446                         } elseif (!Item::isValid($item)) {
447                                 Logger::info('Feed item is invalid', ['created' => $item['created'], 'uid' => $item['uid'], 'uri' => $item['uri']]);
448                                 continue;
449                         } elseif (Item::isTooOld($item)) {
450                                 Logger::info('Feed is too old', ['created' => $item['created'], 'uid' => $item['uid'], 'uri' => $item['uri']]);
451                                 continue;
452                         }
453
454                         $preview = '';
455                         if (!empty($contact["fetch_further_information"]) && ($contact["fetch_further_information"] < 3)) {
456                                 // Handle enclosures and treat them as preview picture
457                                 foreach ($attachments AS $attachment) {
458                                         if ($attachment["mimetype"] == "image/jpeg") {
459                                                 $preview = $attachment["url"];
460                                         }
461                                 }
462
463                                 // Remove a possible link to the item itself
464                                 $item["body"] = str_replace($item["plink"], '', $item["body"]);
465                                 $item["body"] = trim(preg_replace('/\[url\=\](\w+.*?)\[\/url\]/i', '', $item["body"]));
466
467                                 // Replace the content when the title is longer than the body
468                                 $replace = (strlen($item["title"]) > strlen($item["body"]));
469
470                                 // Replace it, when there is an image in the body
471                                 if (strstr($item["body"], '[/img]')) {
472                                         $replace = true;
473                                 }
474
475                                 // Replace it, when there is a link in the body
476                                 if (strstr($item["body"], '[/url]')) {
477                                         $replace = true;
478                                 }
479
480                                 $saved_body = $item["body"];
481                                 $saved_title = $item["title"];
482
483                                 if ($replace) {
484                                         $item["body"] = trim($item["title"]);
485                                 }
486
487                                 $data = ParseUrl::getSiteinfoCached($item['plink']);
488                                 if (!empty($data['text']) && !empty($data['title']) && (mb_strlen($item['body']) < mb_strlen($data['text']))) {
489                                         // When the fetched page info text is longer than the body, we do try to enhance the body
490                                         if (!empty($item['body']) && (strpos($data['title'], $item['body']) === false) && (strpos($data['text'], $item['body']) === false)) {
491                                                 // The body is not part of the fetched page info title or page info text. So we add the text to the body
492                                                 $item['body'] .= "\n\n" . $data['text'];
493                                         } else {
494                                                 // Else we replace the body with the page info text
495                                                 $item['body'] = $data['text'];
496                                         }
497                                 }
498
499                                 $data = PageInfo::queryUrl($item["plink"], false, $preview, ($contact["fetch_further_information"] == 2), $contact["ffi_keyword_denylist"] ?? '');
500
501                                 if (!empty($data)) {
502                                         // Take the data that was provided by the feed if the query is empty
503                                         if (($data['type'] == 'link') && empty($data['title']) && empty($data['text'])) {
504                                                 $data['title'] = $saved_title;
505                                                 $item["body"] = $saved_body;
506                                         }
507
508                                         $data_text = strip_tags(trim($data['text'] ?? ''));
509                                         $item_body = strip_tags(trim($item['body'] ?? ''));
510
511                                         if (!empty($data_text) && (($data_text == $item_body) || strstr($item_body, $data_text))) {
512                                                 $data['text'] = '';
513                                         }
514
515                                         // We always strip the title since it will be added in the page information
516                                         $item["title"] = "";
517                                         $item["body"] = $item["body"] . "\n" . PageInfo::getFooterFromData($data, false);
518                                         $taglist = $contact["fetch_further_information"] == 2 ? PageInfo::getTagsFromUrl($item["plink"], $preview, $contact["ffi_keyword_denylist"] ?? '') : [];
519                                         $item["object-type"] = Activity\ObjectType::BOOKMARK;
520                                         $attachments = [];
521                                 }
522                         } else {
523                                 if (!empty($summary)) {
524                                         $item["body"] = '[abstract]' . HTML::toBBCode($summary, $basepath) . "[/abstract]\n" . $item["body"];
525                                 }
526
527                                 if (!empty($contact["fetch_further_information"]) && ($contact["fetch_further_information"] == 3)) {
528                                         if (empty($taglist)) {
529                                                 $taglist = PageInfo::getTagsFromUrl($item["plink"], $preview, $contact["ffi_keyword_denylist"] ?? '');
530                                         }
531                                         $item["body"] .= "\n" . self::tagToString($taglist);
532                                 } else {
533                                         $taglist = [];
534                                 }
535
536                                 // Add the link to the original feed entry if not present in feed
537                                 if (($item['plink'] != '') && !strstr($item["body"], $item['plink'])) {
538                                         $item["body"] .= "[hr][url]" . $item['plink'] . "[/url]";
539                                 }
540                         }
541
542                         if (empty($item['title'])) {
543                                 $item['post-type'] = Item::PT_NOTE;
544                         }
545
546                         Logger::info('Stored feed', ['item' => $item]);
547
548                         $notify = Item::isRemoteSelf($contact, $item);
549
550                         // Distributed items should have a well formatted URI.
551                         // Additionally we have to avoid conflicts with identical URI between imported feeds and these items.
552                         if ($notify) {
553                                 $item['guid'] = Item::guidFromUri($orig_plink, DI::baseUrl()->getHostname());
554                                 $item['uri'] = Item::newURI($item['uid'], $item['guid']);
555                                 unset($item['thr-parent']);
556                                 unset($item['parent-uri']);
557
558                                 // Set the delivery priority for "remote self" to "medium"
559                                 $notify = PRIORITY_MEDIUM;
560                         }
561
562                         $condition = ['uid' => $item['uid'], 'uri' => $item['uri']];
563                         if (!Post::exists($condition) && !Post\Delayed::exists($item["uri"], $item['uid'])) {
564                                 if (!$notify) {
565                                         Post\Delayed::publish($item, $notify, $taglist, $attachments);
566                                 } else {
567                                         $postings[] = ['item' => $item, 'notify' => $notify,
568                                                 'taglist' => $taglist, 'attachments' => $attachments];
569                                 }
570                         } else {
571                                 Logger::info('Post already created or exists in the delayed posts queue', ['uid' => $item['uid'], 'uri' => $item["uri"]]);
572                         }
573                 }
574
575                 if (!empty($postings)) {
576                         $min_posting = DI::config()->get('system', 'minimum_posting_interval', 0);
577                         $total = count($postings);
578                         if ($total > 1) {
579                                 // Posts shouldn't be delayed more than a day
580                                 $interval = min(1440, self::getPollInterval($contact));
581                                 $delay = max(round(($interval * 60) / $total), 60 * $min_posting);
582                                 Logger::info('Got posting delay', ['delay' => $delay, 'interval' => $interval, 'items' => $total, 'cid' => $contact['id'], 'url' => $contact['url']]);
583                         } else {
584                                 $delay = 0;
585                         }
586
587                         $post_delay = 0;
588
589                         foreach ($postings as $posting) {
590                                 if ($delay > 0) {
591                                         $publish_time = time() + $post_delay;
592                                         $post_delay += $delay;
593                                 } else {
594                                         $publish_time = time();
595                                 }
596
597                                 $last_publish = DI::pConfig()->get($posting['item']['uid'], 'system', 'last_publish', 0, true);
598                                 $next_publish = max($last_publish + (60 * $min_posting), time());
599                                 if ($publish_time < $next_publish) {
600                                         $publish_time = $next_publish;
601                                 }
602                                 $publish_at = date(DateTimeFormat::MYSQL, $publish_time);
603
604                                 Post\Delayed::add($posting['item']['uri'], $posting['item'], $posting['notify'], false, $publish_at, $posting['taglist'], $posting['attachments']);
605                         }
606                 }
607
608                 if (!$dryRun && DI::config()->get('system', 'adjust_poll_frequency')) {
609                         self::adjustPollFrequency($contact, $creation_dates);
610                 }
611
612                 return ["header" => $author, "items" => $items];
613         }
614
615         /**
616          * Automatically adjust the poll frequency according to the post frequency
617          *
618          * @param array $contact
619          * @param array $creation_dates
620          * @return void
621          */
622         private static function adjustPollFrequency(array $contact, array $creation_dates)
623         {
624                 if ($contact['network'] != Protocol::FEED) {
625                         Logger::info('Contact is no feed, skip.', ['id' => $contact['id'], 'uid' => $contact['uid'], 'url' => $contact['url'], 'network' => $contact['network']]);
626                         return;
627                 }
628
629                 if (!empty($creation_dates)) {
630                         // Count the post frequency and the earliest and latest post date
631                         $frequency = [];
632                         $oldest = time();
633                         $newest = 0;
634                         $oldest_date = $newest_date = '';
635
636                         foreach ($creation_dates as $date) {
637                                 $timestamp = strtotime($date);
638                                 $day = intdiv($timestamp, 86400);
639                                 $hour = $timestamp % 86400;
640
641                                 // Only have a look at values from the last seven days
642                                 if (((time() / 86400) - $day) < 7) {
643                                         if (empty($frequency[$day])) {
644                                                 $frequency[$day] = ['count' => 1, 'low' => $hour, 'high' => $hour];
645                                         } else {
646                                                 ++$frequency[$day]['count'];
647                                                 if ($frequency[$day]['low'] > $hour) {
648                                                         $frequency[$day]['low'] = $hour;
649                                                 }
650                                                 if ($frequency[$day]['high'] < $hour) {
651                                                         $frequency[$day]['high'] = $hour;
652                                                 }
653                                         }
654                                 }
655                                 if ($oldest > $day) {
656                                         $oldest = $day;
657                                         $oldest_date = $date;
658                                 }
659
660                                 if ($newest < $day) {
661                                         $newest = $day;
662                                         $newest_date = $date;
663                                 }
664                         }
665
666                         if (count($creation_dates) == 1) {
667                                 Logger::info('Feed had posted a single time, switching to daily polling', ['newest' => $newest_date, 'id' => $contact['id'], 'uid' => $contact['uid'], 'url' => $contact['url']]);
668                                 $priority = 8; // Poll once a day
669                         }
670
671                         if (empty($priority) && (((time() / 86400) - $newest) > 730)) {
672                                 Logger::info('Feed had not posted for two years, switching to monthly polling', ['newest' => $newest_date, 'id' => $contact['id'], 'uid' => $contact['uid'], 'url' => $contact['url']]);
673                                 $priority = 10; // Poll every month
674                         }
675
676                         if (empty($priority) && (((time() / 86400) - $newest) > 365)) {
677                                 Logger::info('Feed had not posted for a year, switching to weekly polling', ['newest' => $newest_date, 'id' => $contact['id'], 'uid' => $contact['uid'], 'url' => $contact['url']]);
678                                 $priority = 9; // Poll every week
679                         }
680
681                         if (empty($priority) && empty($frequency)) {
682                                 Logger::info('Feed had not posted for at least a week, switching to daily polling', ['newest' => $newest_date, 'id' => $contact['id'], 'uid' => $contact['uid'], 'url' => $contact['url']]);
683                                 $priority = 8; // Poll once a day
684                         }
685
686                         if (empty($priority)) {
687                                 // Calculate the highest "posts per day" value
688                                 $max = 0;
689                                 foreach ($frequency as $entry) {
690                                         if (($entry['count'] == 1) || ($entry['high'] == $entry['low'])) {
691                                                 continue;
692                                         }
693
694                                         // We take the earliest and latest post day and interpolate the number of post per day
695                                         // that would had been created with this post frequency
696
697                                         // Assume at least four hours between oldest and newest post per day - should be okay for news outlets
698                                         $duration = max($entry['high'] - $entry['low'], 14400);
699                                         $ppd = (86400 / $duration) * $entry['count'];
700                                         if ($ppd > $max) {
701                                                 $max = $ppd;
702                                         }
703                                 }
704                                 if ($max > 48) {
705                                         $priority = 1; // Poll every quarter hour
706                                 } elseif ($max > 24) {
707                                         $priority = 2; // Poll half an hour
708                                 } elseif ($max > 12) {
709                                         $priority = 3; // Poll hourly
710                                 } elseif ($max > 8) {
711                                         $priority = 4; // Poll every two hours
712                                 } elseif ($max > 4) {
713                                         $priority = 5; // Poll every three hours
714                                 } elseif ($max > 2) {
715                                         $priority = 6; // Poll every six hours
716                                 } else {
717                                         $priority = 7; // Poll twice a day
718                                 }
719                                 Logger::info('Calculated priority by the posts per day', ['priority' => $priority, 'max' => round($max, 2), 'id' => $contact['id'], 'uid' => $contact['uid'], 'url' => $contact['url']]);
720                         }
721                 } else {
722                         Logger::info('No posts, switching to daily polling', ['id' => $contact['id'], 'uid' => $contact['uid'], 'url' => $contact['url']]);
723                         $priority = 8; // Poll once a day
724                 }
725
726                 if ($contact['rating'] != $priority) {
727                         Logger::notice('Adjusting priority', ['old' => $contact['rating'], 'new' => $priority, 'id' => $contact['id'], 'uid' => $contact['uid'], 'url' => $contact['url']]);
728                         DBA::update('contact', ['rating' => $priority], ['id' => $contact['id']]);
729                 }
730         }
731
732         /**
733          * Get the poll interval for the given contact array
734          *
735          * @param array $contact
736          * @return int Poll interval in minutes
737          */
738         public static function getPollInterval(array $contact)
739         {
740                 if (in_array($contact['network'], [Protocol::MAIL, Protocol::FEED])) {
741                         $ratings = [0, 3, 7, 8, 9, 10];
742                         if (DI::config()->get('system', 'adjust_poll_frequency') && ($contact['network'] == Protocol::FEED)) {
743                                 $rating = $contact['rating'];
744                         } elseif (array_key_exists($contact['priority'], $ratings)) {
745                                 $rating = $ratings[$contact['priority']];
746                         } else {
747                                 $rating = -1;
748                         }
749                 } else {
750                         // Check once a week per default for all other networks
751                         $rating = 9;
752                 }
753
754                 // Friendica and OStatus are checked once a day
755                 if (in_array($contact['network'], [Protocol::DFRN, Protocol::OSTATUS])) {
756                         $rating = 8;
757                 }
758
759                 // Check archived contacts or contacts with unsupported protocols once a month
760                 if ($contact['archive'] || in_array($contact['network'], [Protocol::ZOT, Protocol::PHANTOM])) {
761                         $rating = 10;
762                 }
763
764                 if ($rating < 0) {
765                         return 0;
766                 }
767                 /*
768                  * Based on $contact['priority'], should we poll this site now? Or later?
769                  */
770
771                 $min_poll_interval = max(1, DI::config()->get('system', 'min_poll_interval'));
772
773                 $poll_intervals = [$min_poll_interval, 15, 30, 60, 120, 180, 360, 720 ,1440, 10080, 43200];
774
775                 //$poll_intervals = [$min_poll_interval . ' minute', '15 minute', '30 minute',
776                 //      '1 hour', '2 hour', '3 hour', '6 hour', '12 hour' ,'1 day', '1 week', '1 month'];
777
778                 return $poll_intervals[$rating];
779         }
780
781         /**
782          * Convert a tag array to a tag string
783          *
784          * @param array $tags
785          * @return string tag string
786          */
787         private static function tagToString(array $tags)
788         {
789                 $tagstr = '';
790
791                 foreach ($tags as $tag) {
792                         if ($tagstr != "") {
793                                 $tagstr .= ", ";
794                         }
795
796                         $tagstr .= "#[url=" . DI::baseUrl() . "/search?tag=" . urlencode($tag) . "]" . $tag . "[/url]";
797                 }
798
799                 return $tagstr;
800         }
801
802         private static function titleIsBody($title, $body)
803         {
804                 $title = strip_tags($title);
805                 $title = trim($title);
806                 $title = html_entity_decode($title, ENT_QUOTES, 'UTF-8');
807                 $title = str_replace(["\n", "\r", "\t", " "], ["", "", "", ""], $title);
808
809                 $body = strip_tags($body);
810                 $body = trim($body);
811                 $body = html_entity_decode($body, ENT_QUOTES, 'UTF-8');
812                 $body = str_replace(["\n", "\r", "\t", " "], ["", "", "", ""], $body);
813
814                 if (strlen($title) < strlen($body)) {
815                         $body = substr($body, 0, strlen($title));
816                 }
817
818                 if (($title != $body) && (substr($title, -3) == "...")) {
819                         $pos = strrpos($title, "...");
820                         if ($pos > 0) {
821                                 $title = substr($title, 0, $pos);
822                                 $body = substr($body, 0, $pos);
823                         }
824                 }
825                 return ($title == $body);
826         }
827
828         /**
829          * Creates the Atom feed for a given nickname
830          *
831          * Supported filters:
832          * - activity (default): all the public posts
833          * - posts: all the public top-level posts
834          * - comments: all the public replies
835          *
836          * Updates the provided last_update parameter if the result comes from the
837          * cache or it is empty
838          *
839          * @param string  $owner_nick  Nickname of the feed owner
840          * @param string  $last_update Date of the last update
841          * @param integer $max_items   Number of maximum items to fetch
842          * @param string  $filter      Feed items filter (activity, posts or comments)
843          * @param boolean $nocache     Wether to bypass caching
844          *
845          * @return string Atom feed
846          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
847          * @throws \ImagickException
848          */
849         public static function atom($owner_nick, $last_update, $max_items = 300, $filter = 'activity', $nocache = false)
850         {
851                 $stamp = microtime(true);
852
853                 $owner = User::getOwnerDataByNick($owner_nick);
854                 if (!$owner) {
855                         return;
856                 }
857
858                 $cachekey = "feed:feed:" . $owner_nick . ":" . $filter . ":" . $last_update;
859
860                 $previous_created = $last_update;
861
862                 // Don't cache when the last item was posted less then 15 minutes ago (Cache duration)
863                 if ((time() - strtotime($owner['last-item'])) < 15*60) {
864                         $result = DI::cache()->get($cachekey);
865                         if (!$nocache && !is_null($result)) {
866                                 Logger::info('Cached feed duration', ['seconds' => number_format(microtime(true) - $stamp, 3), 'nick' => $owner_nick, 'filter' => $filter, 'created' => $previous_created]);
867                                 return $result['feed'];
868                         }
869                 }
870
871                 $check_date = empty($last_update) ? '' : DateTimeFormat::utc($last_update);
872                 $authorid = Contact::getIdForURL($owner["url"]);
873
874                 $condition = ["`uid` = ? AND `received` > ? AND NOT `deleted` AND `gravity` IN (?, ?)
875                         AND `private` != ? AND `visible` AND `wall` AND `parent-network` IN (?, ?, ?, ?)",
876                         $owner["uid"], $check_date, GRAVITY_PARENT, GRAVITY_COMMENT,
877                         Item::PRIVATE, Protocol::ACTIVITYPUB,
878                         Protocol::OSTATUS, Protocol::DFRN, Protocol::DIASPORA];
879
880                 if ($filter === 'comments') {
881                         $condition[0] .= " AND `object-type` = ? ";
882                         $condition[] = Activity\ObjectType::COMMENT;
883                 }
884
885                 if ($owner['account-type'] != User::ACCOUNT_TYPE_COMMUNITY) {
886                         $condition[0] .= " AND `contact-id` = ? AND `author-id` = ?";
887                         $condition[] = $owner["id"];
888                         $condition[] = $authorid;
889                 }
890
891                 $params = ['order' => ['received' => true], 'limit' => $max_items];
892
893                 if ($filter === 'posts') {
894                         $ret = Post::selectThread(Item::DELIVER_FIELDLIST, $condition, $params);
895                 } else {
896                         $ret = Post::select(Item::DELIVER_FIELDLIST, $condition, $params);
897                 }
898
899                 $items = Post::toArray($ret);
900
901                 $doc = new DOMDocument('1.0', 'utf-8');
902                 $doc->formatOutput = true;
903
904                 $root = self::addHeader($doc, $owner, $filter);
905
906                 foreach ($items as $item) {
907                         $entry = self::entry($doc, $item, $owner);
908                         $root->appendChild($entry);
909
910                         if ($last_update < $item['created']) {
911                                 $last_update = $item['created'];
912                         }
913                 }
914
915                 $feeddata = trim($doc->saveXML());
916
917                 $msg = ['feed' => $feeddata, 'last_update' => $last_update];
918                 DI::cache()->set($cachekey, $msg, Duration::QUARTER_HOUR);
919
920                 Logger::info('Feed duration', ['seconds' => number_format(microtime(true) - $stamp, 3), 'nick' => $owner_nick, 'filter' => $filter, 'created' => $previous_created]);
921
922                 return $feeddata;
923         }
924
925         /**
926          * Adds the header elements to the XML document
927          *
928          * @param DOMDocument $doc       XML document
929          * @param array       $owner     Contact data of the poster
930          * @param string      $filter    The related feed filter (activity, posts or comments)
931          *
932          * @return object header root element
933          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
934          */
935         private static function addHeader(DOMDocument $doc, array $owner, $filter)
936         {
937                 $root = $doc->createElementNS(ActivityNamespace::ATOM1, 'feed');
938                 $doc->appendChild($root);
939
940                 $title = '';
941                 $selfUri = '/feed/' . $owner["nick"] . '/';
942                 switch ($filter) {
943                         case 'activity':
944                                 $title = DI::l10n()->t('%s\'s timeline', $owner['name']);
945                                 $selfUri .= $filter;
946                                 break;
947                         case 'posts':
948                                 $title = DI::l10n()->t('%s\'s posts', $owner['name']);
949                                 break;
950                         case 'comments':
951                                 $title = DI::l10n()->t('%s\'s comments', $owner['name']);
952                                 $selfUri .= $filter;
953                                 break;
954                 }
955
956                 $attributes = ["uri" => "https://friendi.ca", "version" => FRIENDICA_VERSION . "-" . DB_UPDATE_VERSION];
957                 XML::addElement($doc, $root, "generator", FRIENDICA_PLATFORM, $attributes);
958                 XML::addElement($doc, $root, "id", DI::baseUrl() . "/profile/" . $owner["nick"]);
959                 XML::addElement($doc, $root, "title", $title);
960                 XML::addElement($doc, $root, "subtitle", sprintf("Updates from %s on %s", $owner["name"], DI::config()->get('config', 'sitename')));
961                 XML::addElement($doc, $root, "logo", Contact::getAvatarUrlForId($owner['id'], Proxy::SIZE_SMALL, $owner['updated']));
962                 XML::addElement($doc, $root, "updated", DateTimeFormat::utcNow(DateTimeFormat::ATOM));
963
964                 $author = self::addAuthor($doc, $owner);
965                 $root->appendChild($author);
966
967                 $attributes = ["href" => $owner["url"], "rel" => "alternate", "type" => "text/html"];
968                 XML::addElement($doc, $root, "link", "", $attributes);
969
970                 OStatus::hublinks($doc, $root, $owner["nick"]);
971
972                 $attributes = ["href" => DI::baseUrl() . $selfUri, "rel" => "self", "type" => "application/atom+xml"];
973                 XML::addElement($doc, $root, "link", "", $attributes);
974
975                 return $root;
976         }
977
978         /**
979          * Adds the author element to the XML document
980          *
981          * @param DOMDocument $doc          XML document
982          * @param array       $owner        Contact data of the poster
983          *
984          * @return \DOMElement author element
985          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
986          */
987         private static function addAuthor(DOMDocument $doc, array $owner)
988         {
989                 $author = $doc->createElement("author");
990                 XML::addElement($doc, $author, "uri", $owner["url"]);
991                 XML::addElement($doc, $author, "name", $owner["nick"]);
992                 XML::addElement($doc, $author, "email", $owner["addr"]);
993
994                 return $author;
995         }
996
997         /**
998          * Adds an entry element to the XML document
999          *
1000          * @param DOMDocument $doc       XML document
1001          * @param array       $item      Data of the item that is to be posted
1002          * @param array       $owner     Contact data of the poster
1003          * @param bool        $toplevel  optional default false
1004          *
1005          * @return \DOMElement Entry element
1006          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1007          * @throws \ImagickException
1008          */
1009         private static function entry(DOMDocument $doc, array $item, array $owner)
1010         {
1011                 $xml = null;
1012
1013                 $repeated_guid = OStatus::getResharedGuid($item);
1014                 if ($repeated_guid != "") {
1015                         $xml = self::reshareEntry($doc, $item, $owner, $repeated_guid);
1016                 }
1017
1018                 if ($xml) {
1019                         return $xml;
1020                 }
1021
1022                 return self::noteEntry($doc, $item, $owner);
1023         }
1024
1025                 /**
1026          * Adds an entry element with reshared content
1027          *
1028          * @param DOMDocument $doc           XML document
1029          * @param array       $item          Data of the item that is to be posted
1030          * @param array       $owner         Contact data of the poster
1031          * @param string      $repeated_guid guid
1032          * @param bool        $toplevel      Is it for en entry element (false) or a feed entry (true)?
1033          *
1034          * @return bool Entry element
1035          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1036          * @throws \ImagickException
1037          */
1038         private static function reshareEntry(DOMDocument $doc, array $item, array $owner, $repeated_guid)
1039         {
1040                 if (($item['gravity'] != GRAVITY_PARENT) && (Strings::normaliseLink($item["author-link"]) != Strings::normaliseLink($owner["url"]))) {
1041                         Logger::info('Feed entry author does not match feed owner', ['owner' => $owner["url"], 'author' => $item["author-link"]]);
1042                 }
1043
1044                 $entry = OStatus::entryHeader($doc, $owner, $item, false);
1045
1046                 $condition = ['uid' => $owner["uid"], 'guid' => $repeated_guid, 'private' => [Item::PUBLIC, Item::UNLISTED],
1047                         'network' => Protocol::FEDERATED];
1048                 $repeated_item = Post::selectFirst(Item::DELIVER_FIELDLIST, $condition);
1049                 if (!DBA::isResult($repeated_item)) {
1050                         return false;
1051                 }
1052
1053                 self::entryContent($doc, $entry, $item, self::getTitle($repeated_item), Activity::SHARE, false);
1054
1055                 self::entryFooter($doc, $entry, $item, $owner);
1056
1057                 return $entry;
1058         }
1059
1060         /**
1061          * Adds a regular entry element
1062          *
1063          * @param DOMDocument $doc       XML document
1064          * @param array       $item      Data of the item that is to be posted
1065          * @param array       $owner     Contact data of the poster
1066          * @param bool        $toplevel  Is it for en entry element (false) or a feed entry (true)?
1067          *
1068          * @return \DOMElement Entry element
1069          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1070          * @throws \ImagickException
1071          */
1072         private static function noteEntry(DOMDocument $doc, array $item, array $owner)
1073         {
1074                 if (($item['gravity'] != GRAVITY_PARENT) && (Strings::normaliseLink($item["author-link"]) != Strings::normaliseLink($owner["url"]))) {
1075                         Logger::info('Feed entry author does not match feed owner', ['owner' => $owner["url"], 'author' => $item["author-link"]]);
1076                 }
1077
1078                 $entry = OStatus::entryHeader($doc, $owner, $item, false);
1079
1080                 self::entryContent($doc, $entry, $item, self::getTitle($item), '', true);
1081
1082                 self::entryFooter($doc, $entry, $item, $owner);
1083
1084                 return $entry;
1085         }
1086
1087         /**
1088          * Adds elements to the XML document
1089          *
1090          * @param DOMDocument $doc       XML document
1091          * @param \DOMElement $entry     Entry element where the content is added
1092          * @param array       $item      Data of the item that is to be posted
1093          * @param array       $owner     Contact data of the poster
1094          * @param string      $title     Title for the post
1095          * @param string      $verb      The activity verb
1096          * @param bool        $complete  Add the "status_net" element?
1097          * @param bool        $feed_mode Behave like a regular feed for users if true
1098          * @return void
1099          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1100          */
1101         private static function entryContent(DOMDocument $doc, \DOMElement $entry, array $item, $title, $verb = "", $complete = true)
1102         {
1103                 if ($verb == "") {
1104                         $verb = OStatus::constructVerb($item);
1105                 }
1106
1107                 XML::addElement($doc, $entry, "id", $item["uri"]);
1108                 XML::addElement($doc, $entry, "title", html_entity_decode($title, ENT_QUOTES, 'UTF-8'));
1109
1110                 $body = OStatus::formatPicturePost($item['body']);
1111
1112                 $body = BBCode::convert($body, false, BBCode::OSTATUS);
1113
1114                 XML::addElement($doc, $entry, "content", $body, ["type" => "html"]);
1115
1116                 XML::addElement($doc, $entry, "link", "", ["rel" => "alternate", "type" => "text/html",
1117                                                                 "href" => DI::baseUrl()."/display/".$item["guid"]]
1118                 );
1119
1120                 XML::addElement($doc, $entry, "published", DateTimeFormat::utc($item["created"]."+00:00", DateTimeFormat::ATOM));
1121                 XML::addElement($doc, $entry, "updated", DateTimeFormat::utc($item["edited"]."+00:00", DateTimeFormat::ATOM));
1122         }
1123
1124         /**
1125          * Adds the elements at the foot of an entry to the XML document
1126          *
1127          * @param DOMDocument $doc       XML document
1128          * @param object      $entry     The entry element where the elements are added
1129          * @param array       $item      Data of the item that is to be posted
1130          * @param array       $owner     Contact data of the poster
1131          * @param bool        $complete  default true
1132          * @return void
1133          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1134          */
1135         private static function entryFooter(DOMDocument $doc, $entry, array $item, array $owner)
1136         {
1137                 $mentioned = [];
1138
1139                 if ($item['gravity'] != GRAVITY_PARENT) {
1140                         $parent = Post::selectFirst(['guid', 'author-link', 'owner-link'], ['id' => $item['parent']]);
1141
1142                         $thrparent = Post::selectFirst(['guid', 'author-link', 'owner-link', 'plink'], ['uid' => $owner["uid"], 'uri' => $item['thr-parent']]);
1143
1144                         if (DBA::isResult($thrparent)) {
1145                                 $mentioned[$thrparent["author-link"]] = $thrparent["author-link"];
1146                                 $mentioned[$thrparent["owner-link"]] = $thrparent["owner-link"];
1147                                 $parent_plink = $thrparent["plink"];
1148                         } else {
1149                                 $mentioned[$parent["author-link"]] = $parent["author-link"];
1150                                 $mentioned[$parent["owner-link"]] = $parent["owner-link"];
1151                                 $parent_plink = DI::baseUrl()."/display/".$parent["guid"];
1152                         }
1153
1154                         $attributes = [
1155                                         "ref" => $item['thr-parent'],
1156                                         "href" => $parent_plink];
1157                         XML::addElement($doc, $entry, "thr:in-reply-to", "", $attributes);
1158
1159                         $attributes = [
1160                                         "rel" => "related",
1161                                         "href" => $parent_plink];
1162                         XML::addElement($doc, $entry, "link", "", $attributes);
1163                 }
1164
1165                 // uri-id isn't present for follow entry pseudo-items
1166                 $tags = Tag::getByURIId($item['uri-id'] ?? 0);
1167                 foreach ($tags as $tag) {
1168                         $mentioned[$tag['url']] = $tag['url'];
1169                 }
1170
1171                 foreach ($tags as $tag) {
1172                         if ($tag['type'] == Tag::HASHTAG) {
1173                                 XML::addElement($doc, $entry, "category", "", ["term" => $tag['name']]);
1174                         }
1175                 }
1176
1177                 OStatus::getAttachment($doc, $entry, $item);
1178         }
1179
1180         /**
1181          * Fetch or create title for feed entry
1182          *
1183          * @param array $item
1184          * @return string title
1185          */
1186         private static function getTitle(array $item)
1187         {
1188                 if ($item['title'] != '') {
1189                         return BBCode::convert($item['title'], false, BBCode::OSTATUS);
1190                 }
1191
1192                 // Fetch information about the post
1193                 $siteinfo = BBCode::getAttachedData($item["body"]);
1194                 if (isset($siteinfo["title"])) {
1195                         return $siteinfo["title"];
1196                 }
1197
1198                 // If no bookmark is found then take the first line
1199                 // Remove the share element before fetching the first line
1200                 $title = trim(preg_replace("/\[share.*?\](.*?)\[\/share\]/ism","\n$1\n",$item['body']));
1201
1202                 $title = HTML::toPlaintext(BBCode::convert($title, false), 0, true)."\n";
1203                 $pos = strpos($title, "\n");
1204                 $trailer = "";
1205                 if (($pos == 0) || ($pos > 100)) {
1206                         $pos = 100;
1207                         $trailer = "...";
1208                 }
1209
1210                 return substr($title, 0, $pos) . $trailer;
1211         }
1212 }