context = DatabaseConnection::i()->getContext(); $this->messages = $this->context->table("messages"); } function get(int $id): ?Message { $msg = $this->messages->get($id); if(!$msg) return NULL; return new Message($msg); } function getCorrespondencies(RowModel $correspondent, int $page = 1, ?int $perPage = NULL, ?int $offset = NULL): \Traversable { $id = $correspondent->getId(); $class = get_class($correspondent); $limit = $perPage ?? OPENVK_DEFAULT_PER_PAGE; $offset = $offset ?? ($page - 1) * $limit; $query = file_get_contents(__DIR__ . "/../sql/get-correspondencies.tsql"); DatabaseConnection::i()->getConnection()->query(file_get_contents(__DIR__ . "/../sql/mysql-msg-fix.tsql")); $coresps = DatabaseConnection::i()->getConnection()->query($query, $id, $class, $id, $class, $limit, $offset); foreach($coresps as $c) { if($c->class === 'openvk\Web\Models\Entities\User') $anotherCorrespondent = (new Users)->get($c->id); else if($c->class === 'openvk\Web\Models\Entities\Club') $anotherCorrespondent = (new Clubs)->get($c->id); yield new Correspondence($correspondent, $anotherCorrespondent); } } }