mirror of
https://github.com/openvk/openvk
synced 2025-02-02 21:15:42 +03:00
Alexander Minkin
6ec54a379d
* feat(lint): add php-cs-fixer for linting Removing previous CODE_STYLE as it was not enforced anyway and using PER-CS 2.0. This is not the reformatting commit. * style: format code according to PER-CS 2.0 with php-cs-fixer * ci(actions): add lint action Resolves #1132.
50 lines
1.2 KiB
PHP
50 lines
1.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace openvk\Web\Models\Repositories;
|
|
|
|
use Chandler\Database\DatabaseConnection;
|
|
use openvk\Web\Models\Entities\RowModel;
|
|
use Nette\Database\Table\ActiveRow;
|
|
|
|
abstract class Repository
|
|
{
|
|
use \Nette\SmartObject;
|
|
protected $context;
|
|
protected $table;
|
|
|
|
protected $tableName;
|
|
protected $modelName;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->context = DatabaseConnection::i()->getContext();
|
|
$this->table = $this->context->table($this->tableName);
|
|
}
|
|
|
|
public function toEntity(?ActiveRow $ar)
|
|
{
|
|
$entityName = "openvk\\Web\\Models\\Entities\\$this->modelName";
|
|
return is_null($ar) ? null : new $entityName($ar);
|
|
}
|
|
|
|
public function get(int $id)
|
|
{
|
|
return $this->toEntity($this->table->get($id));
|
|
}
|
|
|
|
public function size(bool $withDeleted = false): int
|
|
{
|
|
return sizeof($this->table->where("deleted", $withDeleted));
|
|
}
|
|
|
|
public function enumerate(int $page, ?int $perPage = null, bool $withDeleted = false): \Traversable
|
|
{
|
|
$perPage ??= OPENVK_DEFAULT_PER_PAGE;
|
|
|
|
foreach ($this->table->where("deleted", $withDeleted)->page($page, $perPage) as $entity) {
|
|
yield $this->toEntity($entity);
|
|
}
|
|
}
|
|
}
|