openvk/Web/Models/Repositories/Albums.php
Alexander Minkin 6ec54a379d
feat: add linting of code (#1220)
* feat(lint): add php-cs-fixer for linting

Removing previous CODE_STYLE as it was not enforced anyway and using PER-CS 2.0.

This is not the reformatting commit.

* style: format code according to PER-CS 2.0 with php-cs-fixer

* ci(actions): add lint action

Resolves #1132.
2025-01-31 18:20:13 +03:00

142 lines
4.1 KiB
PHP

<?php
declare(strict_types=1);
namespace openvk\Web\Models\Repositories;
use openvk\Web\Models\Entities\Album;
use openvk\Web\Models\Entities\Photo;
use openvk\Web\Models\Entities\Club;
use openvk\Web\Models\Entities\User;
use Nette\Database\Table\ActiveRow;
use Chandler\Database\DatabaseConnection;
class Albums
{
private $context;
private $albums;
public function __construct()
{
$this->context = DatabaseConnection::i()->getContext();
$this->albums = $this->context->table("albums");
}
private function toAlbum(?ActiveRow $ar): ?Album
{
return is_null($ar) ? null : new Album($ar);
}
private function getSpecialConditions(int $id, int $type): array
{
return [
"name" => "[/!\\ DO NOT EDIT: INTERNAL NAME ASSIGNMENT IS ACTIVE]",
"owner" => $id,
"special_type" => $type,
];
}
public function get(int $id): ?Album
{
return $this->toAlbum($this->albums->get($id));
}
public function getUserAlbums(User $user, int $page = 1, ?int $perPage = null): \Traversable
{
$perPage ??= OPENVK_DEFAULT_PER_PAGE;
$albums = $this->albums->where("owner", $user->getId())->where("deleted", false);
foreach ($albums->page($page, $perPage) as $album) {
yield new Album($album);
}
}
public function getUserAlbumsCount(User $user): int
{
$albums = $this->albums->where("owner", $user->getId())->where("deleted", false);
return sizeof($albums);
}
public function getClubAlbums(Club $club, int $page = 1, ?int $perPage = null): \Traversable
{
$perPage ??= OPENVK_DEFAULT_PER_PAGE;
$albums = $this->albums->where("owner", $club->getId() * -1)->where("special_type", 0)->where("deleted", false);
foreach ($albums->page($page, $perPage) as $album) {
yield new Album($album);
}
}
public function getClubAlbumsCount(Club $club): int
{
$albums = $this->albums->where("owner", $club->getId() * -1)->where("special_type", 0)->where("deleted", false);
return sizeof($albums);
}
public function getAvatarAlbumById(int $id, int $regTime): Album
{
$data = $this->getSpecialConditions($id, 16);
$album = $this->albums->where([
"owner" => $id,
"special_type" => 16,
])->fetch();
if (!$album) {
$album = new Album();
$album->setName("[!!! internal album]");
$album->setOwner($id);
$album->setSpecial_Type(16);
$album->setCreated($regTime);
$album->save();
return $album;
}
return new Album($album);
}
public function getUserAvatarAlbum(User $user): Album
{
return $this->getAvatarAlbumById($user->getId(), $user->getRegistrationTime()->timestamp());
}
public function getClubAvatarAlbum(Club $club): Album
{
return $this->getAvatarAlbumById($club->getId() * -1, time());
}
public function getUserWallAlbum(User $user): Album
{
$data = $this->getSpecialConditions($user->getId(), 32);
$album = $this->albums->where([
"owner" => $user->getId(),
"special_type" => 32,
])->fetch();
if (!$album) {
$album = new Album();
$album->setName("[!!! internal album]");
$album->setOwner($user->getId());
$album->setSpecial_Type(32);
$album->setCreated($user->getRegistrationTime()->timestamp());
$album->save();
return $album;
}
return new Album($album);
}
public function getAlbumByPhotoId(Photo $photo): ?Album
{
$dbalbum = $this->context->table("album_relations")->where(["media" => $photo->getId()])->fetch();
return $dbalbum->collection ? $this->get($dbalbum->collection) : null;
}
public function getAlbumByOwnerAndId(int $owner, int $id)
{
$album = $this->albums->where([
"owner" => $owner,
"id" => $id,
])->fetch();
return $album ? new Album($album) : null;
}
}