From 05f8abcfa6e3fe62d14c151926c687a54074a74b Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Wed, 15 Jul 2015 18:27:44 +0200 Subject: [PATCH] OStatus: Handling of unsupported verbs --- boot.php | 1 + include/ostatus.php | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/boot.php b/boot.php index 0e50e8c0e5..42498a6cc6 100644 --- 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' ); diff --git a/include/ostatus.php b/include/ostatus.php index 181b9e2974..369659f2d5 100644 --- a/include/ostatus.php +++ b/include/ostatus.php @@ -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;