openvk/Web/Presenters/AdminPresenter.php

98 lines
2.2 KiB
PHP
Raw Normal View History

2020-06-07 19:04:43 +03:00
<?php declare(strict_types=1);
namespace openvk\Web\Presenters;
use openvk\Web\Models\Entities\User;
use openvk\Web\Models\Repositories\{Users, Clubs};
final class AdminPresenter extends OpenVKPresenter
{
private $users;
private $clubs;
function __construct(Users $users, Clubs $clubs)
{
$this->users = $users;
$this->clubs = $clubs;
parent::__construct();
}
private function searchResults(object $repo, &$count)
{
$query = $this->queryParam("q") ?? "";
$page = (int) ($this->queryParam("p") ?? 1);
$count = $repo->getFoundCount($query);
return $repo->find($query, $page);
}
2020-06-15 21:25:55 +03:00
function onStartup(): void
{
2020-07-17 19:26:59 +03:00
parent::onStartup();
$this->assertPermission("admin", "access", -1);
2020-06-15 21:25:55 +03:00
}
2020-06-07 19:04:43 +03:00
function renderIndex(): void
{
}
function renderUsers(): void
{
$this->template->users = $this->searchResults($this->users, $this->template->count);
}
function renderUser(int $id): void
{
$user = $this->users->get($id);
if(!$user)
$this->notFound();
$this->template->user = $user;
if($_SERVER["REQUEST_METHOD"] !== "POST")
return;
switch($_POST["act"] ?? "info") {
default:
case "info":
break;
}
}
function renderClubs(): void
{
$this->template->clubs = $this->searchResults($this->clubs, $this->template->count);
}
function renderClub(int $id): void
{
$club = $this->clubs->get($id);
if(!$club)
$this->notFound();
$this->template->club = $club;
if($_SERVER["REQUEST_METHOD"] === "POST") {
}
}
function renderFiles(): void
{
}
2020-07-17 19:26:59 +03:00
function renderQuickBan(int $id): void
{
$user = $this->users->get($id);
if(!$user)
exit(json_encode([ "error" => "User does not exist" ]));
$user->ban($this->queryParam("reason"));
exit(json_encode([ "reason" => $this->queryParam("reason") ]));
}
2020-06-07 19:04:43 +03:00
}