| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328 |
- <?php
- declare(strict_types=1);
- class I18nData {
- public const REFERENCE_LANGUAGE = 'en';
- /** @param array<string,array<string,array<string,I18nValue>>> $data */
- public function __construct(private array $data) {
- $this->addMissingKeysFromReference();
- $this->removeExtraKeysFromOtherLanguages();
- $this->processValueStates();
- }
- /**
- * @return array<string,array<string,array<string,I18nValue>>>
- */
- public function getData(): array {
- return $this->data;
- }
- private function addMissingKeysFromReference(): void {
- $reference = $this->getReferenceLanguage();
- $languages = $this->getNonReferenceLanguages();
- foreach ($reference as $file => $refValues) {
- foreach ($refValues as $key => $refValue) {
- foreach ($languages as $language) {
- if (!array_key_exists($file, $this->data[$language]) || !array_key_exists($key, $this->data[$language][$file])) {
- $this->data[$language][$file][$key] = clone $refValue;
- }
- $value = $this->data[$language][$file][$key];
- if ($refValue->equal($value) && !$value->isIgnore()) {
- $value->markAsTodo();
- }
- }
- }
- }
- }
- private function removeExtraKeysFromOtherLanguages(): void {
- $reference = $this->getReferenceLanguage();
- foreach ($this->getNonReferenceLanguages() as $language) {
- foreach ($this->getLanguage($language) as $file => $values) {
- foreach ($values as $key => $value) {
- if (!array_key_exists($key, $reference[$file])) {
- unset($this->data[$language][$file][$key]);
- }
- }
- }
- }
- }
- private function processValueStates(): void {
- $reference = $this->getReferenceLanguage();
- $languages = $this->getNonReferenceLanguages();
- foreach ($reference as $file => $refValues) {
- foreach ($refValues as $key => $refValue) {
- foreach ($languages as $language) {
- $value = $this->data[$language][$file][$key];
- if ($refValue->equal($value) && !$value->isIgnore()) {
- $value->markAsTodo();
- continue;
- }
- if (!$refValue->equal($value) && $value->isTodo()) {
- $value->markAsDirty();
- continue;
- }
- }
- }
- }
- }
- /**
- * Return the available languages
- * @return array<string>
- */
- public function getAvailableLanguages(): array {
- $languages = array_keys($this->data);
- sort($languages);
- return $languages;
- }
- /**
- * Return all available languages without the reference language
- * @return array<string>
- */
- private function getNonReferenceLanguages(): array {
- return array_filter(array_keys($this->data),
- static fn(string $value) => static::REFERENCE_LANGUAGE !== $value);
- }
- /**
- * Add a new language. It’s a copy of the reference language.
- * @throws Exception
- */
- public function addLanguage(string $language, ?string $reference = null): void {
- if (array_key_exists($language, $this->data)) {
- throw new Exception('The selected language already exist.');
- }
- if (!is_string($reference) || !array_key_exists($reference, $this->data)) {
- $reference = static::REFERENCE_LANGUAGE;
- }
- $this->data[$language] = $this->data[$reference];
- }
- /**
- * Check if the key is known.
- */
- public function isKnown(string $key): bool {
- return array_key_exists($this->getFilenamePrefix($key), $this->data[static::REFERENCE_LANGUAGE]) &&
- array_key_exists($key, $this->data[static::REFERENCE_LANGUAGE][$this->getFilenamePrefix($key)]);
- }
- /**
- * Return the parent key for a specified key.
- * To get the parent key, you need to remove the last section of the key. Each
- * is separated into sections. The parent of a section is the concatenation of
- * all sections before the selected key. For instance, if the key is 'a.b.c.d.e',
- * the parent key is 'a.b.c.d'.
- */
- private function getParentKey(string $key): string {
- return substr($key, 0, strrpos($key, '.') ?: null);
- }
- /**
- * Return the siblings for a specified key.
- * To get the siblings, we need to find all matches with the parent.
- *
- * @return array<string>
- */
- private function getSiblings(string $key): array {
- if (!array_key_exists($this->getFilenamePrefix($key), $this->data[static::REFERENCE_LANGUAGE])) {
- return [];
- }
- $keys = array_keys($this->data[static::REFERENCE_LANGUAGE][$this->getFilenamePrefix($key)]);
- $parent = $this->getParentKey($key);
- return array_values(array_filter($keys, static fn(string $element) => str_contains($element, $parent)));
- }
- /**
- * Check if the key is an only child.
- * To be an only child, there must be only one sibling and that sibling must
- * be the empty sibling. The empty sibling is the parent.
- */
- private function isOnlyChild(string $key): bool {
- $siblings = $this->getSiblings($key);
- if (1 !== count($siblings)) {
- return false;
- }
- return '_' === $siblings[0][-1];
- }
- /**
- * Return the parent key as an empty sibling.
- * When a key has children, it cannot have its value directly. The value
- * needs to be attached to an empty sibling represented by "_".
- */
- private function getEmptySibling(string $key): string {
- return "{$key}._";
- }
- /**
- * Check if a key is a parent key.
- * To be a parent key, there must be at least one key starting with the key
- * under test. Of course, it cannot be itself.
- */
- private function isParent(string $key): bool {
- if (!array_key_exists($this->getFilenamePrefix($key), $this->data[static::REFERENCE_LANGUAGE])) {
- return false;
- }
- $keys = array_keys($this->data[static::REFERENCE_LANGUAGE][$this->getFilenamePrefix($key)]);
- $children = array_values(array_filter($keys, static function (string $element) use ($key) {
- if ($element === $key) {
- return false;
- }
- return str_contains($element, $key);
- }));
- return count($children) !== 0;
- }
- /**
- * Add a new key to all languages.
- * @throws Exception
- */
- public function addKey(string $key, string $value): void {
- if ($this->isParent($key)) {
- $key = $this->getEmptySibling($key);
- }
- if ($this->isKnown($key)) {
- throw new Exception('The selected key already exist.');
- }
- $parentKey = $this->getParentKey($key);
- if ($this->isKnown($parentKey)) {
- // The parent key exists, that means that we need to convert it to an array.
- // To create an array, we need to change the key by appending an empty section.
- foreach ($this->getAvailableLanguages() as $language) {
- $parentValue = $this->data[$language][$this->getFilenamePrefix($parentKey)][$parentKey];
- $this->data[$language][$this->getFilenamePrefix($this->getEmptySibling($parentKey))][$this->getEmptySibling($parentKey)] =
- new I18nValue($parentValue);
- }
- }
- $value = new I18nValue($value);
- $value->markAsTodo();
- foreach ($this->getAvailableLanguages() as $language) {
- if (!array_key_exists($key, $this->data[$language][$this->getFilenamePrefix($key)])) {
- $this->data[$language][$this->getFilenamePrefix($key)][$key] = $value;
- }
- }
- if ($this->isKnown($parentKey)) {
- $this->removeKey($parentKey);
- }
- }
- /**
- * Add a value for a key for the selected language.
- *
- * @throws Exception
- */
- public function addValue(string $key, string $value, string $language): void {
- if (!in_array($language, $this->getAvailableLanguages(), true)) {
- throw new Exception('The selected language does not exist.');
- }
- if (!array_key_exists($this->getFilenamePrefix($key), $this->data[static::REFERENCE_LANGUAGE]) ||
- !array_key_exists($key, $this->data[static::REFERENCE_LANGUAGE][$this->getFilenamePrefix($key)])) {
- throw new Exception('The selected key does not exist for the selected language.');
- }
- $value = new I18nValue($value);
- if (static::REFERENCE_LANGUAGE === $language) {
- $previousValue = $this->data[static::REFERENCE_LANGUAGE][$this->getFilenamePrefix($key)][$key];
- foreach ($this->getAvailableLanguages() as $lang) {
- $currentValue = $this->data[$lang][$this->getFilenamePrefix($key)][$key];
- if ($currentValue->equal($previousValue)) {
- $this->data[$lang][$this->getFilenamePrefix($key)][$key] = $value;
- }
- }
- } else {
- $this->data[$language][$this->getFilenamePrefix($key)][$key] = $value;
- }
- }
- /**
- * Remove a key in all languages
- */
- public function removeKey(string $key): void {
- if (!$this->isKnown($key) && !$this->isKnown($this->getEmptySibling($key))) {
- throw new Exception('The selected key does not exist.');
- }
- if (!$this->isKnown($key)) {
- // The key has children, it needs to be appended with an empty section.
- $key = $this->getEmptySibling($key);
- }
- foreach ($this->getAvailableLanguages() as $language) {
- if (array_key_exists($key, $this->data[$language][$this->getFilenamePrefix($key)])) {
- unset($this->data[$language][$this->getFilenamePrefix($key)][$key]);
- }
- }
- if ($this->isOnlyChild($key)) {
- $parentKey = $this->getParentKey($key);
- foreach ($this->getAvailableLanguages() as $language) {
- $parentValue = $this->data[$language][$this->getFilenamePrefix($this->getEmptySibling($parentKey))][$this->getEmptySibling($parentKey)];
- $this->data[$language][$this->getFilenamePrefix($parentKey)][$parentKey] = $parentValue;
- }
- $this->removeKey($this->getEmptySibling($parentKey));
- }
- }
- /**
- * Ignore a key from a language, or revert an existing ignore on a key.
- */
- public function ignore(string $key, string $language, bool $revert = false): void {
- $value = $this->data[$language][$this->getFilenamePrefix($key)][$key];
- if ($revert) {
- $value->unmarkAsIgnore();
- } else {
- $value->markAsIgnore();
- }
- }
- /**
- * Ignore all unmodified keys from a language, or revert all existing ignores on unmodified keys.
- */
- public function ignore_unmodified(string $language, bool $revert = false): void {
- $my_language = $this->getLanguage($language);
- foreach ($this->getReferenceLanguage() as $file => $ref_language) {
- foreach ($ref_language as $key => $ref_value) {
- if (array_key_exists($key, $my_language[$file])) {
- if ($ref_value->equal($my_language[$file][$key])) {
- $this->ignore($key, $language, $revert);
- }
- }
- }
- }
- }
- /**
- * @return array<string,array<string,I18nValue>>
- */
- public function getLanguage(string $language): array {
- return $this->data[$language];
- }
- /**
- * @return array<string,array<string,I18nValue>>
- */
- public function getReferenceLanguage(): array {
- return $this->getLanguage(static::REFERENCE_LANGUAGE);
- }
- private function getFilenamePrefix(string $key): string {
- return preg_replace('/\..*/', '.php', $key) ?? '';
- }
- }
|