123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371 |
- <?php
- declare(strict_types = 1);
- // {{{ License
- // 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/>.
- // }}}
- /**
- * ActivityPub implementation for GNU social
- *
- * @package GNUsocial
- * @category ActivityPub
- *
- * @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
- */
- namespace Plugin\ActivityPub\Util;
- use App\Core\DB;
- use App\Core\HTTPClient;
- use App\Core\Log;
- use App\Entity\Actor;
- use App\Entity\LocalUser;
- use App\Entity\Note;
- use App\Util\Common;
- use App\Util\Exception\NoSuchActorException;
- use App\Util\Nickname;
- use Exception;
- use InvalidArgumentException;
- use const JSON_UNESCAPED_SLASHES;
- 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;
- use Symfony\Contracts\HttpClient\ResponseInterface;
- /**
- * ActivityPub's own Explorer
- *
- * Allows to discovery new remote actors
- *
- * @copyright 2021 Free Software Foundation, Inc http://www.fsf.org
- * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
- */
- class Explorer
- {
- private array $discovered_actors = [];
- /**
- * Shortcut function to get a single profile from its URL.
- *
- * @param bool $try_online whether to try online grabbing, defaults to true
- * @param Actor $on_behalf_of AP Actor on behalf of whom any remote lookups are to be performed, defaults to null.
- * If null, outgoing GET request(s) will not be http signed.
- *
- * @throws ClientExceptionInterface
- * @throws NoSuchActorException
- * @throws RedirectionExceptionInterface
- * @throws ServerExceptionInterface
- * @throws TransportExceptionInterface
- */
- public static function getOneFromUri(string $uri, bool $try_online = true, ?Actor $on_behalf_of = null): Actor
- {
- $actors = (new self())->lookup($uri, $try_online, $on_behalf_of);
- 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.');
- }
- }
- /**
- * Get every profile from the given URL
- * This function cleans the $this->discovered_actor_profiles array
- * so that there is no erroneous data
- *
- * @param string $uri User's url
- * @param bool $try_online whether to try online grabbing, defaults to true
- * @param Actor $on_behalf_of AP Actor on behalf of whom the lookup is being performed, defaults to null.
- * If null, outgoing GET request(s) will not be http signed.
- *
- * @throws ClientExceptionInterface
- * @throws NoSuchActorException
- * @throws RedirectionExceptionInterface
- * @throws ServerExceptionInterface
- * @throws TransportExceptionInterface
- *
- * @return array of Actor objects
- */
- public function lookup(string $uri, bool $try_online = true, ?Actor $on_behalf_of = null): array
- {
- if (\in_array($uri, ActivityPub::PUBLIC_TO)) {
- return [];
- }
- Log::debug('ActivityPub Explorer: Started now looking for ' . $uri);
- $this->discovered_actors = [];
- return $this->_lookup($uri, $try_online, $on_behalf_of);
- }
- /**
- * Get every profile from the given URL
- * This is a recursive function that will accumulate the results on
- * $discovered_actor_profiles array
- *
- * @param string $uri User's url
- * @param bool $try_online whether to try online grabbing, defaults to true
- * @param Actor $on_behalf_of Actor on behalf of whom the lookup is being performed, defaults to null.
- * If null, outgoing GET request(s) will not be http signed.
- *
- * @throws ClientExceptionInterface
- * @throws NoSuchActorException
- * @throws RedirectionExceptionInterface
- * @throws ServerExceptionInterface
- * @throws TransportExceptionInterface
- *
- * @return array of Actor objects
- */
- private function _lookup(string $uri, bool $try_online = true, ?Actor $on_behalf_of = null): array
- {
- $grab_known = $this->grabKnownActor($uri);
- // 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.
- if (!$grab_known && (!$try_online || !$this->grabRemoteActor($uri, $on_behalf_of))) {
- throw new NoSuchActorException('Actor not found.');
- }
- return $this->discovered_actors;
- }
- /**
- * 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
- */
- private function grabKnownActor(string $uri): bool
- {
- Log::debug('ActivityPub Explorer: Searching locally for ' . $uri . ' offline.');
- if (!Common::isValidHttpUrl($uri)) {
- Log::debug('ActivityPub Explorer: URI ' . $uri . ' was not a valid http url.');
- return false;
- }
- // Check if uri corresponds to local actor
- $resource_parts = parse_url($uri);
- if ($resource_parts['host'] === Common::config('site', 'server')) {
- $actor = $this::getLocalActorForPath($resource_parts['path']);
- if (!\is_null($actor)) {
- Log::debug('ActivityPub Explorer: Found local ActivityPub Actor for ' . $uri);
- $this->discovered_actors[] = $actor;
- return true;
- } else {
- Log::debug('ActivityPub Explorer: Unable to find a known local ActivityPub Actor for ' . $uri);
- }
- }
- // URI isn't for a local actor, try to get by URI more generally
- $aprofile = DB::findOneBy(ActivitypubActor::class, ['uri' => $uri], return_null: true);
- if (!\is_null($aprofile)) {
- Log::debug('ActivityPub Explorer: Found a known ActivityPub Actor for ' . $uri);
- $this->discovered_actors[] = $aprofile->getActor();
- return true;
- } else {
- Log::debug('ActivityPub Explorer: Unable to find a known ActivityPub Actor for ' . $uri);
- }
- return false;
- }
- /**
- * Get a remote user(s) profile(s) from its URL and joins it on
- * $this->discovered_actor_profiles
- *
- * @param string $uri User's url
- * @param Actor $on_behalf_of Actor on behalf of whom http GET requests are to be made, defaults to null.
- * If null, outgoing GET request(s) will not be http signed.
- *
- * @throws ClientExceptionInterface
- * @throws NoSuchActorException
- * @throws RedirectionExceptionInterface
- * @throws ServerExceptionInterface
- * @throws TransportExceptionInterface
- *
- * @return bool success state
- */
- private function grabRemoteActor(string $uri, ?Actor $on_behalf_of = null): bool
- {
- $response = $this->get($uri, $on_behalf_of);
- $res = json_decode($response->getContent(), true);
- 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.
- }
- if (\is_null($res)) {
- Log::debug('ActivityPub Explorer: Invalid response returned from given Actor URL: ' . $res);
- return true; // Nothing to add.
- }
- if ($res['type'] === 'OrderedCollection') { // It's a potential collection of actors!!!
- Log::debug('ActivityPub Explorer: Found a collection of actors for ' . $uri);
- $this->travelCollection($res['first'], $on_behalf_of);
- return true;
- } else {
- try {
- $this->discovered_actors[] = DB::wrapInTransaction(fn () => Model\Actor::fromJson(json_encode($res)))->getActor();
- return true;
- } catch (Exception $e) {
- Log::debug(
- 'ActivityPub Explorer: Invalid potential remote actor while grabbing remotely: ' . $uri
- . '. He returned the following: ' . json_encode($res, JSON_UNESCAPED_SLASHES)
- . ' and the following exception: ' . $e->getMessage(),
- );
- return false;
- }
- }
- return false;
- }
- /**
- * Allows the Explorer to transverse a collection of persons.
- *
- * @param Actor $on_behalf_of Actor on behalf of whom http GET requests are to be made, defaults to null.
- * If null, outgoing GET request(s) will not be http signed.
- * @param string $uri Collection's url
- *
- * @throws ClientExceptionInterface
- * @throws NoSuchActorException
- * @throws RedirectionExceptionInterface
- * @throws ServerExceptionInterface
- * @throws TransportExceptionInterface
- */
- private function travelCollection(string $uri, ?Actor $on_behalf_of = null): bool
- {
- $response = $this->get($uri, $on_behalf_of);
- $res = json_decode($response->getContent(), true);
- if (!isset($res['orderedItems'])) {
- return false;
- }
- // Accumulate findings
- foreach ($res['orderedItems'] as $actor_uri) {
- $this->_lookup($actor_uri, true, $on_behalf_of);
- }
- // Go through entire collection
- if (!\is_null($res['next'])) {
- $this->travelCollection($res['next'], $on_behalf_of);
- }
- return true;
- }
- /**
- * Perform an http GET request to the given uri. Will be http-signed on behalf of given Actor, if provided.
- *
- * @param Actor $on_behalf_of Actor on behalf of whom http GET requests are to be made, defaults to null.
- * If null, outgoing GET request(s) will not be http signed.
- * @param string $uri uri of remote resource, expected to return an Activity/Object of some kind.
- *
- * @return ResponseInterface The http response, for further processing.
- */
- public static function get(string $uri, ?Actor $on_behalf_of = null): ResponseInterface
- {
- $headers = [];
- if (!\is_null($on_behalf_of)) {
- // sign the http GET request
- $headers = HTTPSignature::sign($on_behalf_of, $uri, body: false, addlHeaders: [], method: 'get');
- } else {
- // just do a bare request
- $headers = ACTIVITYPUB::HTTP_CLIENT_HEADERS;
- }
-
- return HTTPClient::get($uri, ['headers' => $headers]);
- }
- /**
- * Get a remote user array from its URL (this function is only used for
- * profile updating and shall not be used for anything else)
- *
- * @param string $uri User's url
- * @param Actor $on_behalf_of Actor on behalf of whom http GET requests are to be made, defaults to null.
- * If null, outgoing GET request(s) will not be http signed.
- *
- * @throws ClientExceptionInterface
- * @throws Exception
- * @throws RedirectionExceptionInterface
- * @throws ServerExceptionInterface
- * @throws TransportExceptionInterface
- *
- * @return null|string If it is able to fetch, false if it's gone
- * // Exceptions when network issues or unsupported Activity format
- */
- public static function getRemoteActorActivity(string $uri, ?Actor $on_behalf_of = null): string|null
- {
- $response = Explorer::get($uri, $on_behalf_of);
- // If it was deleted
- if ($response->getStatusCode() == 410) {
- return null;
- } elseif (!HTTPClient::statusCodeIsOkay($response)) { // If it is unavailable
- throw new Exception('Non Ok Status Code for given Actor URL.');
- }
- return $response->getContent();
- }
- /**
- * Parse the given path and return the actor it corresponds to.
- *
- * @param String $path Path on *this instance*. Will be parsed with regular expressions.
- * Something like `/actor/1` or `/object/note/1`.
- *
- * @return Actor|null The actor corresponding to/owning the given uri, null if not found.
- */
- public static function getLocalActorForPath(string $path): Actor|null
- {
- // TODO: Use URLMatcher
-
- // actor_view_nickname
- $renick = '/\/@(' . Nickname::DISPLAY_FMT . ')\/?/';
- if (preg_match_all($renick, $path, $matches, \PREG_SET_ORDER, 0) === 1) {
- return DB::findOneBy(LocalUser::class, ['nickname' => $matches[0][1]])->getActor();
- }
-
- // actor_view_id
- $reuri = '/\/actor\/(\d+)\/?/';
- if (preg_match_all($reuri, $path, $matches, \PREG_SET_ORDER, 0) === 1) {
- return Actor::getById((int) $matches[0][1]);
- }
- // note / page / article match
- $renote = '/\/object\/(?:note|page|article)\/(\d+)\/?/';
- if (preg_match_all($renote, $path, $matches, \PREG_SET_ORDER, 0) === 1) {
- return Note::getById((int) $matches[0][1])->getActor();
- }
- return null;
- }
- }
|