mirror of
https://github.com/openvk/openvk
synced 2024-11-11 09:29:29 +03:00
a859fa13a5
* VKAPI: Fix bug when DELETED user appear if there is no user_ids * Textarea: Make multiple attachments * постмодернистское искусство * Use only attachPic for grabbing pic attachments TODO throw flashFail on bruh moment with pic attachments * draft masonry picture layout in posts xddd где мои опиаты??? * fix funny typos in computeMasonryLayout * Fix video bruh moment in textarea * Posts: add multiple kakahi for microblog * Photo: Add minimal implementation of миниатюра открывашка Co-authored-by: Daniel <60743585+myslivets@users.noreply.github.com> * Photo: Add ability to slide trough photos in one post This also gives ability to easily implement comments and actions * Photo: The Fxck Is This implementation of comments under photo in viewer * FloatingPhotoViewer: Better CSS - Fix that details background issue - Make slide buttons slightly shorter by height * FloatingPhotoViewer: Refactor, and make it better - Now you can actually check the comments under EVERY photo - Fix for textarea. Now you can publish comments * Fix funny typos xddd * Kinda fix poll display in non-microblog posts * Posts: Fix poll display in microblog posts * Add photos picker (#986) * early implementation of photos pickir Добавлен пикер фоточек и быстрая загрузка фото. Так же пофикшен просмотрщик фото в группах. Но, правда, я сломал копипейст, но это ладн. * Fiks fotos viver four coments. * Add picking photos from clubs albums Копипейст и граффити так и не пофикшены * Fix graffiti and copypaste Какого-то хуя копипаста у постов срабатывает два раза. * some fixesx * dragon drop * Fix PHP 8 compatibility * 5 (#988) --------- Co-authored-by: celestora <kitsuruko@gmail.com> Co-authored-by: Daniel <60743585+myslivets@users.noreply.github.com> Co-authored-by: lalka2016 <99399973+lalka2016@users.noreply.github.com> Co-authored-by: Alexander Minkin <weryskok@gmail.com>
98 lines
3.1 KiB
PHP
98 lines
3.1 KiB
PHP
<?php declare(strict_types=1);
|
|
namespace openvk\Web\Models\Entities\Traits;
|
|
use openvk\Web\Models\Entities\{Attachable, Photo};
|
|
use openvk\Web\Util\Makima\Makima;
|
|
use Chandler\Database\DatabaseConnection;
|
|
|
|
trait TAttachmentHost
|
|
{
|
|
private function composeAttachmentRequestData(Attachable $attachment): array
|
|
{
|
|
return [
|
|
"target_type" => get_class($this),
|
|
"target_id" => $this->getId(),
|
|
"attachable_type" => get_class($attachment),
|
|
"attachable_id" => $attachment->getId(),
|
|
];
|
|
}
|
|
|
|
function getChildren(): \Traversable
|
|
{
|
|
$sel = DatabaseConnection::i()->getContext()
|
|
->table("attachments")
|
|
->where("target_id", $this->getId())
|
|
->where("attachments.target_type", get_class($this));
|
|
foreach($sel as $rel) {
|
|
$repoName = $rel->attachable_type . "s";
|
|
$repoName = str_replace("Entities", "Repositories", $repoName);
|
|
$repo = new $repoName;
|
|
|
|
yield $repo->get($rel->attachable_id);
|
|
}
|
|
}
|
|
|
|
function getChildrenWithLayout(int $w, int $h = -1): object
|
|
{
|
|
if($h < 0)
|
|
$h = $w;
|
|
|
|
$children = $this->getChildren();
|
|
$skipped = $photos = $result = [];
|
|
foreach($children as $child) {
|
|
if($child instanceof Photo) {
|
|
$photos[] = $child;
|
|
continue;
|
|
}
|
|
|
|
$skipped[] = $child;
|
|
}
|
|
|
|
$height = "unset";
|
|
$width = $w;
|
|
if(sizeof($photos) < 2) {
|
|
if(isset($photos[0]))
|
|
$result[] = ["100%", "unset", $photos[0], "unset"];
|
|
} else {
|
|
$mak = new Makima($photos);
|
|
$layout = $mak->computeMasonryLayout($w, $h);
|
|
$height = $layout->height;
|
|
$width = $layout->width;
|
|
for($i = 0; $i < sizeof($photos); $i++) {
|
|
$tile = $layout->tiles[$i];
|
|
$result[] = [$tile->width . "px", $tile->height . "px", $photos[$i], "left"];
|
|
}
|
|
}
|
|
|
|
return (object) [
|
|
"width" => $width . "px",
|
|
"height" => $height . "px",
|
|
"tiles" => $result,
|
|
"extras" => $skipped,
|
|
];
|
|
}
|
|
|
|
function attach(Attachable $attachment): void
|
|
{
|
|
DatabaseConnection::i()->getContext()
|
|
->table("attachments")
|
|
->insert($this->composeAttachmentRequestData($attachment));
|
|
}
|
|
|
|
function detach(Attachable $attachment): bool
|
|
{
|
|
$res = DatabaseConnection::i()->getContext()
|
|
->table("attachments")
|
|
->where($this->composeAttachmentRequestData($attachment))
|
|
->delete();
|
|
|
|
return $res > 0;
|
|
}
|
|
|
|
function unwire(): void
|
|
{
|
|
$this->getRecord()
|
|
->related("attachments.target_id")
|
|
->where("attachments.target_type", get_class($this))
|
|
->delete();
|
|
}
|
|
}
|