mirror of
https://github.com/openvk/openvk
synced 2024-11-11 01:19:53 +03:00
6159262026
* Reports: [INDEV] Undone implementation of reports
* Reports: Backend is done
* Reports: Still makin it...
* Reports: Added report window
* Reports: Corrected the content type
* Reports: Make it work
* Reports: Minor fixes and localization
* Reports: Ability to hide Share and Like buttons
Also renamed the .sql file
* Revent some changes from 8f8d7bb
I will move them to the master branch
* Reports: Only for those who can access Helpdesk
* Reports: Modified the route
* Reports: Change the routes
* Reports: Show reports count
* Report: Fix URL
* Обновление репортов (#715)
* Репорты живы
* 2
* Better reports
* Логи
* Update DBEntity.updated.php
* noSpam
* Сбор IP и UserAgent + фикс логирования в IPs
* Новые поля для поиска etc.
* Fixes
* Fixes and enhancements
* Поиск по нескольким разделам
* Reports enhancements
* Совместимость с новыми логами
* Совместимость с новыми логами
* Update Logs.xml
* Update Logs.xml
* Logs i18n
* Update Logs.xml
* Update AdminPresenter.php
---------
Co-authored-by: veselcraft <veselcraft@icloud.com>
Co-authored-by: Ilya Prokopenko <55238545+Xenforce@users.noreply.github.com>
Co-authored-by: n1rwana <aydashkin@vk.com>
151 lines
6.4 KiB
PHP
151 lines
6.4 KiB
PHP
<?php declare(strict_types=1);
|
||
namespace openvk\Web\Presenters;
|
||
use openvk\Web\Models\Repositories\Users;
|
||
use openvk\Web\Models\Repositories\Reports;
|
||
use openvk\Web\Models\Repositories\Posts;
|
||
use openvk\Web\Models\Entities\Report;
|
||
|
||
final class ReportPresenter extends OpenVKPresenter
|
||
{
|
||
private $reports;
|
||
|
||
function __construct(Reports $reports)
|
||
{
|
||
$this->reports = $reports;
|
||
|
||
parent::__construct();
|
||
}
|
||
|
||
function renderList(): void
|
||
{
|
||
$this->assertUserLoggedIn();
|
||
$this->assertPermission('openvk\Web\Models\Entities\TicketReply', 'write', 0);
|
||
if ($_SERVER["REQUEST_METHOD"] === "POST")
|
||
$this->assertNoCSRF();
|
||
|
||
$act = in_array($this->queryParam("act"), ["post", "photo", "video", "group", "comment", "note", "app", "user"]) ? $this->queryParam("act") : NULL;
|
||
|
||
if (!$this->queryParam("orig")) {
|
||
$this->template->reports = $this->reports->getReports(0, (int)($this->queryParam("p") ?? 1), $act, $_SERVER["REQUEST_METHOD"] !== "POST");
|
||
$this->template->count = $this->reports->getReportsCount();
|
||
} else {
|
||
$orig = $this->reports->get((int) $this->queryParam("orig"));
|
||
if (!$orig) $this->redirect("/scumfeed");
|
||
|
||
$this->template->reports = $orig->getDuplicates();
|
||
$this->template->count = $orig->getDuplicatesCount();
|
||
$this->template->orig = $orig->getId();
|
||
}
|
||
$this->template->paginatorConf = (object) [
|
||
"count" => $this->template->count,
|
||
"page" => $this->queryParam("p") ?? 1,
|
||
"amount" => NULL,
|
||
"perPage" => 15,
|
||
];
|
||
$this->template->mode = $act ?? "all";
|
||
|
||
if ($_SERVER["REQUEST_METHOD"] === "POST") {
|
||
$reports = [];
|
||
foreach ($this->reports->getReports(0, 0, $act, false) as $report) {
|
||
$reports[] = [
|
||
"id" => $report->getId(),
|
||
"author" => [
|
||
"id" => $report->getReportAuthor()->getId(),
|
||
"url" => $report->getReportAuthor()->getURL(),
|
||
"name" => $report->getReportAuthor()->getCanonicalName(),
|
||
"is_female" => $report->getReportAuthor()->isFemale()
|
||
],
|
||
"content" => [
|
||
"name" => $report->getContentName(),
|
||
"type" => $report->getContentType(),
|
||
"id" => $report->getContentId(),
|
||
"url" => $report->getContentType() === "user" ? (new Users)->get((int) $report->getContentId())->getURL() : NULL
|
||
],
|
||
"duplicates" => $report->getDuplicatesCount(),
|
||
];
|
||
}
|
||
$this->returnJson(["reports" => $reports]);
|
||
}
|
||
}
|
||
|
||
function renderView(int $id): void
|
||
{
|
||
$this->assertUserLoggedIn();
|
||
$this->assertPermission('openvk\Web\Models\Entities\TicketReply', 'write', 0);
|
||
|
||
$report = $this->reports->get($id);
|
||
if(!$report || $report->isDeleted())
|
||
$this->notFound();
|
||
|
||
$this->template->report = $report;
|
||
}
|
||
|
||
function renderCreate(int $id): void
|
||
{
|
||
$this->assertUserLoggedIn();
|
||
$this->willExecuteWriteAction();
|
||
|
||
if(!$id)
|
||
exit(json_encode([ "error" => tr("error_segmentation") ]));
|
||
|
||
if(in_array($this->queryParam("type"), ["post", "photo", "video", "group", "comment", "note", "app", "user"])) {
|
||
if (count(iterator_to_array($this->reports->getDuplicates($this->queryParam("type"), $id, NULL, $this->user->id))) <= 0) {
|
||
$report = new Report;
|
||
$report->setUser_id($this->user->id);
|
||
$report->setTarget_id($id);
|
||
$report->setType($this->queryParam("type"));
|
||
$report->setReason($this->queryParam("reason"));
|
||
$report->setCreated(time());
|
||
$report->save();
|
||
}
|
||
|
||
exit(json_encode([ "reason" => $this->queryParam("reason") ]));
|
||
} else {
|
||
exit(json_encode([ "error" => "Unable to submit a report on this content type" ]));
|
||
}
|
||
}
|
||
|
||
function renderAction(int $id): void
|
||
{
|
||
$this->assertUserLoggedIn();
|
||
$this->willExecuteWriteAction();
|
||
$this->assertPermission('openvk\Web\Models\Entities\TicketReply', 'write', 0);
|
||
|
||
$report = $this->reports->get($id);
|
||
if(!$report || $report->isDeleted()) $this->notFound();
|
||
|
||
if ($this->postParam("ban")) {
|
||
$report->deleteContent();
|
||
$report->banUser($this->user->identity->getId());
|
||
|
||
$this->flash("suc", "Смэрть...", "Пользователь успешно забанен.");
|
||
} else if ($this->postParam("delete")) {
|
||
$report->deleteContent();
|
||
|
||
$this->flash("suc", "Нехай живе!", "Контент удалён, а пользователю прилетело предупреждение.");
|
||
} else if ($this->postParam("ignore")) {
|
||
$report->delete();
|
||
|
||
$this->flash("suc", "Нехай живе!", "Жалоба проигнорирована.");
|
||
} else if ($this->postParam("banClubOwner") || $this->postParam("banClub")) {
|
||
if ($report->getContentType() !== "group")
|
||
$this->flashFail("err", "Ошибка доступа", "Недостаточно прав для модификации данного ресурса.");
|
||
|
||
$club = $report->getContentObject();
|
||
if (!$club || $club->isBanned())
|
||
$this->flashFail("err", "Ошибка доступа", "Недостаточно прав для модификации данного ресурса.");
|
||
|
||
if ($this->postParam("banClubOwner")) {
|
||
$club->getOwner()->ban("**content-" . $report->getContentType() . "-" . $report->getContentId() . "**", false, $club->getOwner()->getNewBanTime(), $this->user->identity->getId());
|
||
} else {
|
||
$club->ban("**content-" . $report->getContentType() . "-" . $report->getContentId() . "**");
|
||
}
|
||
|
||
$report->delete();
|
||
|
||
$this->flash("suc", "Смэрть...", ($this->postParam("banClubOwner") ? "Создатель сообщества успешно забанен." : "Сообщество успешно забанено"));
|
||
}
|
||
|
||
$this->redirect("/scumfeed");
|
||
}
|
||
}
|