2020-06-07 19:04:43 +03:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
namespace openvk\Web\Models\Entities;
|
|
|
|
use Chandler\Database\DatabaseConnection as DB;
|
|
|
|
use Nette\InvalidStateException as ISE;
|
|
|
|
use Nette\Utils\Image;
|
|
|
|
|
|
|
|
class Photo extends Media
|
|
|
|
{
|
|
|
|
protected $tableName = "photos";
|
|
|
|
protected $fileExtension = "jpeg";
|
|
|
|
|
2021-10-14 14:40:28 +03:00
|
|
|
const ALLOWED_SIDE_MULTIPLIER = 7;
|
|
|
|
|
2020-06-07 19:04:43 +03:00
|
|
|
protected function saveFile(string $filename, string $hash): bool
|
|
|
|
{
|
|
|
|
$image = Image::fromFile($filename);
|
2021-10-14 14:40:28 +03:00
|
|
|
if(($image->height >= ($image->width * Photo::ALLOWED_SIDE_MULTIPLIER)) || ($image->width >= ($image->height * Photo::ALLOWED_SIDE_MULTIPLIER)))
|
|
|
|
throw new ISE("Invalid layout: image is too wide/short");
|
2020-06-07 19:04:43 +03:00
|
|
|
|
|
|
|
$image->save($this->pathFromHash($hash), 92, Image::JPEG);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
function crop(real $left, real $top, real $width, real $height): bool
|
|
|
|
{
|
|
|
|
if(isset($this->changes["hash"]))
|
|
|
|
$hash = $this->changes["hash"];
|
|
|
|
else if(!is_null($this->getRecord()))
|
|
|
|
$hash = $this->getRecord()->hash;
|
|
|
|
else
|
|
|
|
throw new ISE("Cannot crop uninitialized image. Please call setFile(\$_FILES[...]) first.");
|
|
|
|
|
|
|
|
$image = Image::fromFile($this->pathFromHash($hash));
|
|
|
|
$image->crop($left, $top, $width, $height);
|
|
|
|
return $image->save($this->pathFromHash($hash));
|
|
|
|
}
|
|
|
|
|
|
|
|
function isolate(): void
|
|
|
|
{
|
|
|
|
if(is_null($this->getRecord()))
|
|
|
|
throw new ISE("Cannot isolate unpresisted image. Please save() it first.");
|
|
|
|
|
2021-01-27 20:39:15 +03:00
|
|
|
DB::i()->getContext()->table("album_relations")->where("media", $this->getRecord()->id)->delete();
|
2020-06-07 19:04:43 +03:00
|
|
|
}
|
2021-10-12 14:17:21 +03:00
|
|
|
|
|
|
|
static function fastMake(int $owner, string $description = "", array $file, ?Album $album = NULL): Photo
|
|
|
|
{
|
|
|
|
$photo = new static;
|
|
|
|
$photo->setOwner($owner);
|
|
|
|
$photo->setDescription(iconv_substr($description, 0, 36) . "...");
|
|
|
|
$photo->setCreated(time());
|
|
|
|
$photo->setFile($file);
|
|
|
|
$photo->save();
|
|
|
|
|
|
|
|
if(!is_null($album))
|
|
|
|
$album->addPhoto($photo);
|
|
|
|
|
|
|
|
return $photo;
|
|
|
|
}
|
2020-06-07 19:04:43 +03:00
|
|
|
}
|