2019-05-03 04:41:12 -04:00
|
|
|
<?php
|
2020-02-09 09:45:36 -05:00
|
|
|
/**
|
2022-01-02 02:27:47 -05:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2020-02-09 09:45:36 -05:00
|
|
|
*
|
|
|
|
* @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;
|
2021-01-15 23:16:09 -05:00
|
|
|
use Friendica\Model\Post;
|
2019-05-03 04:41:12 -04:00
|
|
|
use Friendica\Model\User;
|
2022-04-10 04:31:55 -04:00
|
|
|
use Friendica\Module\Response;
|
2019-05-03 04:41:12 -04:00
|
|
|
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
|
|
|
|
{
|
2021-11-20 09:38:03 -05:00
|
|
|
protected function rawContent(array $request = [])
|
2019-05-03 04:41:12 -04:00
|
|
|
{
|
2021-11-14 17:19:25 -05:00
|
|
|
if (empty($this->parameters['guid'])) {
|
2019-05-03 04:41:12 -04:00
|
|
|
throw new HTTPException\NotFoundException();
|
|
|
|
}
|
|
|
|
|
2021-11-14 17:19:25 -05:00
|
|
|
$guid = $this->parameters['guid'];
|
2019-05-03 04:41:12 -04:00
|
|
|
|
|
|
|
// Fetch the item
|
2021-09-02 01:57:50 -04:00
|
|
|
$condition = ['origin' => true, 'private' => [Item::PUBLIC, Item::UNLISTED], 'guid' => $guid,
|
|
|
|
'gravity' => [GRAVITY_PARENT, GRAVITY_COMMENT], 'network' => [Protocol::DFRN, Protocol::DIASPORA]];
|
2021-09-03 00:09:02 -04:00
|
|
|
$item = Post::selectFirst([], $condition);
|
2019-05-03 04:41:12 -04:00
|
|
|
if (empty($item)) {
|
|
|
|
$condition = ['guid' => $guid, 'network' => [Protocol::DFRN, Protocol::DIASPORA]];
|
2021-01-15 23:16:09 -05:00
|
|
|
$item = Post::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())) {
|
2021-07-25 11:23:37 -04:00
|
|
|
$location = $host . "/fetch/" . DI::args()->getArgv()[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();
|
|
|
|
}
|
|
|
|
|
2021-09-02 01:57:50 -04:00
|
|
|
if ($item['gravity'] == GRAVITY_PARENT) {
|
|
|
|
$status = Diaspora::buildStatus($item, $user);
|
|
|
|
} else {
|
2021-09-03 00:20:32 -04:00
|
|
|
$status = ['type' => 'comment', 'message' => Diaspora::createCommentSignature($item)];
|
2021-09-02 01:57:50 -04:00
|
|
|
}
|
|
|
|
|
2019-05-03 04:41:12 -04:00
|
|
|
$xml = Diaspora::buildPostXml($status["type"], $status["message"]);
|
|
|
|
|
|
|
|
// Send the envelope
|
2022-04-10 04:31:55 -04:00
|
|
|
System::httpExit(Diaspora::buildMagicEnvelope($xml, $user), Response::TYPE_XML, 'application/magic-envelope+xml');
|
2019-05-03 04:41:12 -04:00
|
|
|
}
|
|
|
|
}
|