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(), пофиксил проверку коммерции, сузил параметры ещё больше и добавил анимацию выдвижения поиска чтобы красиво было
97 lines
2.9 KiB
PHP
97 lines
2.9 KiB
PHP
<?php declare(strict_types=1);
|
|
namespace openvk\Web\Models\Repositories;
|
|
use openvk\Web\Models\Entities\{Club, Manager};
|
|
use openvk\Web\Models\Repositories\{Aliases, Users};
|
|
use Nette\Database\Table\ActiveRow;
|
|
use Chandler\Database\DatabaseConnection;
|
|
|
|
class Clubs
|
|
{
|
|
private $context;
|
|
private $clubs;
|
|
private $coadmins;
|
|
|
|
function __construct()
|
|
{
|
|
$this->context = DatabaseConnection::i()->getContext();
|
|
$this->clubs = $this->context->table("groups");
|
|
$this->coadmins = $this->context->table("group_coadmins");
|
|
}
|
|
|
|
private function toClub(?ActiveRow $ar): ?Club
|
|
{
|
|
return is_null($ar) ? NULL : new Club($ar);
|
|
}
|
|
|
|
function getByShortURL(string $url): ?Club
|
|
{
|
|
$shortcode = $this->toClub($this->clubs->where("shortcode", $url)->fetch());
|
|
|
|
if ($shortcode)
|
|
return $shortcode;
|
|
|
|
$alias = (new Aliases)->getByShortcode($url);
|
|
|
|
if (!$alias) return NULL;
|
|
if ($alias->getType() !== "club") return NULL;
|
|
|
|
return $alias->getClub();
|
|
}
|
|
|
|
function get(int $id): ?Club
|
|
{
|
|
return $this->toClub($this->clubs->get($id));
|
|
}
|
|
|
|
function find(string $query, array $pars = [], string $sort = "id DESC", int $page = 1, ?int $perPage = NULL): \Traversable
|
|
{
|
|
$query = "%$query%";
|
|
$result = $this->clubs->where("name LIKE ? OR about LIKE ?", $query, $query);
|
|
|
|
return new Util\EntityStream("Club", $result->order($sort));
|
|
}
|
|
|
|
function getCount(): int
|
|
{
|
|
return sizeof(clone $this->clubs);
|
|
}
|
|
|
|
function getPopularClubs(): \Traversable
|
|
{
|
|
// TODO rewrite
|
|
|
|
/*
|
|
$query = "SELECT ROW_NUMBER() OVER (ORDER BY `subscriptions` DESC) as `place`, `target` as `id`, COUNT(`follower`) as `subscriptions` FROM `subscriptions` WHERE `model` = \"openvk\\\Web\\\Models\\\Entities\\\Club\" GROUP BY `target` ORDER BY `subscriptions` DESC, `id` LIMIT 30;";
|
|
$entries = DatabaseConnection::i()->getConnection()->query($query);
|
|
|
|
foreach($entries as $entry)
|
|
yield (object) [
|
|
"place" => $entry["place"],
|
|
"club" => $this->get($entry["id"]),
|
|
"subscriptions" => $entry["subscriptions"],
|
|
];
|
|
*/
|
|
}
|
|
|
|
function getWriteableClubs(int $id): \Traversable
|
|
{
|
|
$result = $this->clubs->where("owner", $id);
|
|
$coadmins = $this->coadmins->where("user", $id);
|
|
|
|
foreach($result as $entry) {
|
|
yield new Club($entry);
|
|
}
|
|
|
|
foreach($coadmins as $coadmin) {
|
|
$cl = new Manager($coadmin);
|
|
yield $cl->getClub();
|
|
}
|
|
}
|
|
|
|
function getWriteableClubsCount(int $id): int
|
|
{
|
|
return sizeof($this->clubs->where("owner", $id)) + sizeof($this->coadmins->where("user", $id));
|
|
}
|
|
|
|
use \Nette\SmartObject;
|
|
}
|