diff options
author | marijus <mario@mariovavti.com> | 2014-09-27 15:42:28 +0200 |
---|---|---|
committer | marijus <mario@mariovavti.com> | 2014-09-27 15:42:28 +0200 |
commit | c20c9e99b625031a7b4497f11650e0660f60d68c (patch) | |
tree | 568a23cfca4ba05ebb08258f4074316559b8e5c4 /mod/p.php | |
parent | 38605eefdd10591f22ec6e1145924755bd22fefa (diff) | |
parent | 2b02f611addbb3f9f531791671ea790b59839e29 (diff) | |
download | volse-hubzilla-c20c9e99b625031a7b4497f11650e0660f60d68c.tar.gz volse-hubzilla-c20c9e99b625031a7b4497f11650e0660f60d68c.tar.bz2 volse-hubzilla-c20c9e99b625031a7b4497f11650e0660f60d68c.zip |
Merge branch 'master' of https://github.com/friendica/red
Diffstat (limited to 'mod/p.php')
-rw-r--r-- | mod/p.php | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/mod/p.php b/mod/p.php new file mode 100644 index 000000000..227f9e24a --- /dev/null +++ b/mod/p.php @@ -0,0 +1,52 @@ +<?php /** @file */ + +require_once('include/bb2diaspora.php'); + +// used in Diaspora communications to provide a server copy of a sent post in XML format. + +function p_init(&$a) { + + if(argc() < 2) + http_status_exit(401); + + $mid = str_replace('.xml','',argv(1)); + + $r = q("select * from item where mid = '%s' and (item_flags & %d) and item_private = 0 limit 1", + dbesc($mid), + intval(ITEM_WALL) + ); + + + if((! $r) || (! perm_is_allowed($r[0]['uid'],'','view_stream'))) + http_status_exit(404); + + + $c = q("select * from channel where channel_id = %d limit 1", + intval($r[0]['uid']) + ); + + if(! $c) + http_status_exit(404); + + $myaddr = $c[0]['channel_address'] . '@' . $a->get_hostname(); + + $item = $r[0]; + + $title = $item['title']; + $body = bb2diaspora_itembody($item); + $created = datetime_convert('UTC','UTC',$item['created'],'Y-m-d H:i:s \U\T\C'); + + $tpl = get_markup_template('diaspora_post.tpl'); + $msg = replace_macros($tpl, array( + '$body' => xmlify($body), + '$guid' => $item['mid'], + '$handle' => xmlify($myaddr), + '$public' => 'true', + '$created' => $created, + '$provider' => (($item['app']) ? $item['app'] : 'redmatrix') + )); + + header('Content-type: text/xml'); + echo $msg; + killme(); +}
\ No newline at end of file |