. // }}} namespace App\Entity; use App\Core\Cache; use App\Core\DB\DB; use App\Core\Entity; use App\Util\Common; /** * Entity for actor languages * * @category DB * @package GNUsocial * * @author Hugo Sales * @copyright 2021 Free Software Foundation, Inc http://www.fsf.org * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later */ class ActorLanguage extends Entity { // {{{ Autocode // @codeCoverageIgnoreStart private int $actor_id; private int $language_id; private int $ordering; public function setActorId(int $actor_id): self { $this->actor_id = $actor_id; return $this; } public function getActorId(): int { return $this->actor_id; } public function setLanguageId(int $language_id): self { $this->language_id = $language_id; return $this; } public function getLanguageId(): int { return $this->language_id; } public function getOrdering(): int { return $this->ordering; } public function setOrdering(int $ordering): self { $this->ordering = $ordering; return $this; } // @codeCoverageIgnoreEnd // }}} Autocode public static function collectionCacheKey(LocalUser|Actor $actor, ?Actor $context = null) { return 'actor-' . $actor->getId() . '-langs' . (!\is_null($context) ? '-cxt-' . $context->getId() : ''); } public static function normalizeOrdering(LocalUser|Actor $actor) { $langs = DB::dql('select l.locale, al.ordering, l.id from language l join actor_language al with l.id = al.language_id where al.actor_id = :id order by al.ordering ASC', ['id' => $actor->getId()]); usort($langs, fn ($l, $r) => [$l['ordering'], $l['locale']] <=> [$r['ordering'], $r['locale']]); foreach ($langs as $order => $l) { $actor_lang = DB::getReference('actor_language', ['actor_id' => $actor->getId(), 'language_id' => $l['id']]); $actor_lang->setOrdering($order + 1); } } /** * @return self[] */ public static function getActorLanguages(LocalUser|Actor $actor, ?Actor $context): array { $id = $context?->getId() ?? $actor->getId(); return Cache::getList( self::collectionCacheKey($actor, context: $context), fn () => DB::dql( 'select l from actor_language al join language l with al.language_id = l.id where al.actor_id = :id order by al.ordering ASC', ['id' => $id], ), ) ?: [Language::getFromLocale(Common::config('site', 'language'))]; } public static function schemaDef(): array { return [ 'name' => 'actor_language', 'description' => 'join table where one actor can have many languages', 'fields' => [ 'actor_id' => ['type' => 'int', 'not null' => true, 'foreign key' => true, 'target' => 'Actor.id', 'multiplicity' => 'one to many', 'description' => 'the actor this language entry refers to'], 'language_id' => ['type' => 'int', 'not null' => true, 'foreign key' => true, 'target' => 'Language.id', 'multiplicity' => 'many to many', 'description' => 'the language this entry refers to'], 'ordering' => ['type' => 'int', 'not null' => true, 'description' => 'the order in which a user\'s language options should be displayed'], ], 'primary key' => ['actor_id', 'language_id'], 'indexes' => [ 'actor_idx' => ['actor_id'], ], ]; } }