diff options
author | zotlabs <mike@macgirvin.com> | 2018-02-06 17:00:56 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-02-06 17:00:56 -0800 |
commit | 4171854e2fdcf30592025cc67815e032ea97fc06 (patch) | |
tree | 6d46b7a77cb8bfe1201459c80d630f8900d5c6dd /include/feedutils.php | |
parent | cb042e32bc6d521050c48a5e4fe6c74f7a33ed4f (diff) | |
download | volse-hubzilla-4171854e2fdcf30592025cc67815e032ea97fc06.tar.gz volse-hubzilla-4171854e2fdcf30592025cc67815e032ea97fc06.tar.bz2 volse-hubzilla-4171854e2fdcf30592025cc67815e032ea97fc06.zip |
slight improvement in ostatus protocol detection from xml feed
Diffstat (limited to 'include/feedutils.php')
-rw-r--r-- | include/feedutils.php | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/include/feedutils.php b/include/feedutils.php index 504f65092..644e205a6 100644 --- a/include/feedutils.php +++ b/include/feedutils.php @@ -487,7 +487,7 @@ function get_atom_elements($feed, $item) { } } - $ostatus_protocol = (($ostatus_conversation) ? true : false); + $ostatus_protocol = (($ostatus_conversation || $res['verb']) ? true : false); $mastodon = (($item->get_item_tags('http://mastodon.social/schema/1.0','scope')) ? true : false); if($mastodon) { @@ -496,6 +496,8 @@ function get_atom_elements($feed, $item) { $res['item_private'] = 1; } + logger('ostatus_protocol: ' . intval($ostatus_protocol)); + $apps = $item->get_item_tags(NAMESPACE_STATUSNET, 'notice_info'); if($apps && $apps[0]['attribs']['']['source']) { $res['app'] = strip_tags(unxmlify($apps[0]['attribs']['']['source'])); @@ -599,9 +601,8 @@ function get_atom_elements($feed, $item) { ); } - // turn Mastodon content warning into a #nsfw hashtag - if($mastodon && $summary) { - $res['body'] = $summary . "\n\n" . $res['body'] . "\n\n#ContentWarning\n"; + if($summary && $res['body']) { + $res['body'] = '[summary]' . $summary . '[/summary]' . $res['body']; } @@ -802,7 +803,7 @@ function get_atom_elements($feed, $item) { */ call_hooks('parse_atom', $arr); - logger('result: ' .print_r($arr['result'], true), LOGGER_DATA); + logger('result: ' . print_r($arr['result'], true), LOGGER_DATA); return $arr['result']; } @@ -1001,9 +1002,9 @@ function process_feed_tombstones($feed,$importer,$contact,$pass) { * @param string $xml * The (atom) feed to consume - RSS isn't as fully supported but may work for simple feeds. * @param array $importer - * The contact_record (joined to user_record) of the local user who owns this + * The channel record of the local user who owns this * relationship. It is this person's stuff that is going to be updated. - * @param[in,out] array $contact + * @param[in,out] array $contact (abook record joined to xchan record) * 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. |