openvk/Web/Models/Repositories/Clubs.php

98 lines
2.9 KiB
PHP
Raw Normal View History

2020-06-07 19:04:43 +03:00
<?php declare(strict_types=1);
namespace openvk\Web\Models\Repositories;
2023-05-21 18:38:39 +03:00
use openvk\Web\Models\Entities\{Club, Manager};
use openvk\Web\Models\Repositories\{Aliases, Users};
2020-06-07 19:04:43 +03:00
use Nette\Database\Table\ActiveRow;
use Chandler\Database\DatabaseConnection;
class Clubs
{
private $context;
private $clubs;
2023-05-21 18:38:39 +03:00
private $coadmins;
2020-06-07 19:04:43 +03:00
function __construct()
{
2023-05-21 18:38:39 +03:00
$this->context = DatabaseConnection::i()->getContext();
$this->clubs = $this->context->table("groups");
$this->coadmins = $this->context->table("group_coadmins");
2020-06-07 19:04:43 +03:00
}
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();
2020-06-07 19:04:43 +03:00
}
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
2020-06-07 19:04:43 +03:00
{
2020-11-22 13:29:27 +03:00
$query = "%$query%";
$result = $this->clubs->where("name LIKE ? OR about LIKE ?", $query, $query);
return new Util\EntityStream("Club", $result->order($sort));
2020-06-07 19:04:43 +03:00
}
function getCount(): int
{
return sizeof(clone $this->clubs);
}
function getPopularClubs(): \Traversable
{
// TODO rewrite
/*
2022-04-18 09:54:56 +03:00
$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"],
];
*/
}
2023-05-21 18:38:39 +03:00
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));
}
2020-06-07 19:04:43 +03:00
use \Nette\SmartObject;
}