2021-10-27 04:14:01 +01:00
|
|
|
<?php
|
|
|
|
|
2021-12-26 09:48:16 +00:00
|
|
|
declare(strict_types = 1);
|
2021-10-27 04:14:01 +01:00
|
|
|
|
2021-12-04 04:07:08 +00:00
|
|
|
// {{{ License
|
2021-10-27 04:14:01 +01:00
|
|
|
// This file is part of GNU social - https://www.gnu.org/software/social
|
|
|
|
//
|
|
|
|
// GNU social 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.
|
|
|
|
//
|
|
|
|
// GNU social 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 GNU social. If not, see <http://www.gnu.org/licenses/>.
|
2021-12-04 04:07:08 +00:00
|
|
|
// }}}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ActivityPub implementation for GNU social
|
|
|
|
*
|
|
|
|
* @package GNUsocial
|
|
|
|
* @category ActivityPub
|
2021-12-26 09:48:16 +00:00
|
|
|
*
|
2021-12-04 04:07:08 +00:00
|
|
|
* @author Diogo Peralta Cordeiro <@diogo.site>
|
|
|
|
* @copyright 2018-2019, 2021 Free Software Foundation, Inc http://www.fsf.org
|
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
|
|
|
*/
|
2021-10-27 04:14:01 +01:00
|
|
|
|
|
|
|
namespace Plugin\ActivityPub\Util;
|
|
|
|
|
2022-02-18 17:48:06 +00:00
|
|
|
use App\Core\DB\DB;
|
2021-10-27 04:14:01 +01:00
|
|
|
use App\Core\HTTPClient;
|
|
|
|
use App\Core\Log;
|
2022-02-25 01:05:28 +00:00
|
|
|
use App\Entity\Actor;
|
|
|
|
use App\Entity\LocalUser;
|
|
|
|
use App\Util\Common;
|
2021-10-27 04:14:01 +01:00
|
|
|
use App\Util\Exception\NoSuchActorException;
|
2022-02-25 01:05:28 +00:00
|
|
|
use App\Util\Nickname;
|
2021-10-27 04:14:01 +01:00
|
|
|
use Exception;
|
2022-02-25 01:05:28 +00:00
|
|
|
use InvalidArgumentException;
|
2021-12-26 09:48:16 +00:00
|
|
|
use const JSON_UNESCAPED_SLASHES;
|
2021-10-27 04:14:01 +01:00
|
|
|
use Plugin\ActivityPub\ActivityPub;
|
|
|
|
use Plugin\ActivityPub\Entity\ActivitypubActor;
|
|
|
|
use Symfony\Contracts\HttpClient\Exception\ClientExceptionInterface;
|
|
|
|
use Symfony\Contracts\HttpClient\Exception\RedirectionExceptionInterface;
|
|
|
|
use Symfony\Contracts\HttpClient\Exception\ServerExceptionInterface;
|
|
|
|
use Symfony\Contracts\HttpClient\Exception\TransportExceptionInterface;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ActivityPub's own Explorer
|
|
|
|
*
|
|
|
|
* Allows to discovery new remote actors
|
|
|
|
*
|
2021-12-04 04:07:08 +00:00
|
|
|
* @copyright 2021 Free Software Foundation, Inc http://www.fsf.org
|
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2021-10-27 04:14:01 +01:00
|
|
|
*/
|
|
|
|
class Explorer
|
|
|
|
{
|
2022-02-25 01:05:28 +00:00
|
|
|
private array $discovered_actors = [];
|
2021-10-27 04:14:01 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Shortcut function to get a single profile from its URL.
|
|
|
|
*
|
2022-02-25 01:05:28 +00:00
|
|
|
* @param bool $try_online whether to try online grabbing, defaults to true
|
2021-10-27 04:14:01 +01:00
|
|
|
*
|
|
|
|
* @throws ClientExceptionInterface
|
|
|
|
* @throws NoSuchActorException
|
|
|
|
* @throws RedirectionExceptionInterface
|
|
|
|
* @throws ServerExceptionInterface
|
|
|
|
* @throws TransportExceptionInterface
|
|
|
|
*/
|
2022-02-25 01:05:28 +00:00
|
|
|
public static function getOneFromUri(string $uri, bool $try_online = true): Actor
|
2021-10-27 04:14:01 +01:00
|
|
|
{
|
2022-02-25 01:05:28 +00:00
|
|
|
$actors = (new self())->lookup($uri, $try_online);
|
|
|
|
switch (\count($actors)) {
|
|
|
|
case 1:
|
|
|
|
return $actors[0];
|
|
|
|
case 0:
|
|
|
|
throw new NoSuchActorException('Invalid Actor.');
|
|
|
|
default:
|
|
|
|
throw new InvalidArgumentException('More than one actor found for this URI.');
|
2021-10-27 04:14:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get every profile from the given URL
|
|
|
|
* This function cleans the $this->discovered_actor_profiles array
|
|
|
|
* so that there is no erroneous data
|
|
|
|
*
|
2022-02-25 01:05:28 +00:00
|
|
|
* @param string $uri User's url
|
|
|
|
* @param bool $try_online whether to try online grabbing, defaults to true
|
2021-10-27 04:14:01 +01:00
|
|
|
*
|
|
|
|
* @throws ClientExceptionInterface
|
|
|
|
* @throws NoSuchActorException
|
|
|
|
* @throws RedirectionExceptionInterface
|
|
|
|
* @throws ServerExceptionInterface
|
|
|
|
* @throws TransportExceptionInterface
|
|
|
|
*
|
2021-12-04 04:07:08 +00:00
|
|
|
* @return array of Actor objects
|
2021-10-27 04:14:01 +01:00
|
|
|
*/
|
2022-02-25 01:05:28 +00:00
|
|
|
public function lookup(string $uri, bool $try_online = true): array
|
2021-10-27 04:14:01 +01:00
|
|
|
{
|
2022-02-25 01:05:28 +00:00
|
|
|
if (\in_array($uri, ActivityPub::PUBLIC_TO)) {
|
2021-10-27 04:14:01 +01:00
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
2022-02-25 01:05:28 +00:00
|
|
|
Log::debug('ActivityPub Explorer: Started now looking for ' . $uri);
|
|
|
|
$this->discovered_actors = [];
|
2021-10-27 04:14:01 +01:00
|
|
|
|
2022-02-25 01:05:28 +00:00
|
|
|
return $this->_lookup($uri, $try_online);
|
2021-10-27 04:14:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get every profile from the given URL
|
|
|
|
* This is a recursive function that will accumulate the results on
|
|
|
|
* $discovered_actor_profiles array
|
|
|
|
*
|
2022-02-25 01:05:28 +00:00
|
|
|
* @param string $uri User's url
|
|
|
|
* @param bool $try_online whether to try online grabbing, defaults to true
|
2021-10-27 04:14:01 +01:00
|
|
|
*
|
|
|
|
* @throws ClientExceptionInterface
|
|
|
|
* @throws NoSuchActorException
|
|
|
|
* @throws RedirectionExceptionInterface
|
|
|
|
* @throws ServerExceptionInterface
|
|
|
|
* @throws TransportExceptionInterface
|
|
|
|
*
|
2022-02-25 01:05:28 +00:00
|
|
|
* @return array of Actor objects
|
2021-10-27 04:14:01 +01:00
|
|
|
*/
|
2022-02-25 01:05:28 +00:00
|
|
|
private function _lookup(string $uri, bool $try_online = true): array
|
2021-10-27 04:14:01 +01:00
|
|
|
{
|
2022-02-25 01:05:28 +00:00
|
|
|
$grab_known = $this->grabKnownActor($uri);
|
2021-10-27 04:14:01 +01:00
|
|
|
|
|
|
|
// First check if we already have it locally and, if so, return it.
|
|
|
|
// If the known fetch fails and remote grab is required: store locally and return.
|
2022-02-25 01:05:28 +00:00
|
|
|
if (!$grab_known && (!$try_online || !$this->grabRemoteActor($uri))) {
|
2021-10-27 04:14:01 +01:00
|
|
|
throw new NoSuchActorException('Actor not found.');
|
|
|
|
}
|
|
|
|
|
2022-02-25 01:05:28 +00:00
|
|
|
return $this->discovered_actors;
|
2021-10-27 04:14:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a known user profile from its URL and joins it on
|
|
|
|
* $this->discovered_actor_profiles
|
|
|
|
*
|
|
|
|
* @param string $uri Actor's uri
|
|
|
|
*
|
|
|
|
* @throws Exception
|
|
|
|
* @throws NoSuchActorException
|
|
|
|
*
|
|
|
|
* @return bool success state
|
|
|
|
*/
|
2022-02-25 01:05:28 +00:00
|
|
|
private function grabKnownActor(string $uri): bool
|
2021-10-27 04:14:01 +01:00
|
|
|
{
|
|
|
|
Log::debug('ActivityPub Explorer: Searching locally for ' . $uri . ' offline.');
|
|
|
|
|
2022-02-25 01:05:28 +00:00
|
|
|
// Try local
|
|
|
|
if (Common::isValidHttpUrl($uri)) {
|
|
|
|
// This means $uri is a valid url
|
|
|
|
$resource_parts = parse_url($uri);
|
|
|
|
// TODO: Use URLMatcher
|
|
|
|
if ($resource_parts['host'] === Common::config('site', 'server')) {
|
|
|
|
$str = $resource_parts['path'];
|
|
|
|
// actor_view_nickname
|
|
|
|
$renick = '/\/@(' . Nickname::DISPLAY_FMT . ')\/?/m';
|
|
|
|
// actor_view_id
|
|
|
|
$reuri = '/\/actor\/(\d+)\/?/m';
|
|
|
|
if (preg_match_all($renick, $str, $matches, \PREG_SET_ORDER, 0) === 1) {
|
|
|
|
$this->discovered_actors[] = DB::findOneBy(
|
|
|
|
LocalUser::class,
|
|
|
|
['nickname' => $matches[0][1]],
|
|
|
|
)->getActor();
|
|
|
|
return true;
|
|
|
|
} elseif (preg_match_all($reuri, $str, $matches, \PREG_SET_ORDER, 0) === 1) {
|
|
|
|
$this->discovered_actors[] = Actor::getById((int) $matches[0][1]);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-27 04:14:01 +01:00
|
|
|
// Try standard ActivityPub route
|
|
|
|
// Is this a known filthy little mudblood?
|
2022-02-18 17:48:06 +00:00
|
|
|
$aprofile = DB::findOneBy(ActivitypubActor::class, ['uri' => $uri], return_null: true);
|
|
|
|
if (!\is_null($aprofile)) {
|
2022-02-25 01:05:28 +00:00
|
|
|
Log::debug('ActivityPub Explorer: Found a known ActivityPub Actor for ' . $uri);
|
|
|
|
$this->discovered_actors[] = $aprofile->getActor();
|
2021-10-27 04:14:01 +01:00
|
|
|
return true;
|
|
|
|
} else {
|
2022-02-25 01:05:28 +00:00
|
|
|
Log::debug('ActivityPub Explorer: Unable to find a known ActivityPub Actor for ' . $uri);
|
2021-10-27 04:14:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a remote user(s) profile(s) from its URL and joins it on
|
|
|
|
* $this->discovered_actor_profiles
|
|
|
|
*
|
2022-02-25 01:05:28 +00:00
|
|
|
* @param string $uri User's url
|
2021-10-27 04:14:01 +01:00
|
|
|
*
|
|
|
|
* @throws ClientExceptionInterface
|
|
|
|
* @throws NoSuchActorException
|
|
|
|
* @throws RedirectionExceptionInterface
|
|
|
|
* @throws ServerExceptionInterface
|
|
|
|
* @throws TransportExceptionInterface
|
|
|
|
*
|
|
|
|
* @return bool success state
|
|
|
|
*/
|
2022-02-25 01:05:28 +00:00
|
|
|
private function grabRemoteActor(string $uri): bool
|
2021-10-27 04:14:01 +01:00
|
|
|
{
|
2022-02-25 01:05:28 +00:00
|
|
|
Log::debug('ActivityPub Explorer: Trying to grab a remote actor for ' . $uri);
|
|
|
|
$response = HTTPClient::get($uri, ['headers' => ACTIVITYPUB::HTTP_CLIENT_HEADERS]);
|
2021-12-26 09:48:16 +00:00
|
|
|
$res = json_decode($response->getContent(), true);
|
2021-10-27 04:14:01 +01:00
|
|
|
if ($response->getStatusCode() == 410) { // If it was deleted
|
|
|
|
return true; // Nothing to add.
|
|
|
|
} elseif (!HTTPClient::statusCodeIsOkay($response)) { // If it is unavailable
|
|
|
|
return false; // Try to add at another time.
|
|
|
|
}
|
2021-12-26 09:48:16 +00:00
|
|
|
if (\is_null($res)) {
|
2021-12-04 04:07:08 +00:00
|
|
|
Log::debug('ActivityPub Explorer: Invalid response returned from given Actor URL: ' . $res);
|
2021-10-27 04:14:01 +01:00
|
|
|
return true; // Nothing to add.
|
|
|
|
}
|
|
|
|
|
2021-12-04 04:07:08 +00:00
|
|
|
if ($res['type'] === 'OrderedCollection') { // It's a potential collection of actors!!!
|
2022-02-25 01:05:28 +00:00
|
|
|
Log::debug('ActivityPub Explorer: Found a collection of actors for ' . $uri);
|
|
|
|
$this->travelCollection($res['first']);
|
2021-10-27 04:14:01 +01:00
|
|
|
return true;
|
|
|
|
} else {
|
2021-12-04 04:07:08 +00:00
|
|
|
try {
|
2022-02-26 14:45:38 +00:00
|
|
|
$this->discovered_actors[] = DB::wrapInTransaction(fn () => Model\Actor::fromJson(json_encode($res)))->getActor();
|
2021-12-04 04:07:08 +00:00
|
|
|
return true;
|
|
|
|
} catch (Exception $e) {
|
|
|
|
Log::debug(
|
2022-02-25 01:05:28 +00:00
|
|
|
'ActivityPub Explorer: Invalid potential remote actor while grabbing remotely: ' . $uri
|
2021-12-04 04:07:08 +00:00
|
|
|
. '. He returned the following: ' . json_encode($res, JSON_UNESCAPED_SLASHES)
|
2021-12-26 09:48:16 +00:00
|
|
|
. ' and the following exception: ' . $e->getMessage(),
|
2021-12-04 04:07:08 +00:00
|
|
|
);
|
|
|
|
return false;
|
|
|
|
}
|
2021-10-27 04:14:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Allows the Explorer to transverse a collection of persons.
|
|
|
|
*
|
2021-12-04 04:07:08 +00:00
|
|
|
* @throws ClientExceptionInterface
|
2021-10-27 04:14:01 +01:00
|
|
|
* @throws NoSuchActorException
|
2021-12-04 04:07:08 +00:00
|
|
|
* @throws RedirectionExceptionInterface
|
|
|
|
* @throws ServerExceptionInterface
|
|
|
|
* @throws TransportExceptionInterface
|
2021-10-27 04:14:01 +01:00
|
|
|
*/
|
2022-02-25 01:05:28 +00:00
|
|
|
private function travelCollection(string $uri): bool
|
2021-10-27 04:14:01 +01:00
|
|
|
{
|
2022-02-25 01:05:28 +00:00
|
|
|
$response = HTTPClient::get($uri, ['headers' => ACTIVITYPUB::HTTP_CLIENT_HEADERS]);
|
2021-12-26 09:48:16 +00:00
|
|
|
$res = json_decode($response->getContent(), true);
|
2021-10-27 04:14:01 +01:00
|
|
|
|
|
|
|
if (!isset($res['orderedItems'])) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-02-25 01:05:28 +00:00
|
|
|
// Accumulate findings
|
|
|
|
foreach ($res['orderedItems'] as $actor_uri) {
|
|
|
|
$this->_lookup($actor_uri);
|
2021-10-27 04:14:01 +01:00
|
|
|
}
|
2022-02-25 01:05:28 +00:00
|
|
|
|
2021-10-27 04:14:01 +01:00
|
|
|
// Go through entire collection
|
2021-12-26 09:48:16 +00:00
|
|
|
if (!\is_null($res['next'])) {
|
2022-02-25 01:05:28 +00:00
|
|
|
$this->travelCollection($res['next']);
|
2021-10-27 04:14:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a remote user array from its URL (this function is only used for
|
|
|
|
* profile updating and shall not be used for anything else)
|
|
|
|
*
|
2022-02-25 01:05:28 +00:00
|
|
|
* @param string $uri User's url
|
2021-10-27 04:14:01 +01:00
|
|
|
*
|
|
|
|
* @throws ClientExceptionInterface
|
2021-12-26 09:48:16 +00:00
|
|
|
* @throws Exception
|
2021-10-27 04:14:01 +01:00
|
|
|
* @throws RedirectionExceptionInterface
|
|
|
|
* @throws ServerExceptionInterface
|
|
|
|
* @throws TransportExceptionInterface
|
|
|
|
*
|
2021-12-26 09:48:16 +00:00
|
|
|
* @return null|string If it is able to fetch, false if it's gone
|
2021-10-27 04:14:01 +01:00
|
|
|
* // Exceptions when network issues or unsupported Activity format
|
|
|
|
*/
|
2022-02-25 01:05:28 +00:00
|
|
|
public static function getRemoteActorActivity(string $uri): string|null
|
2021-10-27 04:14:01 +01:00
|
|
|
{
|
2022-02-25 01:05:28 +00:00
|
|
|
$response = HTTPClient::get($uri, ['headers' => ACTIVITYPUB::HTTP_CLIENT_HEADERS]);
|
2021-10-27 04:14:01 +01:00
|
|
|
// If it was deleted
|
|
|
|
if ($response->getStatusCode() == 410) {
|
2021-12-05 03:11:08 +00:00
|
|
|
return null;
|
2021-10-27 04:14:01 +01:00
|
|
|
} elseif (!HTTPClient::statusCodeIsOkay($response)) { // If it is unavailable
|
|
|
|
throw new Exception('Non Ok Status Code for given Actor URL.');
|
|
|
|
}
|
2021-12-05 03:11:08 +00:00
|
|
|
return $response->getContent();
|
2021-10-27 04:14:01 +01:00
|
|
|
}
|
|
|
|
}
|