| 
									
										
										
										
											2021-08-24 20:29:26 +01:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace Plugin\ActivityPub; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | use App\Core\Event; | 
					
						
							|  |  |  | use App\Core\Modules\Plugin; | 
					
						
							|  |  |  | use App\Core\Router\RouteLoader; | 
					
						
							|  |  |  | use Exception; | 
					
						
							|  |  |  | use Plugin\ActivityPub\Controller\Inbox; | 
					
						
							| 
									
										
										
										
											2021-09-14 17:15:37 +01:00
										 |  |  | use Plugin\ActivityStreamsTwo\ActivityStreamsTwo; | 
					
						
							| 
									
										
										
										
											2021-08-24 20:29:26 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | class ActivityPub extends Plugin | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     public function version(): string | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return '3.0.0'; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * This code executes when GNU social creates the page routing, and we hook | 
					
						
							|  |  |  |      * on this event to add our action handler for Embed. | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2021-09-06 23:47:28 +01:00
										 |  |  |      * @param RouteLoader $r the router that was initialized. | 
					
						
							| 
									
										
										
										
											2021-08-24 20:29:26 +01:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @return bool | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function onAddRoute(RouteLoader $r): bool | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $r->connect( | 
					
						
							|  |  |  |             'activitypub_inbox', | 
					
						
							|  |  |  |             '{gsactor_id<\d+>}/inbox', | 
					
						
							|  |  |  |             [Inbox::class, 'handle'], | 
					
						
							| 
									
										
										
										
											2021-09-14 17:15:37 +01:00
										 |  |  |             options: ['accept' => ActivityStreamsTwo::$accept_headers] | 
					
						
							| 
									
										
										
										
											2021-08-24 20:29:26 +01:00
										 |  |  |         ); | 
					
						
							|  |  |  |         return Event::next; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Validate HTTP Accept headers | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param null|array|string $accept | 
					
						
							|  |  |  |      * @param bool              $strict Strict mode | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @throws \Exception when strict mode enabled | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return bool | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public static function validateAcceptHeader(array|string|null $accept, bool $strict): bool | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if (is_string($accept) | 
					
						
							|  |  |  |             && in_array($accept, self::$accept_headers) | 
					
						
							|  |  |  |         ) { | 
					
						
							|  |  |  |             return true; | 
					
						
							|  |  |  |         } elseif (is_array($accept) | 
					
						
							|  |  |  |             && count( | 
					
						
							|  |  |  |                 array_intersect($accept, self::$accept_headers) | 
					
						
							| 
									
										
										
										
											2021-09-14 17:15:37 +01:00
										 |  |  |             ) > 0 | 
					
						
							| 
									
										
										
										
											2021-08-24 20:29:26 +01:00
										 |  |  |         ) { | 
					
						
							|  |  |  |             return true; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!$strict) { | 
					
						
							|  |  |  |             return false; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         throw new Exception( | 
					
						
							|  |  |  |             sprintf( | 
					
						
							|  |  |  |                 "HTTP Accept header error. Given: '%s'", | 
					
						
							|  |  |  |                 $accept | 
					
						
							|  |  |  |             ) | 
					
						
							|  |  |  |         ); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-09-06 23:47:28 +01:00
										 |  |  | } |