| 
									
										
										
										
											2021-09-14 17:15:37 +01:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-04 04:07:08 +00:00
										 |  |  | 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 2021 Free Software Foundation, Inc http://www.fsf.org | 
					
						
							|  |  |  |  * @license   https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2021-10-10 09:26:18 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-04 17:00:58 +01:00
										 |  |  | namespace Plugin\ActivityPub\Util\Response; | 
					
						
							| 
									
										
										
										
											2021-09-14 17:15:37 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-04 04:07:08 +00:00
										 |  |  | use App\Entity\Actor as GSActor; | 
					
						
							| 
									
										
										
										
											2021-11-16 23:24:06 +00:00
										 |  |  | use App\Util\Exception\ClientException; | 
					
						
							| 
									
										
										
										
											2021-12-04 04:07:08 +00:00
										 |  |  | use Plugin\ActivityPub\Util\Model\Actor as ModelActor; | 
					
						
							|  |  |  | use Plugin\ActivityPub\Util\TypeResponse; | 
					
						
							| 
									
										
										
										
											2021-09-14 17:15:37 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-04 04:07:08 +00:00
										 |  |  | /** | 
					
						
							|  |  |  |  * Provides a response in application/ld+json to GSActors | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @copyright 2021 Free Software Foundation, Inc http://www.fsf.org | 
					
						
							|  |  |  |  * @license   https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2021-09-14 17:15:37 +01:00
										 |  |  | abstract class ActorResponse | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /** | 
					
						
							| 
									
										
										
										
											2021-12-04 04:07:08 +00:00
										 |  |  |      * Provides a response in application/ld+json to GSActors | 
					
						
							| 
									
										
										
										
											2021-09-14 17:15:37 +01:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2021-12-04 04:07:08 +00:00
										 |  |  |      * @param GSActor $gsactor | 
					
						
							|  |  |  |      * @param int $status The response status code | 
					
						
							|  |  |  |      * @return TypeResponse | 
					
						
							|  |  |  |      * @throws ClientException | 
					
						
							| 
									
										
										
										
											2021-09-14 17:15:37 +01:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2021-12-04 04:07:08 +00:00
										 |  |  |     public static function handle(GSActor $gsactor, int $status = 200): TypeResponse | 
					
						
							| 
									
										
										
										
											2021-09-14 17:15:37 +01:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2021-11-16 23:24:06 +00:00
										 |  |  |         if ($gsactor->getIsLocal()) { | 
					
						
							| 
									
										
										
										
											2021-12-04 04:07:08 +00:00
										 |  |  |             return new TypeResponse(json: ModelActor::toJson($gsactor), status: $status); | 
					
						
							| 
									
										
										
										
											2021-11-16 23:24:06 +00:00
										 |  |  |         } else { | 
					
						
							|  |  |  |             throw new ClientException('This is a remote actor, you should request it to its source of authority instead.'); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-09-14 17:15:37 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-10-10 09:26:18 +01:00
										 |  |  | } |