2021-10-28 09:26:16 +09:00
< ? php
declare ( strict_types = 1 );
// {{{ License
// This file is part of GNU social - https://www.gnu.org/software/social
//
// GNU social is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// GNU social is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with GNU social. If not, see <http://www.gnu.org/licenses/>.
// }}}
namespace App\Entity ;
2021-11-02 20:11:51 +09:00
use App\Core\Cache ;
use App\Core\DB\DB ;
2021-10-28 09:26:16 +09:00
use App\Core\Entity ;
2021-11-02 20:11:51 +09:00
use function App\Core\I18n\_m ;
2021-10-29 01:34:01 +09:00
use DateTimeInterface ;
2021-11-02 20:11:51 +09:00
use Functional as F ;
2021-10-28 09:26:16 +09:00
/**
* Entity for languages
*
* @ category DB
* @ package GNUsocial
*
* @ author Hugo Sales < hugo @ hsal . es >
* @ copyright 2021 Free Software Foundation , Inc http :// www . fsf . org
* @ license https :// www . gnu . org / licenses / agpl . html GNU AGPL v3 or later
*/
class Language extends Entity
{
// {{{ Autocode
// @codeCoverageIgnoreStart
private int $id ;
2021-11-02 19:42:21 +09:00
private string $locale ;
private string $long_display ;
private string $short_display ;
2021-10-29 01:34:01 +09:00
private DateTimeInterface $created ;
2021-10-28 09:26:16 +09:00
public function setId ( int $id ) : self
{
$this -> id = $id ;
return $this ;
}
public function getId () : int
{
return $this -> id ;
}
2021-11-02 19:42:21 +09:00
public function setLocale ( string $locale ) : self
2021-10-28 09:26:16 +09:00
{
2021-11-02 19:42:21 +09:00
$this -> locale = $locale ;
2021-10-28 09:26:16 +09:00
return $this ;
}
2021-11-02 19:42:21 +09:00
public function getLocale () : string
2021-10-28 09:26:16 +09:00
{
2021-11-02 19:42:21 +09:00
return $this -> locale ;
}
public function setLongDisplay ( string $long_display ) : self
{
$this -> long_display = $long_display ;
return $this ;
}
public function getLongDisplay () : string
{
return $this -> long_display ;
}
public function setShortDisplay ( string $short_display ) : self
{
$this -> short_display = $short_display ;
return $this ;
}
public function getShortDisplay () : string
{
return $this -> short_display ;
2021-10-28 09:26:16 +09:00
}
public function setCreated ( DateTimeInterface $created ) : self
{
$this -> created = $created ;
return $this ;
}
public function getCreated () : DateTimeInterface
{
return $this -> created ;
}
// @codeCoverageIgnoreEnd
// }}} Autocode
2021-11-02 20:11:51 +09:00
public static function getLanguageChoices () : array
2021-10-29 01:34:01 +09:00
{
2021-11-09 00:03:39 +09:00
$langs = Cache :: getHashMap (
'languages' ,
fn () => F\reindex ( DB :: dql ( 'select l from language l' ), fn ( self $l ) => $l -> getLocale ())
2021-11-02 20:11:51 +09:00
);
2021-11-09 00:03:39 +09:00
return array_merge ( ... F\map ( array_values ( $langs ), fn ( $l ) => $l -> toChoiceFormat ()));
2021-11-02 20:11:51 +09:00
}
public function toChoiceFormat () : array
{
2021-11-09 00:03:39 +09:00
return [ _m ( $this -> getLongDisplay ()) => $this -> getLocale ()];
2021-10-29 01:34:01 +09:00
}
2021-10-28 09:26:16 +09:00
public static function schemaDef () : array
{
return [
'name' => 'language' ,
'description' => 'all known languages' ,
'fields' => [
2021-11-02 19:42:21 +09:00
'id' => [ 'type' => 'serial' , 'not null' => true , 'description' => 'unique identifier' ],
'locale' => [ 'type' => 'char' , 'length' => 64 , 'description' => 'The locale identifier for the language of a note. 2-leter-iso-language-code_4-leter-script-code_2-leter-iso-country-code, but kept longer in case we get a different format' ],
'long_display' => [ 'type' => 'varchar' , 'length' => 64 , 'description' => 'The long display string for the language, in english (translated later)' ],
'short_display' => [ 'type' => 'varchar' , 'length' => 12 , 'description' => 'The short display string for the language (used for the first option)' ],
'created' => [ 'type' => 'datetime' , 'not null' => true , 'default' => 'CURRENT_TIMESTAMP' , 'description' => 'date this record was created' ],
2021-10-28 09:26:16 +09:00
],
'primary key' => [ 'id' ],
2021-10-29 01:34:01 +09:00
'unique keys' => [
2021-11-02 19:42:21 +09:00
'language_locale_uniq' => [ 'locale' ],
2021-10-29 01:34:01 +09:00
],
'indexes' => [
2021-11-02 19:42:21 +09:00
'locale_idx' => [ 'locale' ],
2021-10-28 09:26:16 +09:00
],
];
}
}