| 
									
										
										
										
											2021-10-27 04:14:01 +01:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-04 04:07:08 +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 | 
					
						
							|  |  |  |  * @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; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | use App\Core\HTTPClient; | 
					
						
							|  |  |  | use App\Core\Log; | 
					
						
							|  |  |  | use App\Util\Exception\NoSuchActorException; | 
					
						
							|  |  |  | use Exception; | 
					
						
							|  |  |  | 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; | 
					
						
							| 
									
										
										
										
											2021-12-04 04:07:08 +00:00
										 |  |  | use function in_array; | 
					
						
							|  |  |  | use function is_null; | 
					
						
							|  |  |  | use const JSON_UNESCAPED_SLASHES; | 
					
						
							| 
									
										
										
										
											2021-10-27 04:14:01 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * 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 | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-12-05 03:11:08 +00:00
										 |  |  |     private array $discovered_activitypub_actor_profiles = []; | 
					
						
							| 
									
										
										
										
											2021-10-27 04:14:01 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Shortcut function to get a single profile from its URL. | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2021-12-04 04:07:08 +00:00
										 |  |  |      * @param string $url | 
					
						
							| 
									
										
										
										
											2021-10-27 04:14:01 +01:00
										 |  |  |      * @param bool $grab_online whether to try online grabbing, defaults to true | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2021-12-04 04:07:08 +00:00
										 |  |  |      * @return ActivitypubActor | 
					
						
							| 
									
										
										
										
											2021-10-27 04:14:01 +01:00
										 |  |  |      * @throws ClientExceptionInterface | 
					
						
							|  |  |  |      * @throws NoSuchActorException | 
					
						
							|  |  |  |      * @throws RedirectionExceptionInterface | 
					
						
							|  |  |  |      * @throws ServerExceptionInterface | 
					
						
							|  |  |  |      * @throws TransportExceptionInterface | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public static function get_profile_from_url(string $url, bool $grab_online = true): ActivitypubActor | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $discovery = new self(); | 
					
						
							|  |  |  |         // Get valid Actor object
 | 
					
						
							|  |  |  |         $actor_profile = $discovery->lookup($url, $grab_online); | 
					
						
							|  |  |  |         if (!empty($actor_profile)) { | 
					
						
							|  |  |  |             return $actor_profile[0]; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         throw new NoSuchActorException('Invalid Actor.'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Get every profile from the given URL | 
					
						
							|  |  |  |      * This function cleans the $this->discovered_actor_profiles array | 
					
						
							|  |  |  |      * so that there is no erroneous data | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2021-12-04 04:07:08 +00:00
										 |  |  |      * @param string $url User's url | 
					
						
							|  |  |  |      * @param bool $grab_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
										 |  |  |      */ | 
					
						
							|  |  |  |     public function lookup(string $url, bool $grab_online = true) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-12-04 04:07:08 +00:00
										 |  |  |         if (in_array($url, ActivityPub::PUBLIC_TO)) { | 
					
						
							| 
									
										
										
										
											2021-10-27 04:14:01 +01:00
										 |  |  |             return []; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         Log::debug('ActivityPub Explorer: Started now looking for ' . $url); | 
					
						
							| 
									
										
										
										
											2021-12-05 03:11:08 +00:00
										 |  |  |         $this->discovered_activitypub_actor_profiles = []; | 
					
						
							| 
									
										
										
										
											2021-10-27 04:14:01 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return $this->_lookup($url, $grab_online); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Get every profile from the given URL | 
					
						
							|  |  |  |      * This is a recursive function that will accumulate the results on | 
					
						
							|  |  |  |      * $discovered_actor_profiles array | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2021-12-04 04:07:08 +00:00
										 |  |  |      * @param string $url User's url | 
					
						
							|  |  |  |      * @param bool $grab_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-05 03:11:08 +00:00
										 |  |  |      * @return array of ActivityPub Actor objects | 
					
						
							| 
									
										
										
										
											2021-10-27 04:14:01 +01:00
										 |  |  |      */ | 
					
						
							|  |  |  |     private function _lookup(string $url, bool $grab_online = true): array | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $grab_known = $this->grab_known_user($url); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // 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 && (!$grab_online || !$this->grab_remote_user($url))) { | 
					
						
							|  |  |  |             throw new NoSuchActorException('Actor not found.'); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-05 03:11:08 +00:00
										 |  |  |         return $this->discovered_activitypub_actor_profiles; | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     private function grab_known_user(string $uri): bool | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         Log::debug('ActivityPub Explorer: Searching locally for ' . $uri . ' offline.'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Try standard ActivityPub route
 | 
					
						
							|  |  |  |         // Is this a known filthy little mudblood?
 | 
					
						
							|  |  |  |         $aprofile = self::get_aprofile_by_url($uri); | 
					
						
							|  |  |  |         if ($aprofile instanceof ActivitypubActor) { | 
					
						
							|  |  |  |             Log::debug('ActivityPub Explorer: Found a known Aprofile for ' . $uri); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             // We found something!
 | 
					
						
							| 
									
										
										
										
											2021-12-05 03:11:08 +00:00
										 |  |  |             $this->discovered_activitypub_actor_profiles[] = $aprofile; | 
					
						
							| 
									
										
										
										
											2021-10-27 04:14:01 +01:00
										 |  |  |             return true; | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             Log::debug('ActivityPub Explorer: Unable to find a known Aprofile for ' . $uri); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Get a remote user(s) profile(s) from its URL and joins it on | 
					
						
							|  |  |  |      * $this->discovered_actor_profiles | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param string $url User's url | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @throws ClientExceptionInterface | 
					
						
							|  |  |  |      * @throws NoSuchActorException | 
					
						
							|  |  |  |      * @throws RedirectionExceptionInterface | 
					
						
							|  |  |  |      * @throws ServerExceptionInterface | 
					
						
							|  |  |  |      * @throws TransportExceptionInterface | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return bool success state | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     private function grab_remote_user(string $url): bool | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         Log::debug('ActivityPub Explorer: Trying to grab a remote actor for ' . $url); | 
					
						
							|  |  |  |         $response = HTTPClient::get($url, ['headers' => ACTIVITYPUB::HTTP_CLIENT_HEADERS]); | 
					
						
							| 
									
										
										
										
											2021-12-04 04:07:08 +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-04 04:07:08 +00:00
										 |  |  |         if (is_null($res)) { | 
					
						
							|  |  |  |             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!!!
 | 
					
						
							| 
									
										
										
										
											2021-10-27 04:14:01 +01:00
										 |  |  |             Log::debug('ActivityPub Explorer: Found a collection of actors for ' . $url); | 
					
						
							|  |  |  |             $this->travel_collection($res['first']); | 
					
						
							|  |  |  |             return true; | 
					
						
							|  |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2021-12-04 04:07:08 +00:00
										 |  |  |             try { | 
					
						
							| 
									
										
										
										
											2021-12-05 03:11:08 +00:00
										 |  |  |                 $this->discovered_activitypub_actor_profiles[] = Model\Actor::fromJson(json_encode($res)); | 
					
						
							| 
									
										
										
										
											2021-12-04 04:07:08 +00:00
										 |  |  |                 return true; | 
					
						
							|  |  |  |             } catch (Exception $e) { | 
					
						
							|  |  |  |                 Log::debug( | 
					
						
							|  |  |  |                     'ActivityPub Explorer: Invalid potential remote actor while grabbing remotely: ' . $url | 
					
						
							|  |  |  |                     . '. He returned the following: ' . json_encode($res, JSON_UNESCAPED_SLASHES) | 
					
						
							|  |  |  |                     . ' and the following exception: ' . $e->getMessage() | 
					
						
							|  |  |  |                 ); | 
					
						
							|  |  |  |                 return false; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2021-10-27 04:14:01 +01:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Get a ActivityPub Profile from it's uri | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param string $v URL | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return ActivitypubActor|bool false if fails | Aprofile object if successful | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public static function get_aprofile_by_url(string $v): ActivitypubActor|bool | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-12-16 11:14:34 +00:00
										 |  |  |         $aprofile = ActivitypubActor::getByPK(['uri' => $v]); | 
					
						
							|  |  |  |         return is_null($aprofile) ? false : ActivitypubActor::getByPK(['uri' => $v]); | 
					
						
							| 
									
										
										
										
											2021-10-27 04:14:01 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Allows the Explorer to transverse a collection of persons. | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2021-12-04 04:07:08 +00:00
										 |  |  |      * @param string $url | 
					
						
							|  |  |  |      * @return bool | 
					
						
							|  |  |  |      * @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
										 |  |  |      */ | 
					
						
							|  |  |  |     private function travel_collection(string $url): bool | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $response = HTTPClient::get($url, ['headers' => ACTIVITYPUB::HTTP_CLIENT_HEADERS]); | 
					
						
							| 
									
										
										
										
											2021-12-04 04:07:08 +00:00
										 |  |  |         $res = json_decode($response->getContent(), true); | 
					
						
							| 
									
										
										
										
											2021-10-27 04:14:01 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (!isset($res['orderedItems'])) { | 
					
						
							|  |  |  |             return false; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         foreach ($res['orderedItems'] as $profile) { | 
					
						
							|  |  |  |             if ($this->_lookup($profile) == false) { | 
					
						
							|  |  |  |                 Log::debug('ActivityPub Explorer: Found an invalid actor for ' . $profile); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         // Go through entire collection
 | 
					
						
							| 
									
										
										
										
											2021-12-04 04:07:08 +00:00
										 |  |  |         if (!is_null($res['next'])) { | 
					
						
							| 
									
										
										
										
											2021-10-27 04:14:01 +01:00
										 |  |  |             $this->travel_collection($res['next']); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         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) | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param string $url User's url | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @throws ClientExceptionInterface | 
					
						
							|  |  |  |      * @throws RedirectionExceptionInterface | 
					
						
							|  |  |  |      * @throws ServerExceptionInterface | 
					
						
							|  |  |  |      * @throws TransportExceptionInterface | 
					
						
							| 
									
										
										
										
											2021-12-05 03:11:08 +00:00
										 |  |  |      * @throws Exception | 
					
						
							| 
									
										
										
										
											2021-10-27 04:14:01 +01:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2021-12-05 03:11:08 +00:00
										 |  |  |      * @return string|null 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
 | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2021-12-05 03:11:08 +00:00
										 |  |  |     public static function get_remote_user_activity(string $url): string|null | 
					
						
							| 
									
										
										
										
											2021-10-27 04:14:01 +01:00
										 |  |  |     { | 
					
						
							|  |  |  |         $response = HTTPClient::get($url, ['headers' => ACTIVITYPUB::HTTP_CLIENT_HEADERS]); | 
					
						
							|  |  |  |         // 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
										 |  |  |     } | 
					
						
							|  |  |  | } |