]> git.mxchange.org Git - friendica.git/commitdiff
OStatus: Handling of unsupported verbs
authorMichael Vogel <icarus@dabo.de>
Wed, 15 Jul 2015 16:27:44 +0000 (18:27 +0200)
committerMichael Vogel <icarus@dabo.de>
Wed, 15 Jul 2015 16:27:44 +0000 (18:27 +0200)
boot.php
include/ostatus.php

index 0e50e8c0e5dd607fda6cac4cf05a11dd0e0933d2..42498a6cc6e9ba679035e1c3d1be166cb12e482a 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -274,6 +274,7 @@ define ( 'ACTIVITY_POST',        NAMESPACE_ACTIVITY_SCHEMA . 'post' );
 define ( 'ACTIVITY_UPDATE',      NAMESPACE_ACTIVITY_SCHEMA . 'update' );
 define ( 'ACTIVITY_TAG',         NAMESPACE_ACTIVITY_SCHEMA . 'tag' );
 define ( 'ACTIVITY_FAVORITE',    NAMESPACE_ACTIVITY_SCHEMA . 'favorite' );
+define ( 'ACTIVITY_SHARE',       NAMESPACE_ACTIVITY_SCHEMA . 'share' );
 
 define ( 'ACTIVITY_POKE',        NAMESPACE_ZOT . '/activity/poke' );
 define ( 'ACTIVITY_MOOD',        NAMESPACE_ZOT . '/activity/mood' );
index 181b9e2974a3dd19703668aa8a061ba245b0bf7b..369659f2d579fd4d3a913a494833fa02a757f9ba 100644 (file)
@@ -275,8 +275,7 @@ function ostatus_import($xml,$importer,&$contact, &$hub) {
                }
 
                // http://activitystrea.ms/schema/1.0/rsvp-yes
-               // http://activitystrea.ms/schema/1.0/share
-               if (!in_array($item["verb"], array(ACTIVITY_POST, ACTIVITY_LIKE)))
+               if (!in_array($item["verb"], array(ACTIVITY_POST, ACTIVITY_LIKE, ACTIVITY_SHARE)))
                        logger("Unhandled verb ".$item["verb"]." ".print_r($item, true));
 
                $item["created"] = $xpath->query('atom:published/text()', $entry)->item(0)->nodeValue;