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