openvk/Web/Models/Repositories/Applications.php

96 lines
2.7 KiB
PHP
Raw Normal View History

<?php
declare(strict_types=1);
2022-08-20 21:07:54 +03:00
namespace openvk\Web\Models\Repositories;
2022-08-20 21:07:54 +03:00
use Chandler\Database\DatabaseConnection;
use Nette\Database\Table\ActiveRow;
use openvk\Web\Models\Entities\Application;
use openvk\Web\Models\Entities\User;
class Applications
{
private $context;
private $apps;
private $appRels;
public function __construct()
2022-08-20 21:07:54 +03:00
{
$this->context = DatabaseConnection::i()->getContext();
$this->apps = $this->context->table("apps");
$this->appRels = $this->context->table("app_users");
}
2022-08-20 21:07:54 +03:00
private function toApp(?ActiveRow $ar): ?Application
{
return is_null($ar) ? null : new Application($ar);
2022-08-20 21:07:54 +03:00
}
public function get(int $id): ?Application
2022-08-20 21:07:54 +03:00
{
return $this->toApp($this->apps->get($id));
}
public function getList(int $page = 1, ?int $perPage = null): \Traversable
2022-08-20 21:07:54 +03:00
{
$perPage ??= OPENVK_DEFAULT_PER_PAGE;
2022-08-20 21:07:54 +03:00
$apps = $this->apps->where("enabled", 1)->page($page, $perPage);
foreach ($apps as $app) {
2022-08-20 21:07:54 +03:00
yield new Application($app);
}
2022-08-20 21:07:54 +03:00
}
public function getListCount(): int
2022-08-20 21:07:54 +03:00
{
return sizeof($this->apps->where("enabled", 1));
}
public function getByOwner(User $owner, int $page = 1, ?int $perPage = null): \Traversable
2022-08-20 21:07:54 +03:00
{
$perPage ??= OPENVK_DEFAULT_PER_PAGE;
2022-08-20 21:07:54 +03:00
$apps = $this->apps->where("owner", $owner->getId())->page($page, $perPage);
foreach ($apps as $app) {
2022-08-20 21:07:54 +03:00
yield new Application($app);
}
2022-08-20 21:07:54 +03:00
}
public function getOwnCount(User $owner): int
2022-08-20 21:07:54 +03:00
{
return sizeof($this->apps->where("owner", $owner->getId()));
}
public function getInstalled(User $user, int $page = 1, ?int $perPage = null): \Traversable
2022-08-20 21:07:54 +03:00
{
$perPage ??= OPENVK_DEFAULT_PER_PAGE;
2022-08-20 21:07:54 +03:00
$apps = $this->appRels->where("user", $user->getId())->page($page, $perPage);
foreach ($apps as $appRel) {
2022-08-20 21:07:54 +03:00
yield $this->get($appRel->app);
}
2022-08-20 21:07:54 +03:00
}
public function getInstalledCount(User $user): int
2022-08-20 21:07:54 +03:00
{
return sizeof($this->appRels->where("user", $user->getId()));
}
public function find(string $query = "", array $params = [], array $order = ['type' => 'id', 'invert' => false]): Util\EntityStream
{
$query = "%$query%";
$result = $this->apps->where("CONCAT_WS(' ', name, description) LIKE ?", $query)->where("enabled", 1);
$order_str = 'id';
switch ($order['type']) {
case 'id':
$order_str = 'id ' . ($order['invert'] ? 'ASC' : 'DESC');
break;
}
if ($order_str) {
$result->order($order_str);
}
return new Util\EntityStream("Application", $result);
}
}