diff options
author | Friendika <info@friendika.com> | 2011-06-20 19:08:40 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-06-20 19:08:40 -0700 |
commit | 55112cfdd0dc63c8ad7f719aea5b46db37fcf081 (patch) | |
tree | bdd28ad235fdc20dc2b711c77d14c2f53f0a3868 /include/items.php | |
parent | db336929cd1211e6704914c77dc332d7555decff (diff) | |
download | volse-hubzilla-55112cfdd0dc63c8ad7f719aea5b46db37fcf081.tar.gz volse-hubzilla-55112cfdd0dc63c8ad7f719aea5b46db37fcf081.tar.bz2 volse-hubzilla-55112cfdd0dc63c8ad7f719aea5b46db37fcf081.zip |
item source
Diffstat (limited to 'include/items.php')
-rw-r--r-- | include/items.php | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/include/items.php b/include/items.php index a003b84bb..5bcdaef99 100644 --- a/include/items.php +++ b/include/items.php @@ -336,6 +336,12 @@ function get_atom_elements($feed,$item) { } } + $apps = $item->get_item_tags(NAMESPACE_STATUSNET,'notice_info'); + if($apps && $apps[0]['attribs']['']['source']) { + $res['app'] = $apps[0]['attribs']['']['source']; + if($res['app'] === 'web') + $res['app'] = 'OStatus'; + } /** * If there's a copy of the body content which is guaranteed to have survived mangling in transit, use it. @@ -685,6 +691,7 @@ function item_store($arr,$force_parent = false) { $arr['body'] = ((x($arr,'body')) ? trim($arr['body']) : ''); $arr['tag'] = ((x($arr,'tag')) ? notags(trim($arr['tag'])) : ''); $arr['attach'] = ((x($arr,'attach')) ? notags(trim($arr['attach'])) : ''); + $arr['app'] = ((x($arr,'app')) ? notags(trim($arr['app'])) : ''); if($arr['parent-uri'] === $arr['uri']) { $parent_id = 0; @@ -1620,7 +1627,8 @@ function atom_entry($item,$type,$author,$owner,$comment = false) { if($item['extid']) $o .= '<dfrn:extid>' . $item['extid'] . '</dfrn:extid>' . "\r\n"; - + if($item['app']) + $o .= '<statusnet:notice_info local_id="' . $item['id'] . '" source="' . $item['app'] . '" ></statusnet:notice_info>'; $verb = construct_verb($item); $o .= '<as:verb>' . xmlify($verb) . '</as:verb>' . "\r\n"; $actobj = construct_activity_object($item); |