| 
									
										
										
										
											2021-10-18 13:22:02 +01:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-26 09:48:16 +00:00
										 |  |  | declare(strict_types = 1); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-18 13:22:02 +01:00
										 |  |  | namespace Component\FreeNetwork\Util; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | use App\Core\Entity; | 
					
						
							|  |  |  | use App\Util\Common; | 
					
						
							|  |  |  | use App\Util\Exception\ServerException; | 
					
						
							|  |  |  | use XML_XRD; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * WebFinger resource parent class | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @package   GNUsocial | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @author    Mikael Nordfeldth | 
					
						
							|  |  |  |  * @copyright 2013 Free Software Foundation, Inc. | 
					
						
							|  |  |  |  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @see      http://status.net/ | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | abstract class WebfingerResource | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     protected $identities = []; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     protected $object; | 
					
						
							|  |  |  |     protected $type; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public function __construct(Entity $object) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->object = $object; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public function getObject() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         if ($this->object === null) { | 
					
						
							|  |  |  |             throw new ServerException('Object is not set'); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return $this->object; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-04 19:52:14 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * List of alternative IDs of a certain Actor | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function getAliases(): array | 
					
						
							| 
									
										
										
										
											2021-10-18 13:22:02 +01:00
										 |  |  |     { | 
					
						
							|  |  |  |         $aliases = $this->object->getAliasesWithIDs(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Some sites have changed from http to https and still want
 | 
					
						
							|  |  |  |         // (because remote sites look for it) verify that they are still
 | 
					
						
							|  |  |  |         // the same identity as they were on HTTP. Should NOT be used if
 | 
					
						
							|  |  |  |         // you've run HTTPS all the time!
 | 
					
						
							|  |  |  |         if (Common::config('fix', 'legacy_http')) { | 
					
						
							|  |  |  |             foreach ($aliases as $alias => $id) { | 
					
						
							| 
									
										
										
										
											2021-12-26 09:48:16 +00:00
										 |  |  |                 if (!mb_strtolower(parse_url($alias, \PHP_URL_SCHEME)) === 'https') { | 
					
						
							| 
									
										
										
										
											2021-10-18 13:22:02 +01:00
										 |  |  |                     continue; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 $aliases[preg_replace('/^https:/i', 'http:', $alias, 1)] = $id; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // return a unique set of aliases by extracting only the keys
 | 
					
						
							|  |  |  |         return array_keys($aliases); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     abstract public function updateXRD(XML_XRD $xrd); | 
					
						
							|  |  |  | } |