]> git.mxchange.org Git - friendica.git/blob - mod/fetch.php
Just some more centralised functionality
[friendica.git] / mod / fetch.php
1 <?php
2 /*
3 This file is part of the Diaspora protocol. It is used for fetching single public posts.
4 */
5 require_once("include/crypto.php");
6 require_once("include/diaspora.php");
7 require_once("include/xml.php");
8
9 function fetch_init($a){
10
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'));
13                 killme();
14         }
15
16         $guid = $a->argv[2];
17
18         // Fetch the item
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);
22         if (!$item) {
23                 header($_SERVER["SERVER_PROTOCOL"].' 404 '.t('Not Found'));
24                 killme();
25         }
26
27         // Fetch some data from the author (We could combine both queries - but I think this is more readable)
28         $r = q("SELECT `user`.`prvkey`, `contact`.`addr`, `user`.`nickname`, `contact`.`nick` FROM `user`
29                 INNER JOIN `contact` ON `contact`.`uid` = `user`.`uid`
30                 WHERE `user`.`uid` = %d", intval($item[0]["uid"]));
31         if (!$r) {
32                 header($_SERVER["SERVER_PROTOCOL"].' 404 '.t('Not Found'));
33                 killme();
34         }
35         $user = $r[0];
36
37         $status = diaspora::build_status($item[0], $user);
38         $xml = diaspora::build_post_xml($status["type"], $status["message"]);
39
40         // Send the envelope
41         header("Content-Type: application/magic-envelope+xml; charset=utf-8");
42         echo diaspora::build_magic_envelope($xml, $user);
43
44         killme();
45 }