openvk/Web/Models/Entities/TicketComment.php

148 lines
3.6 KiB
PHP
Raw Normal View History

<?php
declare(strict_types=1);
2020-06-07 19:04:43 +03:00
namespace openvk\Web\Models\Entities;
2020-06-07 19:04:43 +03:00
use openvk\Web\Util\DateTime;
use openvk\Web\Models\RowModel;
use openvk\Web\Models\Repositories\{Users, SupportAliases, Tickets};
2020-06-07 19:04:43 +03:00
class TicketComment extends RowModel
{
use Traits\TRichText;
2020-06-07 19:04:43 +03:00
protected $tableName = "tickets_comments";
private $overrideContentColumn = "text";
private function getSupportAlias(): ?SupportAlias
{
return (new SupportAliases())->get($this->getUser()->getId());
}
public function getId(): int
2020-06-07 19:04:43 +03:00
{
return $this->getRecord()->id;
}
2021-10-09 13:55:25 +03:00
public function getUType(): int
2020-06-07 19:04:43 +03:00
{
return $this->getRecord()->user_type;
}
public function getUser(): User
{
return (new Users())->get($this->getRecord()->user_id);
}
public function getTicket(): Ticket
{
return (new Tickets())->get($this->getRecord()->ticket_id);
}
public function getAuthorName(): string
{
if ($this->getUType() === 0) {
return $this->getUser()->getCanonicalName();
}
$alias = $this->getSupportAlias();
if (!$alias) {
return tr("helpdesk_agent") . " #" . $this->getAgentNumber();
}
$name = $alias->getName();
if ($alias->shouldAppendNumber()) {
$name .= "" . $this->getAgentNumber();
}
return $name;
}
public function getAvatar(): string
{
if ($this->getUType() === 0) {
return $this->getUser()->getAvatarUrl();
}
$default = "/assets/packages/static/openvk/img/support.jpeg";
$alias = $this->getSupportAlias();
return is_null($alias) ? $default : ($alias->getIcon() ?? $default);
}
public function getAgentNumber(): ?string
2020-07-16 23:09:48 +03:00
{
if ($this->getUType() === 0) {
return null;
}
2020-07-16 23:09:48 +03:00
$salt = "kiraMiki";
$hash = $this->getUser()->getId() . CHANDLER_ROOT_CONF["security"]["secret"] . $salt;
$hash = hexdec(substr(hash("adler32", $hash), 0, 3));
$hash = ceil(($hash * 999) / 4096); # proportionalize to 0-999
2020-07-16 23:09:48 +03:00
return str_pad((string) $hash, 3, "0", STR_PAD_LEFT);
}
public function getColorRotation(): ?int
2020-07-16 23:09:48 +03:00
{
if (is_null($agent = $this->getAgentNumber())) {
return null;
}
if (!is_null($this->getSupportAlias())) {
return 0;
}
2020-07-16 23:09:48 +03:00
$agent = (int) $agent;
$rotation = $agent > 500 ? (($agent * 360) / 999) : $agent; # cap at 360deg
2020-07-16 23:09:48 +03:00
$values = [0, 45, 160, 220, 310, 345]; # good looking colors
usort($values, function ($x, $y) use ($rotation) {
2020-07-16 23:09:48 +03:00
# find closest
return abs($x - $rotation) - abs($y - $rotation);
});
2020-07-16 23:09:48 +03:00
return array_shift($values);
}
public function getContext(): string
2020-06-07 19:04:43 +03:00
{
$text = $this->getRecord()->text;
$text = $this->formatLinks($text);
$text = $this->removeZalgo($text);
$text = nl2br($text);
return $text;
2020-06-07 19:04:43 +03:00
}
public function getTime(): DateTime
2020-06-07 19:04:43 +03:00
{
return new DateTime($this->getRecord()->created);
}
public function isAd(): bool
{
return false; # Кооостыыыль!!!
}
2021-10-09 13:55:25 +03:00
public function getMark(): ?int
{
return $this->getRecord()->mark;
}
public function isLikedByUser(): ?bool
{
$mark = $this->getMark();
if (is_null($mark)) {
return null;
} else {
return $mark === 1;
}
}
public function isDeleted(): bool
{
return (bool) $this->getRecord()->deleted;
}
2020-06-07 19:04:43 +03:00
}