generated from mirzaev/pot
106 lines
2.4 KiB
PHP
Executable File
106 lines
2.4 KiB
PHP
Executable File
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace svoboda\svoboder\models\account;
|
|
|
|
// Files of the project
|
|
use svoboda\svoboder\models\core,
|
|
svoboda\svoboder\models\enumerations\language;
|
|
|
|
// Svoboda time
|
|
use svoboda\time\statement as svoboda;
|
|
|
|
// Baza database
|
|
use mirzaev\baza\database,
|
|
mirzaev\baza\column,
|
|
mirzaev\baza\record,
|
|
mirzaev\baza\enumerations\encoding,
|
|
mirzaev\baza\enumerations\type;
|
|
|
|
// Framework for Telegram
|
|
use Zanzara\Telegram\Type\User as telegram;
|
|
|
|
// Built-in libraries
|
|
use Exception as exception,
|
|
RuntimeException as exception_runtime;
|
|
|
|
/**
|
|
* Localization
|
|
*
|
|
* @package svoboda\svoboder\models\account
|
|
*
|
|
* @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
|
|
* @author Arsen Mirzaev Tatyano-Muradovich <arsen@mirzaev.sexy>
|
|
*/
|
|
final class localization extends core
|
|
{
|
|
/**
|
|
* File
|
|
*
|
|
* @var string $database Path to the database file
|
|
*/
|
|
protected string $file = DATABASES . DIRECTORY_SEPARATOR . 'accounts' . DIRECTORY_SEPARATOR . 'localizations.baza';
|
|
|
|
/**
|
|
* Database
|
|
*
|
|
* @var database $database The database
|
|
*/
|
|
public protected(set) database $database;
|
|
|
|
/**
|
|
* Constructor
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
// Initializing the database
|
|
$this->database = new database()
|
|
->encoding(encoding::utf8)
|
|
->columns(
|
|
new column('identifier', type::integer_unsigned),
|
|
new column('account', type::integer_unsigned),
|
|
new column('language', type::string, ['length' => 2]),
|
|
new column('name', type::string, ['length' => 128]),
|
|
new column('updated', type::integer_unsigned),
|
|
new column('created', type::integer_unsigned)
|
|
)
|
|
->connect($this->file);
|
|
}
|
|
|
|
/**
|
|
* Create
|
|
*
|
|
* Creates the account localization record in the database
|
|
*
|
|
* @param int $account Identifier of the account
|
|
* @param language $language Language
|
|
* @param string $name Name of the account
|
|
*
|
|
* @return int|false The record identifier, if created
|
|
*/
|
|
public function create(int $account, language $language, string $name): int|false
|
|
{
|
|
// Initializing the identifier
|
|
$identifier = $this->database->count() + 1;
|
|
|
|
// Initializing the record
|
|
$record = $this->database->record(
|
|
$identifier,
|
|
$account,
|
|
$language->name,
|
|
$name,
|
|
svoboda::timestamp(),
|
|
svoboda::timestamp()
|
|
);
|
|
|
|
// Creating the record in the database
|
|
$created = $this->database->write($record);
|
|
|
|
// Exit (success)
|
|
return $created ? $identifier : false;
|
|
}
|
|
}
|