3 This file is part of the Diaspora protocol. It is used for fetching single public posts.
7 use Friendica\Core\Protocol;
8 use Friendica\Core\System;
9 use Friendica\Protocol\Diaspora;
10 use Friendica\Model\Item;
11 use Friendica\Model\User;
12 use Friendica\Util\Strings;
13 use Friendica\Database\DBA;
15 function fetch_init(App $a)
18 if (($a->argc != 3) || (!in_array($a->argv[1], ["post", "status_message", "reshare"]))) {
19 System::httpExit(404);
25 $fields = ['uid', 'title', 'body', 'guid', 'contact-id', 'private', 'created', 'app', 'location', 'coord', 'network',
26 'event-id', 'resource-id', 'author-link', 'author-avatar', 'author-name', 'plink', 'owner-link', 'attach'];
27 $condition = ['wall' => true, 'private' => false, 'guid' => $guid, 'network' => [Protocol::DFRN, Protocol::DIASPORA]];
28 $item = Item::selectFirst($fields, $condition);
29 if (!DBA::isResult($item)) {
30 $condition = ['guid' => $guid, 'network' => [Protocol::DFRN, Protocol::DIASPORA]];
31 $item = Item::selectFirst(['author-link'], $condition);
32 if (DBA::isResult($item)) {
33 $parts = parse_url($item["author-link"]);
34 $host = $parts["scheme"]."://".$parts["host"];
36 if (Strings::normaliseLink($host) != Strings::normaliseLink(System::baseUrl())) {
37 $location = $host."/fetch/".$a->argv[1]."/".urlencode($guid);
39 header("HTTP/1.1 301 Moved Permanently");
40 header("Location:".$location);
45 System::httpExit(404);
48 // Fetch some data from the author (We could combine both queries - but I think this is more readable)
49 $user = User::getOwnerDataById($item["uid"]);
51 System::httpExit(404);
54 $status = Diaspora::buildStatus($item, $user);
55 $xml = Diaspora::buildPostXml($status["type"], $status["message"]);
58 header("Content-Type: application/magic-envelope+xml; charset=utf-8");
59 echo Diaspora::buildMagicEnvelope($xml, $user);