2015-09-27 12:02:05 +00:00
|
|
|
<?php
|
2017-12-13 07:03:42 +00:00
|
|
|
/**
|
2020-02-09 15:18:46 +00:00
|
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2017-12-13 07:03:42 +00:00
|
|
|
*
|
|
|
|
*/
|
2020-02-09 15:18:46 +00:00
|
|
|
|
2017-12-13 07:03:42 +00:00
|
|
|
namespace Friendica\Protocol;
|
|
|
|
|
2018-07-20 02:15:21 +00:00
|
|
|
use DOMDocument;
|
|
|
|
use DOMXPath;
|
|
|
|
use Friendica\Content\Text\HTML;
|
2018-10-29 21:20:46 +00:00
|
|
|
use Friendica\Core\Logger;
|
2018-08-11 20:40:44 +00:00
|
|
|
use Friendica\Core\Protocol;
|
2018-07-21 12:40:21 +00:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-15 23:47:24 +00:00
|
|
|
use Friendica\DI;
|
2018-01-20 23:52:54 +00:00
|
|
|
use Friendica\Model\Item;
|
2020-04-17 06:35:20 +00:00
|
|
|
use Friendica\Model\Tag;
|
2018-01-27 13:25:54 +00:00
|
|
|
use Friendica\Util\Network;
|
2020-01-03 14:09:03 +00:00
|
|
|
use Friendica\Util\ParseUrl;
|
2018-07-08 13:39:48 +00:00
|
|
|
use Friendica\Util\XML;
|
2018-03-08 19:58:35 +00:00
|
|
|
|
2016-02-16 07:06:55 +00:00
|
|
|
/**
|
2020-02-09 15:18:46 +00:00
|
|
|
* This class contain functions to import feeds (RSS/RDF/Atom)
|
2016-02-16 07:06:55 +00:00
|
|
|
*/
|
2020-06-17 08:54:44 +00:00
|
|
|
class Feed
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* consume - process atom feed and update anything/everything we might need to update
|
|
|
|
*
|
|
|
|
* $xml = the (atom) feed to consume - RSS isn't as fully supported but may work for simple feeds.
|
|
|
|
*
|
|
|
|
* $importer = the contact_record (joined to user_record) of the local user who owns this relationship.
|
|
|
|
* It is this person's stuff that is going to be updated.
|
|
|
|
* $contact = the person who is sending us stuff. If not set, we MAY be processing a "follow" activity
|
|
|
|
* from an external network and MAY create an appropriate contact record. Otherwise, we MUST
|
|
|
|
* have a contact record.
|
|
|
|
* $hub = should we find a hub declation in the feed, pass it back to our calling process, who might (or
|
|
|
|
* might not) try and subscribe to it.
|
|
|
|
* $datedir sorts in reverse order
|
|
|
|
* $pass - by default ($pass = 0) we cannot guarantee that a parent item has been
|
|
|
|
* imported prior to its children being seen in the stream unless we are certain
|
|
|
|
* of how the feed is arranged/ordered.
|
|
|
|
* With $pass = 1, we only pull parent items out of the stream.
|
|
|
|
* With $pass = 2, we only pull children (comments/likes).
|
|
|
|
*
|
|
|
|
* So running this twice, first with pass 1 and then with pass 2 will do the right
|
|
|
|
* thing regardless of feed ordering. This won't be adequate in a fully-threaded
|
|
|
|
* model where comments can have sub-threads. That would require some massive sorting
|
|
|
|
* to get all the feed items into a mostly linear ordering, and might still require
|
|
|
|
* recursion.
|
|
|
|
*
|
|
|
|
* @param $xml
|
|
|
|
* @param array $importer
|
|
|
|
* @param array $contact
|
|
|
|
* @param $hub
|
|
|
|
* @throws ImagickException
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
*/
|
|
|
|
public static function consume($xml, array $importer, array $contact, &$hub)
|
|
|
|
{
|
|
|
|
if ($contact['network'] === Protocol::OSTATUS) {
|
2020-06-18 01:44:28 +00:00
|
|
|
Logger::info('Consume OStatus messages');
|
2020-06-17 08:54:44 +00:00
|
|
|
OStatus::import($xml, $importer, $contact, $hub);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($contact['network'] === Protocol::FEED) {
|
2020-06-18 01:44:28 +00:00
|
|
|
Logger::info('Consume feeds');
|
2020-06-17 08:54:44 +00:00
|
|
|
self::import($xml, $importer, $contact);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($contact['network'] === Protocol::DFRN) {
|
2020-06-18 01:44:28 +00:00
|
|
|
Logger::info('Consume DFRN messages');
|
2020-06-17 08:54:44 +00:00
|
|
|
$dfrn_importer = DFRN::getImporter($contact['id'], $importer['uid']);
|
|
|
|
if (!empty($dfrn_importer)) {
|
2020-06-18 01:44:28 +00:00
|
|
|
Logger::info('Now import the DFRN feed');
|
2020-06-17 08:54:44 +00:00
|
|
|
DFRN::import($xml, $dfrn_importer, true);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-13 07:03:42 +00:00
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Read a RSS/RDF/Atom feed and create an item entry for it
|
2017-12-13 07:03:42 +00:00
|
|
|
*
|
2019-01-06 21:06:53 +00:00
|
|
|
* @param string $xml The feed data
|
|
|
|
* @param array $importer The user record of the importer
|
|
|
|
* @param array $contact The contact record of the feed
|
2017-12-13 07:03:42 +00:00
|
|
|
*
|
2020-01-03 14:26:28 +00:00
|
|
|
* @return array Returns the header and the first item in dry run mode
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2017-12-13 07:03:42 +00:00
|
|
|
*/
|
2020-01-03 14:26:28 +00:00
|
|
|
public static function import($xml, array $importer = [], array $contact = [])
|
2020-01-03 14:09:03 +00:00
|
|
|
{
|
2020-01-03 14:26:28 +00:00
|
|
|
$dryRun = empty($importer) && empty($contact);
|
2017-12-13 07:03:42 +00:00
|
|
|
|
2020-01-03 14:26:28 +00:00
|
|
|
if ($dryRun) {
|
|
|
|
Logger::info("Test Atom/RSS feed");
|
2017-12-13 07:03:42 +00:00
|
|
|
} else {
|
2020-01-03 14:26:28 +00:00
|
|
|
Logger::info("Import Atom/RSS feed '" . $contact["name"] . "' (Contact " . $contact["id"] . ") for user " . $importer["uid"]);
|
2017-12-13 07:03:42 +00:00
|
|
|
}
|
2020-01-03 14:09:03 +00:00
|
|
|
|
2018-07-10 12:27:56 +00:00
|
|
|
if (empty($xml)) {
|
2020-01-03 14:26:28 +00:00
|
|
|
Logger::info('XML is empty.');
|
|
|
|
return [];
|
2017-12-13 07:03:42 +00:00
|
|
|
}
|
2015-09-27 12:02:05 +00:00
|
|
|
|
2017-12-13 07:03:42 +00:00
|
|
|
if (!empty($contact['poll'])) {
|
|
|
|
$basepath = $contact['poll'];
|
|
|
|
} elseif (!empty($contact['url'])) {
|
|
|
|
$basepath = $contact['url'];
|
|
|
|
} else {
|
|
|
|
$basepath = '';
|
|
|
|
}
|
2015-09-27 12:02:05 +00:00
|
|
|
|
2017-12-13 07:03:42 +00:00
|
|
|
$doc = new DOMDocument();
|
|
|
|
@$doc->loadXML(trim($xml));
|
2017-12-17 20:24:57 +00:00
|
|
|
$xpath = new DOMXPath($doc);
|
2019-10-24 22:32:35 +00:00
|
|
|
$xpath->registerNamespace('atom', ActivityNamespace::ATOM1);
|
2017-12-13 07:03:42 +00:00
|
|
|
$xpath->registerNamespace('dc', "http://purl.org/dc/elements/1.1/");
|
|
|
|
$xpath->registerNamespace('content', "http://purl.org/rss/1.0/modules/content/");
|
|
|
|
$xpath->registerNamespace('rdf', "http://www.w3.org/1999/02/22-rdf-syntax-ns#");
|
|
|
|
$xpath->registerNamespace('rss', "http://purl.org/rss/1.0/");
|
|
|
|
$xpath->registerNamespace('media', "http://search.yahoo.com/mrss/");
|
2019-10-24 22:32:35 +00:00
|
|
|
$xpath->registerNamespace('poco', ActivityNamespace::POCO);
|
2015-09-27 12:02:05 +00:00
|
|
|
|
2018-01-15 13:05:12 +00:00
|
|
|
$author = [];
|
2018-02-14 04:58:46 +00:00
|
|
|
$entries = null;
|
2017-10-16 20:31:13 +00:00
|
|
|
|
2017-12-13 07:03:42 +00:00
|
|
|
// Is it RDF?
|
|
|
|
if ($xpath->query('/rdf:RDF/rss:channel')->length > 0) {
|
2018-07-10 12:27:56 +00:00
|
|
|
$author["author-link"] = XML::getFirstNodeValue($xpath, '/rdf:RDF/rss:channel/rss:link/text()');
|
|
|
|
$author["author-name"] = XML::getFirstNodeValue($xpath, '/rdf:RDF/rss:channel/rss:title/text()');
|
2015-09-27 12:02:05 +00:00
|
|
|
|
2018-07-10 12:27:56 +00:00
|
|
|
if (empty($author["author-name"])) {
|
|
|
|
$author["author-name"] = XML::getFirstNodeValue($xpath, '/rdf:RDF/rss:channel/rss:description/text()');
|
2017-03-15 06:00:22 +00:00
|
|
|
}
|
2017-12-13 07:03:42 +00:00
|
|
|
$entries = $xpath->query('/rdf:RDF/rss:item');
|
2017-03-15 06:00:22 +00:00
|
|
|
}
|
2016-02-14 14:02:59 +00:00
|
|
|
|
2017-12-13 07:03:42 +00:00
|
|
|
// Is it Atom?
|
|
|
|
if ($xpath->query('/atom:feed')->length > 0) {
|
2018-07-10 12:27:56 +00:00
|
|
|
$alternate = XML::getFirstAttributes($xpath, "atom:link[@rel='alternate']");
|
2017-12-13 07:03:42 +00:00
|
|
|
if (is_object($alternate)) {
|
2018-03-10 23:35:24 +00:00
|
|
|
foreach ($alternate AS $attribute) {
|
|
|
|
if ($attribute->name == "href") {
|
|
|
|
$author["author-link"] = $attribute->textContent;
|
2017-03-15 06:00:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-02-14 14:02:59 +00:00
|
|
|
|
2018-07-10 12:27:56 +00:00
|
|
|
if (empty($author["author-link"])) {
|
|
|
|
$self = XML::getFirstAttributes($xpath, "atom:link[@rel='self']");
|
2017-12-13 07:03:42 +00:00
|
|
|
if (is_object($self)) {
|
2018-03-10 23:35:24 +00:00
|
|
|
foreach ($self AS $attribute) {
|
|
|
|
if ($attribute->name == "href") {
|
|
|
|
$author["author-link"] = $attribute->textContent;
|
2017-12-13 07:03:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-09-27 12:02:05 +00:00
|
|
|
|
2018-07-10 12:27:56 +00:00
|
|
|
if (empty($author["author-link"])) {
|
|
|
|
$author["author-link"] = XML::getFirstNodeValue($xpath, '/atom:feed/atom:id/text()');
|
2017-12-13 07:03:42 +00:00
|
|
|
}
|
2018-07-10 12:27:56 +00:00
|
|
|
$author["author-avatar"] = XML::getFirstNodeValue($xpath, '/atom:feed/atom:logo/text()');
|
2015-09-27 12:02:05 +00:00
|
|
|
|
2018-07-10 12:27:56 +00:00
|
|
|
$author["author-name"] = XML::getFirstNodeValue($xpath, '/atom:feed/atom:title/text()');
|
2016-07-08 20:31:11 +00:00
|
|
|
|
2018-07-10 12:27:56 +00:00
|
|
|
if (empty($author["author-name"])) {
|
|
|
|
$author["author-name"] = XML::getFirstNodeValue($xpath, '/atom:feed/atom:subtitle/text()');
|
2017-03-15 06:00:22 +00:00
|
|
|
}
|
2020-01-03 14:09:03 +00:00
|
|
|
|
2018-07-10 12:27:56 +00:00
|
|
|
if (empty($author["author-name"])) {
|
|
|
|
$author["author-name"] = XML::getFirstNodeValue($xpath, '/atom:feed/atom:author/atom:name/text()');
|
2017-03-15 06:00:22 +00:00
|
|
|
}
|
2020-01-03 14:09:03 +00:00
|
|
|
|
2018-07-10 12:27:56 +00:00
|
|
|
$value = XML::getFirstNodeValue($xpath, 'atom:author/poco:displayName/text()');
|
2017-03-15 06:00:22 +00:00
|
|
|
if ($value != "") {
|
2017-12-13 07:03:42 +00:00
|
|
|
$author["author-name"] = $value;
|
2017-03-15 06:00:22 +00:00
|
|
|
}
|
2020-01-03 14:09:03 +00:00
|
|
|
|
2020-01-03 14:26:28 +00:00
|
|
|
if ($dryRun) {
|
2018-11-10 13:24:10 +00:00
|
|
|
$author["author-id"] = XML::getFirstNodeValue($xpath, '/atom:feed/atom:author/atom:id/text()');
|
|
|
|
|
|
|
|
// See https://tools.ietf.org/html/rfc4287#section-3.2.2
|
|
|
|
$value = XML::getFirstNodeValue($xpath, 'atom:author/atom:uri/text()');
|
|
|
|
if ($value != "") {
|
|
|
|
$author["author-link"] = $value;
|
|
|
|
}
|
2017-12-13 07:03:42 +00:00
|
|
|
|
2018-07-10 12:27:56 +00:00
|
|
|
$value = XML::getFirstNodeValue($xpath, 'atom:author/poco:preferredUsername/text()');
|
2017-12-13 07:03:42 +00:00
|
|
|
if ($value != "") {
|
|
|
|
$author["author-nick"] = $value;
|
|
|
|
}
|
2020-01-03 14:09:03 +00:00
|
|
|
|
2018-07-08 11:46:05 +00:00
|
|
|
$value = XML::getFirstNodeValue($xpath, 'atom:author/poco:address/poco:formatted/text()');
|
2017-12-13 07:03:42 +00:00
|
|
|
if ($value != "") {
|
|
|
|
$author["author-location"] = $value;
|
|
|
|
}
|
2020-01-03 14:09:03 +00:00
|
|
|
|
2018-07-08 11:46:05 +00:00
|
|
|
$value = XML::getFirstNodeValue($xpath, 'atom:author/poco:note/text()');
|
2017-12-13 07:03:42 +00:00
|
|
|
if ($value != "") {
|
|
|
|
$author["author-about"] = $value;
|
|
|
|
}
|
2020-01-03 14:09:03 +00:00
|
|
|
|
2018-07-10 12:27:56 +00:00
|
|
|
$avatar = XML::getFirstAttributes($xpath, "atom:author/atom:link[@rel='avatar']");
|
2017-12-13 07:03:42 +00:00
|
|
|
if (is_object($avatar)) {
|
2018-03-10 23:35:24 +00:00
|
|
|
foreach ($avatar AS $attribute) {
|
|
|
|
if ($attribute->name == "href") {
|
|
|
|
$author["author-avatar"] = $attribute->textContent;
|
2017-12-13 07:03:42 +00:00
|
|
|
}
|
2017-08-21 20:21:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-02-14 18:50:59 +00:00
|
|
|
|
2018-07-08 11:46:05 +00:00
|
|
|
$author["edited"] = $author["created"] = XML::getFirstNodeValue($xpath, '/atom:feed/atom:updated/text()');
|
2015-09-27 12:02:05 +00:00
|
|
|
|
2018-07-08 11:46:05 +00:00
|
|
|
$author["app"] = XML::getFirstNodeValue($xpath, '/atom:feed/atom:generator/text()');
|
2015-09-27 12:02:05 +00:00
|
|
|
|
2017-12-13 07:03:42 +00:00
|
|
|
$entries = $xpath->query('/atom:feed/atom:entry');
|
|
|
|
}
|
2015-09-27 12:02:05 +00:00
|
|
|
|
2017-12-13 07:03:42 +00:00
|
|
|
// Is it RSS?
|
|
|
|
if ($xpath->query('/rss/channel')->length > 0) {
|
2018-07-10 12:27:56 +00:00
|
|
|
$author["author-link"] = XML::getFirstNodeValue($xpath, '/rss/channel/link/text()');
|
2016-02-14 14:02:59 +00:00
|
|
|
|
2018-07-10 12:27:56 +00:00
|
|
|
$author["author-name"] = XML::getFirstNodeValue($xpath, '/rss/channel/title/text()');
|
|
|
|
$author["author-avatar"] = XML::getFirstNodeValue($xpath, '/rss/channel/image/url/text()');
|
2015-09-27 12:02:05 +00:00
|
|
|
|
2018-07-10 12:27:56 +00:00
|
|
|
if (empty($author["author-name"])) {
|
|
|
|
$author["author-name"] = XML::getFirstNodeValue($xpath, '/rss/channel/copyright/text()');
|
2017-12-13 07:03:42 +00:00
|
|
|
}
|
2020-01-03 14:09:03 +00:00
|
|
|
|
2018-07-10 12:27:56 +00:00
|
|
|
if (empty($author["author-name"])) {
|
|
|
|
$author["author-name"] = XML::getFirstNodeValue($xpath, '/rss/channel/description/text()');
|
2017-12-13 07:03:42 +00:00
|
|
|
}
|
2020-01-03 14:09:03 +00:00
|
|
|
|
2018-07-10 12:27:56 +00:00
|
|
|
$author["edited"] = $author["created"] = XML::getFirstNodeValue($xpath, '/rss/channel/pubDate/text()');
|
2015-09-27 12:02:05 +00:00
|
|
|
|
2018-07-10 12:27:56 +00:00
|
|
|
$author["app"] = XML::getFirstNodeValue($xpath, '/rss/channel/generator/text()');
|
2015-09-27 12:02:05 +00:00
|
|
|
|
2017-12-13 07:03:42 +00:00
|
|
|
$entries = $xpath->query('/rss/channel/item');
|
|
|
|
}
|
|
|
|
|
2020-01-03 14:26:28 +00:00
|
|
|
if (!$dryRun) {
|
2017-12-13 07:03:42 +00:00
|
|
|
$author["author-link"] = $contact["url"];
|
2015-09-27 12:02:05 +00:00
|
|
|
|
2018-07-10 12:27:56 +00:00
|
|
|
if (empty($author["author-name"])) {
|
2017-12-13 07:03:42 +00:00
|
|
|
$author["author-name"] = $contact["name"];
|
|
|
|
}
|
2020-01-03 14:09:03 +00:00
|
|
|
|
2017-12-13 07:03:42 +00:00
|
|
|
$author["author-avatar"] = $contact["thumb"];
|
2015-09-27 12:02:05 +00:00
|
|
|
|
2017-12-13 07:03:42 +00:00
|
|
|
$author["owner-link"] = $contact["url"];
|
|
|
|
$author["owner-name"] = $contact["name"];
|
|
|
|
$author["owner-avatar"] = $contact["thumb"];
|
2017-03-15 06:00:22 +00:00
|
|
|
}
|
2015-09-27 12:02:05 +00:00
|
|
|
|
2018-01-15 13:05:12 +00:00
|
|
|
$header = [];
|
2020-01-03 14:26:28 +00:00
|
|
|
$header["uid"] = $importer["uid"] ?? 0;
|
2018-08-11 20:40:44 +00:00
|
|
|
$header["network"] = Protocol::FEED;
|
2017-12-13 07:03:42 +00:00
|
|
|
$header["wall"] = 0;
|
|
|
|
$header["origin"] = 0;
|
|
|
|
$header["gravity"] = GRAVITY_PARENT;
|
2020-03-02 07:57:23 +00:00
|
|
|
$header["private"] = Item::PUBLIC;
|
2019-10-23 22:25:43 +00:00
|
|
|
$header["verb"] = Activity::POST;
|
2019-10-24 22:10:20 +00:00
|
|
|
$header["object-type"] = Activity\ObjectType::NOTE;
|
2015-09-27 12:02:05 +00:00
|
|
|
|
2020-01-03 14:26:28 +00:00
|
|
|
$header["contact-id"] = $contact["id"] ?? 0;
|
2015-10-03 11:58:10 +00:00
|
|
|
|
2017-12-13 07:03:42 +00:00
|
|
|
if (!is_object($entries)) {
|
2020-01-03 14:26:28 +00:00
|
|
|
Logger::info("There are no entries in this feed.");
|
|
|
|
return [];
|
2017-12-13 07:03:42 +00:00
|
|
|
}
|
2016-02-14 14:02:59 +00:00
|
|
|
|
2018-01-15 13:05:12 +00:00
|
|
|
$items = [];
|
2020-03-22 13:05:35 +00:00
|
|
|
|
|
|
|
// Limit the number of items that are about to be fetched
|
|
|
|
$total_items = ($entries->length - 1);
|
|
|
|
$max_items = DI::config()->get('system', 'max_feed_items');
|
|
|
|
if (($max_items > 0) && ($total_items > $max_items)) {
|
|
|
|
$total_items = $max_items;
|
|
|
|
}
|
|
|
|
|
2018-03-10 17:40:21 +00:00
|
|
|
// Importing older entries first
|
2020-03-22 13:05:35 +00:00
|
|
|
for ($i = $total_items; $i >= 0; --$i) {
|
2018-03-10 17:40:21 +00:00
|
|
|
$entry = $entries->item($i);
|
2015-10-14 06:10:06 +00:00
|
|
|
|
2017-12-13 07:03:42 +00:00
|
|
|
$item = array_merge($header, $author);
|
|
|
|
|
2018-07-10 12:27:56 +00:00
|
|
|
$alternate = XML::getFirstAttributes($xpath, "atom:link[@rel='alternate']", $entry);
|
2017-12-13 07:03:42 +00:00
|
|
|
if (!is_object($alternate)) {
|
2018-07-10 12:27:56 +00:00
|
|
|
$alternate = XML::getFirstAttributes($xpath, "atom:link", $entry);
|
2017-12-13 07:03:42 +00:00
|
|
|
}
|
|
|
|
if (is_object($alternate)) {
|
2018-03-10 23:35:24 +00:00
|
|
|
foreach ($alternate AS $attribute) {
|
|
|
|
if ($attribute->name == "href") {
|
|
|
|
$item["plink"] = $attribute->textContent;
|
2017-12-13 07:03:42 +00:00
|
|
|
}
|
2017-03-15 06:00:22 +00:00
|
|
|
}
|
|
|
|
}
|
2020-01-03 14:09:03 +00:00
|
|
|
|
2018-07-10 12:27:56 +00:00
|
|
|
if (empty($item["plink"])) {
|
2018-07-08 11:46:05 +00:00
|
|
|
$item["plink"] = XML::getFirstNodeValue($xpath, 'link/text()', $entry);
|
2017-12-13 07:03:42 +00:00
|
|
|
}
|
2020-01-03 14:09:03 +00:00
|
|
|
|
2018-07-10 12:27:56 +00:00
|
|
|
if (empty($item["plink"])) {
|
2018-07-08 11:46:05 +00:00
|
|
|
$item["plink"] = XML::getFirstNodeValue($xpath, 'rss:link/text()', $entry);
|
2017-12-13 07:03:42 +00:00
|
|
|
}
|
2015-09-27 12:02:05 +00:00
|
|
|
|
2018-07-08 11:46:05 +00:00
|
|
|
$item["uri"] = XML::getFirstNodeValue($xpath, 'atom:id/text()', $entry);
|
2015-09-27 12:02:05 +00:00
|
|
|
|
2018-07-10 12:27:56 +00:00
|
|
|
if (empty($item["uri"])) {
|
2018-07-08 11:46:05 +00:00
|
|
|
$item["uri"] = XML::getFirstNodeValue($xpath, 'guid/text()', $entry);
|
2017-12-13 07:03:42 +00:00
|
|
|
}
|
2020-01-03 14:09:03 +00:00
|
|
|
|
2018-07-10 12:27:56 +00:00
|
|
|
if (empty($item["uri"])) {
|
2017-12-13 07:03:42 +00:00
|
|
|
$item["uri"] = $item["plink"];
|
|
|
|
}
|
2017-04-08 08:12:14 +00:00
|
|
|
|
2017-12-13 07:03:42 +00:00
|
|
|
$orig_plink = $item["plink"];
|
2017-04-08 08:12:14 +00:00
|
|
|
|
2018-01-27 16:13:41 +00:00
|
|
|
$item["plink"] = Network::finalUrl($item["plink"]);
|
2017-04-08 08:12:14 +00:00
|
|
|
|
2017-12-13 07:03:42 +00:00
|
|
|
$item["parent-uri"] = $item["uri"];
|
2015-09-27 12:02:05 +00:00
|
|
|
|
2020-01-03 14:26:28 +00:00
|
|
|
if (!$dryRun) {
|
2017-12-13 07:03:42 +00:00
|
|
|
$condition = ["`uid` = ? AND `uri` = ? AND `network` IN (?, ?)",
|
2018-08-11 20:40:44 +00:00
|
|
|
$importer["uid"], $item["uri"], Protocol::FEED, Protocol::DFRN];
|
2018-07-07 18:14:16 +00:00
|
|
|
$previous = Item::selectFirst(['id'], $condition);
|
2018-07-21 12:46:04 +00:00
|
|
|
if (DBA::isResult($previous)) {
|
2020-01-03 14:26:28 +00:00
|
|
|
Logger::info("Item with uri " . $item["uri"] . " for user " . $importer["uid"] . " already existed under id " . $previous["id"]);
|
2017-12-13 07:03:42 +00:00
|
|
|
continue;
|
|
|
|
}
|
2017-01-31 19:39:09 +00:00
|
|
|
}
|
|
|
|
|
2018-07-08 11:46:05 +00:00
|
|
|
$item["title"] = XML::getFirstNodeValue($xpath, 'atom:title/text()', $entry);
|
2017-01-31 19:39:09 +00:00
|
|
|
|
2018-07-10 12:27:56 +00:00
|
|
|
if (empty($item["title"])) {
|
2018-07-08 11:46:05 +00:00
|
|
|
$item["title"] = XML::getFirstNodeValue($xpath, 'title/text()', $entry);
|
2017-12-13 07:03:42 +00:00
|
|
|
}
|
2018-07-10 12:27:56 +00:00
|
|
|
if (empty($item["title"])) {
|
2018-07-08 11:46:05 +00:00
|
|
|
$item["title"] = XML::getFirstNodeValue($xpath, 'rss:title/text()', $entry);
|
2017-12-13 07:03:42 +00:00
|
|
|
}
|
2019-08-18 13:37:31 +00:00
|
|
|
|
2019-08-22 10:00:21 +00:00
|
|
|
$item["title"] = html_entity_decode($item["title"], ENT_QUOTES, 'UTF-8');
|
2019-08-18 13:37:31 +00:00
|
|
|
|
2018-07-08 11:46:05 +00:00
|
|
|
$published = XML::getFirstNodeValue($xpath, 'atom:published/text()', $entry);
|
2015-09-27 12:02:05 +00:00
|
|
|
|
2018-07-10 12:27:56 +00:00
|
|
|
if (empty($published)) {
|
2018-07-08 11:46:05 +00:00
|
|
|
$published = XML::getFirstNodeValue($xpath, 'pubDate/text()', $entry);
|
2017-12-13 07:03:42 +00:00
|
|
|
}
|
2020-01-03 14:09:03 +00:00
|
|
|
|
2018-07-10 12:27:56 +00:00
|
|
|
if (empty($published)) {
|
2018-07-08 11:46:05 +00:00
|
|
|
$published = XML::getFirstNodeValue($xpath, 'dc:date/text()', $entry);
|
2017-12-13 07:03:42 +00:00
|
|
|
}
|
2020-01-03 14:09:03 +00:00
|
|
|
|
2018-07-08 11:46:05 +00:00
|
|
|
$updated = XML::getFirstNodeValue($xpath, 'atom:updated/text()', $entry);
|
2015-09-27 12:02:05 +00:00
|
|
|
|
2018-08-29 19:11:43 +00:00
|
|
|
if (empty($updated) && !empty($published)) {
|
2017-12-13 07:03:42 +00:00
|
|
|
$updated = $published;
|
|
|
|
}
|
2018-08-29 19:11:43 +00:00
|
|
|
|
|
|
|
if (empty($published) && !empty($updated)) {
|
|
|
|
$published = $updated;
|
|
|
|
}
|
|
|
|
|
2017-12-13 07:03:42 +00:00
|
|
|
if ($published != "") {
|
|
|
|
$item["created"] = $published;
|
|
|
|
}
|
2020-01-03 14:09:03 +00:00
|
|
|
|
2017-12-13 07:03:42 +00:00
|
|
|
if ($updated != "") {
|
|
|
|
$item["edited"] = $updated;
|
|
|
|
}
|
2020-01-03 14:09:03 +00:00
|
|
|
|
2018-07-08 11:46:05 +00:00
|
|
|
$creator = XML::getFirstNodeValue($xpath, 'author/text()', $entry);
|
2015-09-27 12:02:05 +00:00
|
|
|
|
2018-07-10 12:27:56 +00:00
|
|
|
if (empty($creator)) {
|
2018-07-08 11:46:05 +00:00
|
|
|
$creator = XML::getFirstNodeValue($xpath, 'atom:author/atom:name/text()', $entry);
|
2017-12-13 07:03:42 +00:00
|
|
|
}
|
2020-01-03 14:09:03 +00:00
|
|
|
|
2018-07-10 12:27:56 +00:00
|
|
|
if (empty($creator)) {
|
2018-07-08 11:46:05 +00:00
|
|
|
$creator = XML::getFirstNodeValue($xpath, 'dc:creator/text()', $entry);
|
2017-12-13 07:03:42 +00:00
|
|
|
}
|
2020-01-03 14:09:03 +00:00
|
|
|
|
2017-12-13 07:03:42 +00:00
|
|
|
if ($creator != "") {
|
|
|
|
$item["author-name"] = $creator;
|
|
|
|
}
|
2020-01-03 14:09:03 +00:00
|
|
|
|
2018-07-08 11:46:05 +00:00
|
|
|
$creator = XML::getFirstNodeValue($xpath, 'dc:creator/text()', $entry);
|
2015-09-27 12:02:05 +00:00
|
|
|
|
2017-12-13 07:03:42 +00:00
|
|
|
if ($creator != "") {
|
|
|
|
$item["author-name"] = $creator;
|
|
|
|
}
|
2017-04-04 17:47:45 +00:00
|
|
|
|
2017-12-13 07:03:42 +00:00
|
|
|
/// @TODO ?
|
|
|
|
// <category>Ausland</category>
|
|
|
|
// <media:thumbnail width="152" height="76" url="http://www.taz.de/picture/667875/192/14388767.jpg"/>
|
|
|
|
|
2018-01-15 13:05:12 +00:00
|
|
|
$attachments = [];
|
2017-12-13 07:03:42 +00:00
|
|
|
|
2018-03-10 17:40:21 +00:00
|
|
|
$enclosures = $xpath->query("enclosure|atom:link[@rel='enclosure']", $entry);
|
2017-12-13 07:03:42 +00:00
|
|
|
foreach ($enclosures AS $enclosure) {
|
|
|
|
$href = "";
|
|
|
|
$length = "";
|
|
|
|
$type = "";
|
|
|
|
|
2018-03-10 23:35:24 +00:00
|
|
|
foreach ($enclosure->attributes AS $attribute) {
|
|
|
|
if (in_array($attribute->name, ["url", "href"])) {
|
|
|
|
$href = $attribute->textContent;
|
|
|
|
} elseif ($attribute->name == "length") {
|
|
|
|
$length = $attribute->textContent;
|
|
|
|
} elseif ($attribute->name == "type") {
|
|
|
|
$type = $attribute->textContent;
|
2017-12-13 07:03:42 +00:00
|
|
|
}
|
|
|
|
}
|
2020-01-03 14:09:03 +00:00
|
|
|
|
2018-07-10 12:27:56 +00:00
|
|
|
if (!empty($item["attach"])) {
|
2017-12-13 07:03:42 +00:00
|
|
|
$item["attach"] .= ',';
|
2018-07-10 12:27:56 +00:00
|
|
|
} else {
|
|
|
|
$item["attach"] = '';
|
2017-03-15 06:00:22 +00:00
|
|
|
}
|
2015-09-27 12:02:05 +00:00
|
|
|
|
2018-01-15 13:05:12 +00:00
|
|
|
$attachments[] = ["link" => $href, "type" => $type, "length" => $length];
|
2015-09-27 12:02:05 +00:00
|
|
|
|
2020-01-03 14:09:03 +00:00
|
|
|
$item["attach"] .= '[attach]href="' . $href . '" length="' . $length . '" type="' . $type . '"[/attach]';
|
2017-12-13 07:03:42 +00:00
|
|
|
}
|
2015-09-27 12:02:05 +00:00
|
|
|
|
2020-04-15 05:10:40 +00:00
|
|
|
$taglist = [];
|
2017-12-13 07:03:42 +00:00
|
|
|
$categories = $xpath->query("category", $entry);
|
|
|
|
foreach ($categories AS $category) {
|
2020-05-02 05:08:05 +00:00
|
|
|
$taglist[] = $category->nodeValue;
|
2017-12-13 07:03:42 +00:00
|
|
|
}
|
2017-12-12 05:35:41 +00:00
|
|
|
|
2018-07-10 12:27:56 +00:00
|
|
|
$body = trim(XML::getFirstNodeValue($xpath, 'atom:content/text()', $entry));
|
2017-10-17 09:10:19 +00:00
|
|
|
|
2018-07-10 12:27:56 +00:00
|
|
|
if (empty($body)) {
|
|
|
|
$body = trim(XML::getFirstNodeValue($xpath, 'content:encoded/text()', $entry));
|
2017-12-13 07:03:42 +00:00
|
|
|
}
|
2019-03-16 10:59:11 +00:00
|
|
|
|
|
|
|
$summary = trim(XML::getFirstNodeValue($xpath, 'atom:summary/text()', $entry));
|
|
|
|
|
|
|
|
if (empty($summary)) {
|
|
|
|
$summary = trim(XML::getFirstNodeValue($xpath, 'description/text()', $entry));
|
2017-12-13 07:03:42 +00:00
|
|
|
}
|
2019-03-16 10:59:11 +00:00
|
|
|
|
2018-07-10 12:27:56 +00:00
|
|
|
if (empty($body)) {
|
2019-03-16 10:59:11 +00:00
|
|
|
$body = $summary;
|
|
|
|
$summary = '';
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($body == $summary) {
|
|
|
|
$summary = '';
|
2017-12-13 07:03:42 +00:00
|
|
|
}
|
2017-10-17 09:10:19 +00:00
|
|
|
|
2017-12-13 07:03:42 +00:00
|
|
|
// remove the content of the title if it is identically to the body
|
|
|
|
// This helps with auto generated titles e.g. from tumblr
|
2018-01-20 23:52:54 +00:00
|
|
|
if (self::titleIsBody($item["title"], $body)) {
|
2017-12-13 07:03:42 +00:00
|
|
|
$item["title"] = "";
|
|
|
|
}
|
2018-03-08 19:58:35 +00:00
|
|
|
$item["body"] = HTML::toBBCode($body, $basepath);
|
2017-10-17 09:10:19 +00:00
|
|
|
|
2017-12-13 07:03:42 +00:00
|
|
|
if (($item["body"] == '') && ($item["title"] != '')) {
|
|
|
|
$item["body"] = $item["title"];
|
|
|
|
$item["title"] = '';
|
|
|
|
}
|
2017-10-17 09:10:19 +00:00
|
|
|
|
2018-02-14 04:58:46 +00:00
|
|
|
$preview = '';
|
2017-12-13 07:03:42 +00:00
|
|
|
if (!empty($contact["fetch_further_information"]) && ($contact["fetch_further_information"] < 3)) {
|
|
|
|
// Handle enclosures and treat them as preview picture
|
|
|
|
foreach ($attachments AS $attachment) {
|
|
|
|
if ($attachment["type"] == "image/jpeg") {
|
|
|
|
$preview = $attachment["link"];
|
|
|
|
}
|
2017-03-15 06:00:22 +00:00
|
|
|
}
|
2015-09-27 12:02:05 +00:00
|
|
|
|
2017-12-13 07:03:42 +00:00
|
|
|
// Remove a possible link to the item itself
|
|
|
|
$item["body"] = str_replace($item["plink"], '', $item["body"]);
|
2019-11-18 12:29:27 +00:00
|
|
|
$item["body"] = trim(preg_replace('/\[url\=\](\w+.*?)\[\/url\]/i', '', $item["body"]));
|
2017-10-17 11:39:09 +00:00
|
|
|
|
2017-12-13 07:03:42 +00:00
|
|
|
// Replace the content when the title is longer than the body
|
|
|
|
$replace = (strlen($item["title"]) > strlen($item["body"]));
|
2017-10-17 09:58:29 +00:00
|
|
|
|
2017-12-13 07:03:42 +00:00
|
|
|
// Replace it, when there is an image in the body
|
|
|
|
if (strstr($item["body"], '[/img]')) {
|
|
|
|
$replace = true;
|
|
|
|
}
|
2017-10-17 09:58:29 +00:00
|
|
|
|
2017-12-13 07:03:42 +00:00
|
|
|
// Replace it, when there is a link in the body
|
|
|
|
if (strstr($item["body"], '[/url]')) {
|
|
|
|
$replace = true;
|
|
|
|
}
|
2017-10-17 09:58:29 +00:00
|
|
|
|
2017-12-13 07:03:42 +00:00
|
|
|
if ($replace) {
|
2019-11-18 12:29:27 +00:00
|
|
|
$item["body"] = trim($item["title"]);
|
2017-12-13 07:03:42 +00:00
|
|
|
}
|
2019-11-18 12:29:27 +00:00
|
|
|
|
2020-01-03 14:09:03 +00:00
|
|
|
$data = ParseUrl::getSiteinfoCached($item['plink'], true);
|
2019-11-18 12:29:27 +00:00
|
|
|
if (!empty($data['text']) && !empty($data['title']) && (mb_strlen($item['body']) < mb_strlen($data['text']))) {
|
|
|
|
// When the fetched page info text is longer than the body, we do try to enhance the body
|
2019-11-18 18:09:21 +00:00
|
|
|
if (!empty($item['body']) && (strpos($data['title'], $item['body']) === false) && (strpos($data['text'], $item['body']) === false)) {
|
2019-11-18 12:29:27 +00:00
|
|
|
// The body is not part of the fetched page info title or page info text. So we add the text to the body
|
|
|
|
$item['body'] .= "\n\n" . $data['text'];
|
|
|
|
} else {
|
|
|
|
// Else we replace the body with the page info text
|
|
|
|
$item['body'] = $data['text'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-13 07:03:42 +00:00
|
|
|
// We always strip the title since it will be added in the page information
|
|
|
|
$item["title"] = "";
|
2020-06-19 11:01:05 +00:00
|
|
|
$item["body"] = $item["body"] . add_page_info($item["plink"], false, $preview, ($contact["fetch_further_information"] == 2), $contact["ffi_keyword_denylist"] ?? '');
|
2020-06-06 20:43:23 +00:00
|
|
|
$taglist = get_page_keywords($item["plink"], $preview, ($contact["fetch_further_information"] == 2), $contact["ffi_keyword_denylist"]);
|
2019-10-24 22:10:20 +00:00
|
|
|
$item["object-type"] = Activity\ObjectType::BOOKMARK;
|
2017-12-13 07:03:42 +00:00
|
|
|
unset($item["attach"]);
|
|
|
|
} else {
|
2019-03-16 10:59:11 +00:00
|
|
|
if (!empty($summary)) {
|
2019-03-16 11:18:36 +00:00
|
|
|
$item["body"] = '[abstract]' . HTML::toBBCode($summary, $basepath) . "[/abstract]\n" . $item["body"];
|
2019-03-16 10:59:11 +00:00
|
|
|
}
|
|
|
|
|
2020-01-05 02:19:02 +00:00
|
|
|
if (!empty($contact["fetch_further_information"]) && ($contact["fetch_further_information"] == 3)) {
|
2020-05-02 05:08:05 +00:00
|
|
|
if (empty($taglist)) {
|
2020-06-06 20:43:23 +00:00
|
|
|
$taglist = get_page_keywords($item["plink"], $preview, true, $contact["ffi_keyword_denylist"]);
|
2017-12-13 07:03:42 +00:00
|
|
|
}
|
2020-05-02 05:43:00 +00:00
|
|
|
$item["body"] .= "\n" . self::tagToString($taglist);
|
2020-04-15 05:10:40 +00:00
|
|
|
} else {
|
|
|
|
$taglist = [];
|
2017-12-13 07:03:42 +00:00
|
|
|
}
|
2020-01-03 14:09:03 +00:00
|
|
|
|
2018-01-12 05:55:14 +00:00
|
|
|
// Add the link to the original feed entry if not present in feed
|
2018-01-29 06:03:39 +00:00
|
|
|
if (($item['plink'] != '') && !strstr($item["body"], $item['plink'])) {
|
2020-01-03 14:09:03 +00:00
|
|
|
$item["body"] .= "[hr][url]" . $item['plink'] . "[/url]";
|
2017-12-12 05:35:41 +00:00
|
|
|
}
|
2017-08-27 06:59:07 +00:00
|
|
|
}
|
2015-09-27 12:02:05 +00:00
|
|
|
|
2020-01-03 14:26:28 +00:00
|
|
|
if ($dryRun) {
|
|
|
|
$items[] = $item;
|
|
|
|
break;
|
|
|
|
} else {
|
2020-06-29 20:22:00 +00:00
|
|
|
Logger::info('Stored feed', ['item' => $item]);
|
2015-09-27 12:02:05 +00:00
|
|
|
|
2018-01-28 11:18:08 +00:00
|
|
|
$notify = Item::isRemoteSelf($contact, $item);
|
2016-11-14 06:55:17 +00:00
|
|
|
|
2017-12-13 07:03:42 +00:00
|
|
|
// Distributed items should have a well formatted URI.
|
|
|
|
// Additionally we have to avoid conflicts with identical URI between imported feeds and these items.
|
|
|
|
if ($notify) {
|
2019-12-30 01:17:16 +00:00
|
|
|
$item['guid'] = Item::guidFromUri($orig_plink, DI::baseUrl()->getHostname());
|
2017-12-13 07:03:42 +00:00
|
|
|
unset($item['uri']);
|
|
|
|
unset($item['parent-uri']);
|
2018-05-15 19:29:14 +00:00
|
|
|
|
|
|
|
// Set the delivery priority for "remote self" to "medium"
|
|
|
|
$notify = PRIORITY_MEDIUM;
|
2017-12-13 07:03:42 +00:00
|
|
|
}
|
2020-04-15 11:39:00 +00:00
|
|
|
|
2020-05-12 21:49:12 +00:00
|
|
|
$id = Item::insert($item, $notify);
|
2015-09-27 12:02:05 +00:00
|
|
|
|
2020-01-03 14:26:28 +00:00
|
|
|
Logger::info("Feed for contact " . $contact["url"] . " stored under id " . $id);
|
2020-04-15 05:10:40 +00:00
|
|
|
|
|
|
|
if (!empty($id) && !empty($taglist)) {
|
|
|
|
$feeditem = Item::selectFirst(['uri-id'], ['id' => $id]);
|
|
|
|
foreach ($taglist as $tag) {
|
2020-04-17 07:55:23 +00:00
|
|
|
Tag::store($feeditem['uri-id'], Tag::HASHTAG, $tag);
|
2020-04-15 05:10:40 +00:00
|
|
|
}
|
|
|
|
}
|
2017-12-13 07:03:42 +00:00
|
|
|
}
|
2017-03-15 06:00:22 +00:00
|
|
|
}
|
2017-12-13 07:03:42 +00:00
|
|
|
|
2020-01-03 14:26:28 +00:00
|
|
|
return ["header" => $author, "items" => $items];
|
2015-09-27 12:02:05 +00:00
|
|
|
}
|
2018-01-20 23:52:54 +00:00
|
|
|
|
2020-05-02 05:43:00 +00:00
|
|
|
/**
|
|
|
|
* Convert a tag array to a tag string
|
|
|
|
*
|
|
|
|
* @param array $tags
|
|
|
|
* @return string tag string
|
|
|
|
*/
|
|
|
|
private static function tagToString(array $tags)
|
|
|
|
{
|
|
|
|
$tagstr = '';
|
|
|
|
|
|
|
|
foreach ($tags as $tag) {
|
|
|
|
if ($tagstr != "") {
|
|
|
|
$tagstr .= ", ";
|
|
|
|
}
|
|
|
|
|
|
|
|
$tagstr .= "#[url=" . DI::baseUrl() . "/search?tag=" . urlencode($tag) . "]" . $tag . "[/url]";
|
|
|
|
}
|
|
|
|
|
|
|
|
return $tagstr;
|
|
|
|
}
|
|
|
|
|
2018-01-20 23:52:54 +00:00
|
|
|
private static function titleIsBody($title, $body)
|
|
|
|
{
|
|
|
|
$title = strip_tags($title);
|
|
|
|
$title = trim($title);
|
|
|
|
$title = html_entity_decode($title, ENT_QUOTES, 'UTF-8');
|
|
|
|
$title = str_replace(["\n", "\r", "\t", " "], ["", "", "", ""], $title);
|
|
|
|
|
|
|
|
$body = strip_tags($body);
|
|
|
|
$body = trim($body);
|
|
|
|
$body = html_entity_decode($body, ENT_QUOTES, 'UTF-8');
|
|
|
|
$body = str_replace(["\n", "\r", "\t", " "], ["", "", "", ""], $body);
|
|
|
|
|
|
|
|
if (strlen($title) < strlen($body)) {
|
|
|
|
$body = substr($body, 0, strlen($title));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (($title != $body) && (substr($title, -3) == "...")) {
|
|
|
|
$pos = strrpos($title, "...");
|
|
|
|
if ($pos > 0) {
|
|
|
|
$title = substr($title, 0, $pos);
|
|
|
|
$body = substr($body, 0, $pos);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ($title == $body);
|
|
|
|
}
|
2015-09-27 12:02:05 +00:00
|
|
|
}
|