mirror of
https://github.com/openvk/openvk
synced 2024-11-11 09:29:29 +03:00
f9f6270da0
* Search with parameters * Small improvements * Small improvements no.2 Поиск теперь нормально выглядит на других темах При поиске по группам отображается количество участников там Костыль с пропуском постов возвращён но немного изменён Добавлен костыль к комментариям чтобы не показывались комменты с удалённых постов и не было бага как в вепуровке Добавлены ключи в советском и имперском языке для моих прошлых пуллов (ну и этого конечно) * Fix debilny oshibky Убрал лишние ключи локализации, исправил панель поеска и исправил hometown * fiksy bagiv * ok * ok 2 * ok * rrrrrrrrrrrrrrrr Добавил параметры в vkapi users.search(), пофиксил проверку коммерции, сузил параметры ещё больше и добавил анимацию выдвижения поиска чтобы красиво было
77 lines
No EOL
2.4 KiB
PHP
77 lines
No EOL
2.4 KiB
PHP
<?php declare(strict_types=1);
|
|
namespace openvk\Web\Models\Repositories;
|
|
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;
|
|
|
|
function __construct()
|
|
{
|
|
$this->context = DatabaseConnection::i()->getContext();
|
|
$this->apps = $this->context->table("apps");
|
|
$this->appRels = $this->context->table("app_users");
|
|
}
|
|
|
|
private function toApp(?ActiveRow $ar): ?Application
|
|
{
|
|
return is_null($ar) ? NULL : new Application($ar);
|
|
}
|
|
|
|
function get(int $id): ?Application
|
|
{
|
|
return $this->toApp($this->apps->get($id));
|
|
}
|
|
|
|
function getList(int $page = 1, ?int $perPage = NULL): \Traversable
|
|
{
|
|
$perPage = $perPage ?? OPENVK_DEFAULT_PER_PAGE;
|
|
$apps = $this->apps->where("enabled", 1)->page($page, $perPage);
|
|
foreach($apps as $app)
|
|
yield new Application($app);
|
|
}
|
|
|
|
function getListCount(): int
|
|
{
|
|
return sizeof($this->apps->where("enabled", 1));
|
|
}
|
|
|
|
function getByOwner(User $owner, int $page = 1, ?int $perPage = NULL): \Traversable
|
|
{
|
|
$perPage = $perPage ?? OPENVK_DEFAULT_PER_PAGE;
|
|
$apps = $this->apps->where("owner", $owner->getId())->page($page, $perPage);
|
|
foreach($apps as $app)
|
|
yield new Application($app);
|
|
}
|
|
|
|
function getOwnCount(User $owner): int
|
|
{
|
|
return sizeof($this->apps->where("owner", $owner->getId()));
|
|
}
|
|
|
|
function getInstalled(User $user, int $page = 1, ?int $perPage = NULL): \Traversable
|
|
{
|
|
$perPage = $perPage ?? OPENVK_DEFAULT_PER_PAGE;
|
|
$apps = $this->appRels->where("user", $user->getId())->page($page, $perPage);
|
|
foreach($apps as $appRel)
|
|
yield $this->get($appRel->app);
|
|
}
|
|
|
|
function getInstalledCount(User $user): int
|
|
{
|
|
return sizeof($this->appRels->where("user", $user->getId()));
|
|
}
|
|
|
|
function find(string $query, array $pars = [], string $sort = "id"): Util\EntityStream
|
|
{
|
|
$query = "%$query%";
|
|
$result = $this->apps->where("CONCAT_WS(' ', name, description) LIKE ?", $query)->where("enabled", 1);
|
|
|
|
return new Util\EntityStream("Application", $result->order("$sort"));
|
|
}
|
|
} |