. // }}} /** * WebFinger implementation for GNU social * * @package GNUsocial * * @author Diogo Peralta Cordeiro actor_uri; } public function setActorUri(string $actor_uri): void { $this->actor_uri = $actor_uri; } public function getSource(): string { return $this->source; } public function setSource(string $source): void { $this->source = $source; } public function getActorId(): int { return $this->actor_id; } public function setActorId(int $actor_id): void { $this->actor_id = $actor_id; } public function isIsLocal(): bool { return $this->is_local; } public function setIsLocal(bool $is_local): void { $this->is_local = $is_local; } public function getCreated(): DateTimeInterface { return $this->created; } public function setCreated(DateTimeInterface $created): void { $this->created = $created; } public function getModified(): DateTimeInterface { return $this->modified; } public function setModified(DateTimeInterface $modified): void { $this->modified = $modified; } // @codeCoverageIgnoreEnd // }}} Autocode public static function getOrCreateById($actor_id, $source): self { $fnactor = self::getWithPK(['actor_id' => $actor_id, 'source' => $source]); if ($fnactor === null) { $actor_uri = null; Event::handle('FreeNetworkGenerateLocalActorUri', [$source, $actor_id, &$actor_uri]); $fnactor = self::create([ 'actor_uri' => $actor_uri, 'source' => $source, 'actor_id' => $actor_id, 'is_local' => true, ]); DB::persist($fnactor); return $fnactor; } else { return $fnactor; } } public static function getOrCreateByUri($actor_uri, $source): self { $fnactor = DB::findBy('freenetwork_actor', ['actor_uri' => $actor_uri, 'source' => $source]); if ($fnactor === []) { // TODO grab with webfinger // If already has for a different protocol and isn't local, update // else create actor and then fnactor $fnactor = self::create([ 'actor_uri' => $actor_uri, 'source' => $source, 'actor_id' => 1, 'is_local' => false, ]); DB::persist($fnactor); return $fnactor; } else { return $fnactor[0]; } } public static function schemaDef() { return [ 'name' => 'freenetwork_actor', 'fields' => [ 'actor_uri' => ['type' => 'text', 'not null' => true], 'source' => ['type' => 'varchar', 'not null' => true, 'foreign key' => true, 'length' => 32, 'target' => 'NoteSource.code', 'multiplicity' => 'many to one', 'description' => 'fkey to source of note, like "web", "im", or "clientname"'], 'actor_id' => ['type' => 'int', 'not null' => true], 'is_local' => ['type' => 'bool', 'not null' => true, 'description' => 'whether this was a locally generated or an imported actor'], 'created' => ['type' => 'datetime', 'not null' => true, 'default' => 'CURRENT_TIMESTAMP', 'description' => 'date this record was created'], 'modified' => ['type' => 'timestamp', 'not null' => true, 'default' => 'CURRENT_TIMESTAMP', 'description' => 'date this record was modified'], ], 'primary key' => ['actor_id', 'source'], 'indexes' => [ 'freenetwork_actor_uri_idx' => ['actor_uri', 'source'], ], 'foreign keys' => [ 'freenetwork_actor_actor_id_fkey' => ['actor', ['actor_id' => 'id']], ], ]; } }