2019-05-03 04:41:12 -04:00
|
|
|
<?php
|
2020-02-09 09:45:36 -05:00
|
|
|
/**
|
|
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2019-05-03 04:41:12 -04:00
|
|
|
|
|
|
|
namespace Friendica\Module\Diaspora;
|
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
|
|
|
use Friendica\Core\Protocol;
|
2019-05-04 03:16:37 -04:00
|
|
|
use Friendica\Core\System;
|
2019-12-15 16:34:11 -05:00
|
|
|
use Friendica\DI;
|
2019-05-03 04:41:12 -04:00
|
|
|
use Friendica\Model\Item;
|
|
|
|
use Friendica\Model\User;
|
|
|
|
use Friendica\Network\HTTPException;
|
|
|
|
use Friendica\Protocol\Diaspora;
|
|
|
|
use Friendica\Util\Strings;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This module is part of the Diaspora protocol.
|
|
|
|
* It is used for fetching single public posts.
|
|
|
|
*/
|
|
|
|
class Fetch extends BaseModule
|
|
|
|
{
|
2019-11-05 16:48:54 -05:00
|
|
|
public static function rawContent(array $parameters = [])
|
2019-05-03 04:41:12 -04:00
|
|
|
{
|
2019-12-15 16:34:11 -05:00
|
|
|
$app = DI::app();
|
2019-05-03 04:41:12 -04:00
|
|
|
|
|
|
|
// @TODO: Replace with parameter from router
|
|
|
|
if (($app->argc != 3) || (!in_array($app->argv[1], ["post", "status_message", "reshare"]))) {
|
|
|
|
throw new HTTPException\NotFoundException();
|
|
|
|
}
|
|
|
|
|
|
|
|
// @TODO: Replace with parameter from router
|
|
|
|
$guid = $app->argv[2];
|
|
|
|
|
|
|
|
// Fetch the item
|
|
|
|
$fields = [
|
2019-11-22 15:24:02 -05:00
|
|
|
'uid', 'title', 'body', 'guid', 'contact-id', 'private', 'created', 'received', 'app', 'location', 'coord', 'network',
|
2020-11-05 23:14:29 -05:00
|
|
|
'event-id', 'resource-id', 'author-link', 'author-avatar', 'author-name', 'plink', 'owner-link', 'attach', 'uri-id'
|
2019-05-03 04:41:12 -04:00
|
|
|
];
|
2020-03-02 02:57:23 -05:00
|
|
|
$condition = ['wall' => true, 'private' => [Item::PUBLIC, Item::UNLISTED], 'guid' => $guid, 'network' => [Protocol::DFRN, Protocol::DIASPORA]];
|
2019-05-03 04:41:12 -04:00
|
|
|
$item = Item::selectFirst($fields, $condition);
|
|
|
|
if (empty($item)) {
|
|
|
|
$condition = ['guid' => $guid, 'network' => [Protocol::DFRN, Protocol::DIASPORA]];
|
|
|
|
$item = Item::selectFirst(['author-link'], $condition);
|
2020-07-11 09:18:42 -04:00
|
|
|
if (!empty($item["author-link"])) {
|
2019-05-03 04:41:12 -04:00
|
|
|
$parts = parse_url($item["author-link"]);
|
2019-06-21 13:57:26 -04:00
|
|
|
if (empty($parts["scheme"]) || empty($parts["host"])) {
|
|
|
|
throw new HTTPException\InternalServerErrorException();
|
|
|
|
}
|
2019-05-03 04:41:12 -04:00
|
|
|
$host = $parts["scheme"] . "://" . $parts["host"];
|
|
|
|
|
2019-12-15 19:05:15 -05:00
|
|
|
if (Strings::normaliseLink($host) != Strings::normaliseLink(DI::baseUrl()->get())) {
|
2019-05-03 04:41:12 -04:00
|
|
|
$location = $host . "/fetch/" . $app->argv[1] . "/" . urlencode($guid);
|
2019-05-04 03:16:37 -04:00
|
|
|
System::externalRedirect($location, 301);
|
2019-05-03 04:41:12 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
throw new HTTPException\NotFoundException();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fetch some data from the author (We could combine both queries - but I think this is more readable)
|
|
|
|
$user = User::getOwnerDataById($item["uid"]);
|
|
|
|
if (!$user) {
|
|
|
|
throw new HTTPException\NotFoundException();
|
|
|
|
}
|
|
|
|
|
|
|
|
$status = Diaspora::buildStatus($item, $user);
|
|
|
|
$xml = Diaspora::buildPostXml($status["type"], $status["message"]);
|
|
|
|
|
|
|
|
// Send the envelope
|
|
|
|
header("Content-Type: application/magic-envelope+xml; charset=utf-8");
|
|
|
|
echo Diaspora::buildMagicEnvelope($xml, $user);
|
|
|
|
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
}
|