mirror of
https://github.com/openvk/openvk
synced 2024-11-11 01:19:53 +03:00
3e69d06474
* API methods for gifts, notes, statuses * Some fixes Строки локализации у gifts.send теперь не костыльные и можно прикрепить до 10 аттачей к посту * Small imp Пофиксил пагинацию у заметков и подарок Перенёс структуру заметок Добавил аттачи к комментариям Добавил проверку на удалённость аттача Ну и пофиксил сортировку заметок * VKAPI: Some methods for topics and photos Добавлены методы для обсуждений (addTopic, closeTopic(), createComment(), deleteComment(), deleteTopic(), editTopic(), fixTopic(), getComments(), getTopics(), openTopic(), unfixTopic()) и для фотографий (createAlbum(), editAlbum(), getAlbums(), getAlbumsCount(), getById(), get(), deleteAlbum(), edit(), delete(), deleteComment(), createComment(), getAll(), getComments()) * fixsex
49 lines
1.4 KiB
PHP
49 lines
1.4 KiB
PHP
<?php declare(strict_types=1);
|
|
namespace openvk\Web\Models\Repositories;
|
|
use Chandler\Database\DatabaseConnection;
|
|
use openvk\Web\Models\Entities\Note;
|
|
use openvk\Web\Models\Entities\User;
|
|
use Nette\Database\Table\ActiveRow;
|
|
|
|
class Notes
|
|
{
|
|
private $context;
|
|
private $notes;
|
|
|
|
function __construct()
|
|
{
|
|
$this->context = DatabaseConnection::i()->getContext();
|
|
$this->notes = $this->context->table("notes");
|
|
}
|
|
|
|
private function toNote(?ActiveRow $ar): ?Note
|
|
{
|
|
return is_null($ar) ? NULL : new Note($ar);
|
|
}
|
|
|
|
function get(int $id): ?Note
|
|
{
|
|
return $this->toNote($this->notes->get($id));
|
|
}
|
|
|
|
function getUserNotes(User $user, int $page = 1, ?int $perPage = NULL, string $sort = "DESC"): \Traversable
|
|
{
|
|
$perPage = $perPage ?? OPENVK_DEFAULT_PER_PAGE;
|
|
foreach($this->notes->where("owner", $user->getId())->where("deleted", 0)->order("created $sort")->page($page, $perPage) as $album)
|
|
yield new Note($album);
|
|
}
|
|
|
|
function getNoteById(int $owner, int $note): ?Note
|
|
{
|
|
$note = $this->notes->where(['owner' => $owner, 'virtual_id' => $note])->fetch();
|
|
if(!is_null($note))
|
|
return new Note($note);
|
|
else
|
|
return NULL;
|
|
}
|
|
|
|
function getUserNotesCount(User $user): int
|
|
{
|
|
return sizeof($this->notes->where("owner", $user->getId())->where("deleted", 0));
|
|
}
|
|
}
|