]> git.mxchange.org Git - friendica.git/blob - mod/fetch.php
Merge pull request #3010 from Quix0r/rewrites/mixed-static-object-reference-calls
[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 /// @TODO You always make it like this: function foo(&$a)
10 /// @TODO This means that the value of $a can be changed in anything, remove & and use App as type-hint
11 function fetch_init(&$a){
12
13         if (($a->argc != 3) OR (!in_array($a->argv[1], array("post", "status_message", "reshare")))) {
14                 header($_SERVER["SERVER_PROTOCOL"].' 404 '.t('Not Found'));
15                 killme();
16         }
17
18         $guid = $a->argv[2];
19
20         // Fetch the item
21         $item = q("SELECT `uid`, `title`, `body`, `guid`, `contact-id`, `private`, `created`, `app`, `location`, `coord`
22                         FROM `item` WHERE `wall` AND NOT `private` AND `guid` = '%s' AND `network` IN ('%s', '%s') AND `id` = `parent` LIMIT 1",
23                 dbesc($guid), NETWORK_DFRN, NETWORK_DIASPORA);
24         if (!$item) {
25                 $r = q("SELECT `author-link`
26                         FROM `item` WHERE `uid` = 0 AND `guid` = '%s' AND `network` IN ('%s', '%s') AND `id` = `parent` LIMIT 1",
27                         dbesc($guid), NETWORK_DFRN, NETWORK_DIASPORA);
28                 if ($r) {
29                         $parts = parse_url($r[0]["author-link"]);
30                         $host = $parts["scheme"]."://".$parts["host"];
31
32                         if (normalise_link($host) != normalise_link(App::get_baseurl())) {
33                                 $location = $host."/fetch/".$a->argv[1]."/".urlencode($guid);
34
35                                 header("HTTP/1.1 301 Moved Permanently");
36                                 header("Location:".$location);
37                                 killme();
38                         }
39                 }
40
41                 header($_SERVER["SERVER_PROTOCOL"].' 404 '.t('Not Found'));
42                 killme();
43         }
44
45         // Fetch some data from the author (We could combine both queries - but I think this is more readable)
46         $r = q("SELECT `user`.`prvkey`, `contact`.`addr`, `user`.`nickname`, `contact`.`nick` FROM `user`
47                 INNER JOIN `contact` ON `contact`.`uid` = `user`.`uid`
48                 WHERE `user`.`uid` = %d", intval($item[0]["uid"]));
49         if (!$r) {
50                 header($_SERVER["SERVER_PROTOCOL"].' 404 '.t('Not Found'));
51                 killme();
52         }
53         $user = $r[0];
54
55         $status = diaspora::build_status($item[0], $user);
56         $xml = diaspora::build_post_xml($status["type"], $status["message"]);
57
58         // Send the envelope
59         header("Content-Type: application/magic-envelope+xml; charset=utf-8");
60         echo diaspora::build_magic_envelope($xml, $user);
61
62         killme();
63 }