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() { // testing only $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:----OhbzVBxnw7LiuJvEO/SEeOtwlpKxFm/NCKfzbYZaevFbGYfhcloYTtBc41UWgZQzexE+zkh3i2BMFlIyuYgcd1MqC5sr6iL6MuDbjNxagMbqOtMghdCy4I+rGGUBrxCDEWK5HtZw83OW/H44pppGlp8t5O+ZZyi4Ke4i2hwv9n+Ylbnd3oiL0DAfQPtak9Fhpplmqik2K3+Qi/mMwDyjbil6MdrT+vM37EB0FBiRI32wlwo7oHKLF3xOHGFKgovoa0W5xUzKJkr3juBq24Vboelgmgi9g1UyT41iL1huJjSE6LWIHiZjH0u60AUnnCiMkLuyZcqDhSz2Sd8xnol1VQD5z5XAbkAu9Y7B+j1CwGzYexEcRe51Y6kYVAl44GUAgfjuMAVEHPIXyVJFxHaWZcm2wPMNLwqxxN7Uiqe8t8yljsvxDLn/zI/YKgZZLNW+rXoz21SzVlAszXOXfB2IWoa0Ss9D6n49zt7pm8SdWkwTM9PclmmkLFLVej0UUp8U5oHIvdvydcCPD2xcqM2KmlA993T5724jC+zz8nVCgnKtJWjaN1SzxDThbBVnJQHXH1ya/zLAOVaxzIVqlw5UNCdjGeLQqGhdOCfKyHZyIPA9PVaHWfMOTKvfcElpjLcwCunCo4wlGICHSWKfPHXq+DSWE8nHUHHGlHbUQNc7wKw=----ATTACHMENT:----OTU1NDk0MDc1NjAwNDgxNCA0MzEzNjIwOTc2NjAyMjUwIDg5NjQ2Nzg0MDg4MTgzMjg=