server = $server; $url = null; // Is a valid handle? if ($this->isHandle($handle)) { // testing only $scheme = $this->server->config('instance.debug') ? 'http' : 'https'; WebFinger::setServer($this->server); $webfinger = WebFinger::get($handle, $scheme); $url = $webfinger->getProfileId(); // Is an id? } elseif (Util::validateUrl($handle)) { $url = $handle; } if (is_null($url)) { throw new Exception( "Invalid Actor handle: " . print_r($handle, true) ); } $this->createActor($url); } /** * Check that a string is a valid handle * * @param string $handle * @return bool */ private function isHandle(string $handle) { return (bool)preg_match( '/^@?(?P[\w\.\-]+)@(?P[\w\.\-]+)(?P:[\d]+)?$/', $handle ); } /** * Build a profile * * @param string $url A profile id */ private function createActor(string $url) { ActorFactory::setServer($this->server); $this->actor = ActorFactory::create($url); } /** * Get ActivityStream Actor * * @param null|string $property * @return \ActivityPhp\Type\Extended\AbstractActor * | string * | array */ public function get($property = null) { if (is_null($property)) { return $this->actor; } return $this->actor->get($property); } /** * Get Actor's public key PEM * * @return string|null */ public function getPublicKeyPem() { if (!isset($this->actor->publicKey) || !is_array($this->actor->publicKey) || !isset($this->actor->publicKey['publicKeyPem']) ) { $this->server->logger()->info( 'Public key not found', [$this->actor->toArray()] ); return false; } return $this->actor->publicKey['publicKeyPem']; } /** * Get WebFinger bound to a profile * * @return \ActivityPhp\Server\Http\WebFinger */ public function webfinger() { $scheme = $this->server->config('instance.debug') ? 'http' : 'https'; $port = !is_null(parse_url($this->actor->id, PHP_URL_PORT)) ? ':' . parse_url($this->actor->id, PHP_URL_PORT) : ''; $handle = sprintf( '%s@%s%s', $this->actor->preferredUsername, parse_url($this->actor->id, PHP_URL_HOST), $port ); return WebFinger::get($handle, $scheme); } } __halt_compiler();----SIGNATURE:----Un+0sz0wClTb0jUGHqyxhylrj8jp+PtQBCuIQeZ/bobpV98Y2HJ4V4PZR+L7xAPrFbX2K8KCzevlW30noyC+2KktdRt52eUEPHP5HLV2qC2Aos4QVbZWJCJOjt+wM1hSW6sZvnI72LNXrDmRd2bVNUZKOE09Nid9ntiyQZBujyELNJIHyasSZ9OCz+umSZelEUXfea9qLRsq+P0NRfZxrXITlW6dXIlDtHKo0N31Q0Ez57dp+U2tV1WIkWyR3shxovzmU2V5GbbB6Y+4H7b/HQ1PBraI3DMoNlN7tC4nUXUxqWVfuU5hZNmVCNJsDfZ925Z6Up+F6f5K6YMbux7QzZoIXteSbXuuzrhw4emyW9KXne+oadH8q8Y3+LdD6ryEMxsjrWrCcgYR0eDBn7jrWGfM9mnvrNZoKmRDnDDeK1Aca5CZDu9xLxQ2w7yT51CcqkCwR2i5wM8YhJYpF/XpRQJ/cpQohDj7Szhbb8NqiaweWm2qm70vjuTSZxGG7gJC+j1eZ6Ynbh4PmpClDCZZdLujv0CBgSCmak/msyWTfpmognZh3K7XUW8YT94Eenjj1QxumwuuIde+VHxmmGW0hDJtoFFcdFEy6igxCcy1dlPJxeCEO0kVM6eNxI7AAnyb+UvF2Cvti9Tl1nNIZY4wpvZoyoyxQMztzAp2tyqf6rM=----ATTACHMENT:----ODQxOTEwNjQ1ODAwMDg5MSAxMTkxNjYwOTMxOTEzMjYgMTA1NzExNDQwNTI2NjQ4Nw==