deeproots_bot/mirzaev/deeproots/system/models/question.php

99 lines
2.1 KiB
PHP
Executable File

<?php
declare(strict_types=1);
namespace mirzaev\deeproots\models;
// Files of the project
use mirzaev\deeproots\models\core,
mirzaev\deeproots\models\question\localization,
mirzaev\deeproots\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;
// Built-in libraries
use Exception as exception,
RuntimeException as exception_runtime;
/**
* Question
*
* @uses localization
* @package mirzaev\deeproots\models
*
* @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
* @author Arsen Mirzaev Tatyano-Muradovich <arsen@mirzaev.sexy>
*/
final class question extends core
{
/**
* File
*
* @var string $database Path to the database file
*/
protected string $file = DATABASES . DIRECTORY_SEPARATOR . 'questions.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::ascii)
->columns(
new column('identifier', type::integer_unsigned),
new column('active', type::char),
new column('updated', type::integer_unsigned),
new column('created', type::integer_unsigned)
)
->connect($this->file);
}
/**
* Create
*
* Creates the record in the database
*
* @param bool $active Is the question active?
*
* @return int|false The record identifier, if created
*/
public function create(bool $active = false): int|false
{
// Initializing the identifier
$identifier ??= $this->database->count() + 1;
// Initializing the record
$record = $this->database->record(
$identifier,
(int) $active,
svoboda::timestamp(),
svoboda::timestamp()
);
// Creating the record in the database
$created = $this->database->write($record);
// Exit (success)
return $created ? $identifier : false;
}
}