3 This file is part of the Diaspora protocol. It is used for fetching single public posts.
5 require_once("include/crypto.php");
6 require_once("include/diaspora.php");
7 require_once("include/xml.php");
9 function fetch_init(App $a) {
11 if (($a->argc != 3) OR (!in_array($a->argv[1], array("post", "status_message", "reshare")))) {
12 header($_SERVER["SERVER_PROTOCOL"].' 404 '.t('Not Found'));
19 $item = q("SELECT `uid`, `title`, `body`, `guid`, `contact-id`, `private`, `created`, `app`, `location`, `coord`
20 FROM `item` WHERE `wall` AND NOT `private` AND `guid` = '%s' AND `network` IN ('%s', '%s') AND `id` = `parent` LIMIT 1",
21 dbesc($guid), NETWORK_DFRN, NETWORK_DIASPORA);
23 $r = q("SELECT `author-link`
24 FROM `item` WHERE `uid` = 0 AND `guid` = '%s' AND `network` IN ('%s', '%s') AND `id` = `parent` LIMIT 1",
25 dbesc($guid), NETWORK_DFRN, NETWORK_DIASPORA);
27 $parts = parse_url($r[0]["author-link"]);
28 $host = $parts["scheme"]."://".$parts["host"];
30 if (normalise_link($host) != normalise_link(App::get_baseurl())) {
31 $location = $host."/fetch/".$a->argv[1]."/".urlencode($guid);
33 header("HTTP/1.1 301 Moved Permanently");
34 header("Location:".$location);
39 header($_SERVER["SERVER_PROTOCOL"].' 404 '.t('Not Found'));
43 // Fetch some data from the author (We could combine both queries - but I think this is more readable)
44 $r = q("SELECT `user`.`prvkey`, `contact`.`addr`, `user`.`nickname`, `contact`.`nick` FROM `user`
45 INNER JOIN `contact` ON `contact`.`uid` = `user`.`uid` AND `contact`.`self`
46 WHERE `user`.`uid` = %d", intval($item[0]["uid"]));
48 header($_SERVER["SERVER_PROTOCOL"].' 404 '.t('Not Found'));
53 $status = Diaspora::build_status($item[0], $user);
54 $xml = Diaspora::build_post_xml($status["type"], $status["message"]);
57 header("Content-Type: application/magic-envelope+xml; charset=utf-8");
58 echo Diaspora::build_magic_envelope($xml, $user);