2015-04-05 20:50:15 +02:00
< ? php
/*
This file is part of the Diaspora protocol . It is used for fetching single public posts .
*/
require_once ( " include/diaspora.php " );
2016-02-07 15:11:34 +01:00
function p_init ( $a ){
2015-04-05 20:50:15 +02:00
if ( $a -> argc != 2 ) {
header ( $_SERVER [ " SERVER_PROTOCOL " ] . ' 510 ' . t ( 'Not Extended' ));
killme ();
}
$guid = $a -> argv [ 1 ];
if ( strtolower ( substr ( $guid , - 4 )) != " .xml " ) {
header ( $_SERVER [ " SERVER_PROTOCOL " ] . ' 404 ' . t ( 'Not Found' ));
killme ();
}
$guid = strtolower ( substr ( $guid , 0 , - 4 ));
2015-12-27 21:12:53 +01:00
$item = q ( " SELECT `title`, `body`, `guid`, `contact-id`, `private`, `created`, `app` FROM `item` WHERE `uid` = 0 AND `guid` = '%s' AND `network` IN ('%s', '%s') AND `id` = `parent` LIMIT 1 " ,
2015-04-05 20:50:15 +02:00
dbesc ( $guid ), NETWORK_DFRN , NETWORK_DIASPORA );
if ( ! $item ) {
header ( $_SERVER [ " SERVER_PROTOCOL " ] . ' 404 ' . t ( 'Not Found' ));
killme ();
}
$post = array ();
2016-03-14 20:53:44 +01:00
$reshared = diaspora :: is_reshare ( $item [ 0 ][ " body " ]);
2015-04-05 20:50:15 +02:00
if ( $reshared ) {
$nodename = " reshare " ;
$post [ " root_diaspora_id " ] = $reshared [ " root_handle " ];
$post [ " root_guid " ] = $reshared [ " root_guid " ];
$post [ " guid " ] = $item [ 0 ][ " guid " ];
2016-03-14 20:53:44 +01:00
$post [ " diaspora_handle " ] = diaspora :: handle_from_contact ( $item [ 0 ][ " contact-id " ]);
2015-04-05 20:50:15 +02:00
$post [ " public " ] = ( ! $item [ 0 ][ " private " ] ? 'true' : 'false' );
$post [ " created_at " ] = datetime_convert ( 'UTC' , 'UTC' , $item [ 0 ][ " created " ]);
} else {
2015-09-06 08:18:55 +02:00
$body = bb2diaspora ( $item [ 0 ][ " body " ]);
if ( strlen ( $item [ 0 ][ " title " ]))
$body = " ## " . html_entity_decode ( $item [ 0 ][ " title " ]) . " \n \n " . $body ;
2015-04-05 20:50:15 +02:00
$nodename = " status_message " ;
2015-09-06 08:18:55 +02:00
$post [ " raw_message " ] = str_replace ( " & " , " & " , $body );
2015-04-05 20:50:15 +02:00
$post [ " guid " ] = $item [ 0 ][ " guid " ];
2016-03-14 20:53:44 +01:00
$post [ " diaspora_handle " ] = diaspora :: handle_from_contact ( $item [ 0 ][ " contact-id " ]);
2015-04-05 20:50:15 +02:00
$post [ " public " ] = ( ! $item [ 0 ][ " private " ] ? 'true' : 'false' );
$post [ " created_at " ] = datetime_convert ( 'UTC' , 'UTC' , $item [ 0 ][ " created " ]);
$post [ " provider_display_name " ] = $item [ 0 ][ " app " ];
}
$dom = new DOMDocument ( " 1.0 " );
$root = $dom -> createElement ( " XML " );
$dom -> appendChild ( $root );
$postelement = $dom -> createElement ( " post " );
$root -> appendChild ( $postelement );
$statuselement = $dom -> createElement ( $nodename );
$postelement -> appendChild ( $statuselement );
foreach ( $post AS $index => $value ) {
$postnode = $dom -> createElement ( $index , $value );
$statuselement -> appendChild ( $postnode );
}
header ( " Content-Type: application/xml; charset=utf-8 " );
$xml = $dom -> saveXML ();
// Diaspora doesn't send the XML header, so we remove them as well.
// So we avoid possible compatibility problems.
if ( substr ( $xml , 0 , 21 ) == '<?xml version="1.0"?>' )
$xml = trim ( substr ( $xml , 21 ));
echo $xml ;
killme ();
}