mirror of
https://github.com/openvk/openvk
synced 2024-11-11 01:19:53 +03:00
a082d84d54
* New feature: users can rate support answers Now users can rate support answers. They will see links "This is good answer" and "This is bad answer", like it was in original VK.
62 lines
1.7 KiB
PHP
62 lines
1.7 KiB
PHP
<?php declare(strict_types=1);
|
|
namespace openvk\Web\Models\Repositories;
|
|
// use openvk\Web\Models\Entities\Ticket;
|
|
// use openvk\Web\Models\Entities\User;
|
|
// use openvk\Web\Models\Repositories\Users;
|
|
use openvk\Web\Models\Entities\TicketComment;
|
|
use Nette\Database\Table\ActiveRow;
|
|
use Chandler\Database\DatabaseConnection;
|
|
|
|
class TicketComments
|
|
{
|
|
private $context;
|
|
private $comments;
|
|
|
|
function __construct()
|
|
{
|
|
$this->context = DatabaseConnection::i()->getContext();
|
|
$this->comments = $this->context->table("tickets_comments");
|
|
}
|
|
|
|
function getCommentsById(int $ticket_id): \Traversable
|
|
{
|
|
foreach($this->comments->where(['ticket_id' => $ticket_id]) as $comment) yield new TicketComment($comment);
|
|
}
|
|
|
|
// private function toTicket(?ActiveRow $ar): ?Ticket
|
|
// {
|
|
// return is_null($ar) ? NULL : new Ticket($ar);
|
|
// }
|
|
|
|
// function getTicketsByuId(int $user_id): \Traversable
|
|
// {
|
|
// foreach($this->tickets->where(['user_id' => $user_id, 'deleted' => 0]) as $ticket) yield new Ticket($ticket);
|
|
// }
|
|
|
|
// function getRequestById(int $req_id): ?Ticket
|
|
// {
|
|
// $requests = $this->tickets->where(['id' => $req_id])->fetch();
|
|
// if(!is_null($requests))
|
|
|
|
// return new Req($requests);
|
|
// else
|
|
// return null;
|
|
|
|
// }
|
|
|
|
// function get(int $id): ?Ticket
|
|
// {
|
|
// return $this->toTicket($this->tickets->get($id));
|
|
// }
|
|
|
|
function get(int $id): ?TicketComment
|
|
{
|
|
$comment = $this->comments->get($id);;
|
|
if (!is_null($comment))
|
|
return new TicketComment($comment);
|
|
else
|
|
return NULL;
|
|
}
|
|
|
|
use \Nette\SmartObject;
|
|
}
|