2015-08-30 14:29:12 +02:00
|
|
|
<?php
|
|
|
|
|
2015-10-25 06:17:45 +01:00
|
|
|
/**
|
|
|
|
* Pony.fm - A community for pony fan music.
|
|
|
|
* Copyright (C) 2015 Peter Deltchev
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2016-01-01 01:12:30 +01:00
|
|
|
namespace Poniverse\Ponyfm\Models;
|
2015-08-31 14:35:47 +02:00
|
|
|
|
|
|
|
use External;
|
2015-08-30 14:29:12 +02:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2015-12-20 16:07:36 +01:00
|
|
|
use Config;
|
2016-02-05 23:01:45 +01:00
|
|
|
use Illuminate\Support\Str;
|
2015-09-10 12:23:12 +02:00
|
|
|
use Symfony\Component\HttpFoundation\File\UploadedFile;
|
2015-08-30 14:29:12 +02:00
|
|
|
|
2016-01-01 01:36:08 +01:00
|
|
|
/**
|
|
|
|
* Poniverse\Ponyfm\Models\Image
|
|
|
|
*
|
|
|
|
* @property integer $id
|
|
|
|
* @property string $filename
|
|
|
|
* @property string $mime
|
|
|
|
* @property string $extension
|
|
|
|
* @property integer $size
|
|
|
|
* @property string $hash
|
|
|
|
* @property integer $uploaded_by
|
|
|
|
* @property \Carbon\Carbon $created_at
|
|
|
|
* @property \Carbon\Carbon $updated_at
|
2016-12-10 17:47:49 +01:00
|
|
|
* @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Image whereId($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Image whereFilename($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Image whereMime($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Image whereExtension($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Image whereSize($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Image whereHash($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Image whereUploadedBy($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Image whereCreatedAt($value)
|
|
|
|
* @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Image whereUpdatedAt($value)
|
|
|
|
* @mixin \Eloquent
|
2016-01-01 01:36:08 +01:00
|
|
|
*/
|
2015-08-30 14:29:12 +02:00
|
|
|
class Image extends Model
|
|
|
|
{
|
|
|
|
const NORMAL = 1;
|
|
|
|
const ORIGINAL = 2;
|
|
|
|
const THUMBNAIL = 3;
|
|
|
|
const SMALL = 4;
|
|
|
|
|
|
|
|
public static $ImageTypes = [
|
|
|
|
self::NORMAL => ['id' => self::NORMAL, 'name' => 'normal', 'width' => 350, 'height' => 350],
|
|
|
|
self::ORIGINAL => ['id' => self::ORIGINAL, 'name' => 'original', 'width' => null, 'height' => null],
|
|
|
|
self::SMALL => ['id' => self::SMALL, 'name' => 'small', 'width' => 100, 'height' => 100],
|
|
|
|
self::THUMBNAIL => ['id' => self::THUMBNAIL, 'name' => 'thumbnail', 'width' => 50, 'height' => 50]
|
|
|
|
];
|
|
|
|
|
|
|
|
public static function getImageTypeFromName($name)
|
|
|
|
{
|
|
|
|
foreach (self::$ImageTypes as $cover) {
|
|
|
|
if ($cover['name'] != $name) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $cover;
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2016-02-05 23:01:45 +01:00
|
|
|
/**
|
|
|
|
* @param UploadedFile $file
|
2016-03-06 13:27:53 +01:00
|
|
|
* @param int|User $user
|
2016-02-05 23:01:45 +01:00
|
|
|
* @param bool $forceReupload forces the image to be re-processed even if a matching hash is found
|
|
|
|
* @return Image
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
|
|
|
public static function upload(UploadedFile $file, $user, bool $forceReupload = false)
|
2015-08-30 14:29:12 +02:00
|
|
|
{
|
|
|
|
$userId = $user;
|
|
|
|
if ($user instanceof User) {
|
|
|
|
$userId = $user->id;
|
|
|
|
}
|
|
|
|
|
|
|
|
$hash = md5_file($file->getPathname());
|
|
|
|
$image = Image::whereHash($hash)->whereUploadedBy($userId)->first();
|
|
|
|
|
2016-03-16 17:32:39 +01:00
|
|
|
if ($image) {
|
|
|
|
if ($forceReupload) {
|
|
|
|
// delete existing versions of the image
|
|
|
|
$filenames = scandir($image->getDirectory());
|
|
|
|
$imagePrefix = $image->id.'_';
|
|
|
|
|
2016-09-30 00:26:31 +02:00
|
|
|
$filenames = array_filter($filenames, function (string $filename) use ($imagePrefix) {
|
2016-03-16 17:32:39 +01:00
|
|
|
return Str::startsWith($filename, $imagePrefix);
|
|
|
|
});
|
|
|
|
|
2016-06-06 08:29:37 +02:00
|
|
|
foreach ($filenames as $filename) {
|
2016-03-16 17:32:39 +01:00
|
|
|
unlink($image->getDirectory().'/'.$filename);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return $image;
|
2016-02-05 23:01:45 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$image = new Image();
|
|
|
|
}
|
|
|
|
|
2015-08-30 14:29:12 +02:00
|
|
|
try {
|
|
|
|
$image->uploaded_by = $userId;
|
|
|
|
$image->size = $file->getSize();
|
|
|
|
$image->filename = $file->getClientOriginalName();
|
|
|
|
$image->extension = $file->getClientOriginalExtension();
|
|
|
|
$image->mime = $file->getMimeType();
|
|
|
|
$image->hash = $hash;
|
|
|
|
$image->save();
|
|
|
|
|
|
|
|
$image->ensureDirectoryExists();
|
|
|
|
foreach (self::$ImageTypes as $coverType) {
|
2015-12-27 10:43:43 +01:00
|
|
|
if ($coverType['id'] === self::ORIGINAL && $image->mime === 'image/jpeg') {
|
2016-02-05 23:01:45 +01:00
|
|
|
$command = 'cp "'.$file->getPathname().'" '.$image->getFile($coverType['id']);
|
2015-12-27 10:43:43 +01:00
|
|
|
} else {
|
|
|
|
// ImageMagick options reference: http://www.imagemagick.org/script/command-line-options.php
|
2016-06-06 08:29:37 +02:00
|
|
|
$command = 'convert 2>&1 "'.$file->getPathname().'" -background white -alpha remove -alpha off -strip';
|
2015-12-27 10:43:43 +01:00
|
|
|
|
|
|
|
if ($image->mime === 'image/jpeg') {
|
|
|
|
$command .= ' -quality 100 -format jpeg';
|
|
|
|
} else {
|
|
|
|
$command .= ' -quality 95 -format png';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($coverType['width']) && isset($coverType['height'])) {
|
|
|
|
$command .= " -thumbnail ${coverType['width']}x${coverType['height']}^ -gravity center -extent ${coverType['width']}x${coverType['height']}";
|
|
|
|
}
|
|
|
|
|
2016-06-06 08:29:37 +02:00
|
|
|
$command .= ' "'.$image->getFile($coverType['id']).'"';
|
2015-08-30 14:29:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
External::execute($command);
|
2016-01-03 20:10:48 +01:00
|
|
|
chmod($image->getFile($coverType['id']), 0644);
|
2015-08-30 14:29:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return $image;
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
$image->delete();
|
|
|
|
throw $e;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected $table = 'images';
|
|
|
|
|
|
|
|
public function getUrl($type = self::NORMAL)
|
|
|
|
{
|
|
|
|
$type = self::$ImageTypes[$type];
|
|
|
|
|
2015-12-27 10:43:43 +01:00
|
|
|
return action('ImagesController@getImage', ['id' => $this->id, 'type' => $type['name'], 'extension' => $this->extension]);
|
2015-08-30 14:29:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getFile($type = self::NORMAL)
|
|
|
|
{
|
2016-06-06 08:29:37 +02:00
|
|
|
return $this->getDirectory().'/'.$this->getFilename($type);
|
2015-08-30 14:29:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getFilename($type = self::NORMAL)
|
|
|
|
{
|
|
|
|
$typeInfo = self::$ImageTypes[$type];
|
|
|
|
|
2016-06-06 08:29:37 +02:00
|
|
|
return $this->id.'_'.$typeInfo['name'].'.'.$this->extension;
|
2015-08-30 14:29:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getDirectory()
|
|
|
|
{
|
2016-06-06 08:29:37 +02:00
|
|
|
$dir = (string) (floor($this->id / 100) * 100);
|
2015-08-30 14:29:12 +02:00
|
|
|
|
2016-06-06 08:29:37 +02:00
|
|
|
return Config::get('ponyfm.files_directory').'/images/'.$dir;
|
2015-08-30 14:29:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function ensureDirectoryExists()
|
|
|
|
{
|
|
|
|
$destination = $this->getDirectory();
|
|
|
|
umask(0);
|
|
|
|
|
|
|
|
if (!is_dir($destination)) {
|
2015-09-10 13:50:04 +02:00
|
|
|
mkdir($destination, 0777, true);
|
2015-08-30 14:29:12 +02:00
|
|
|
}
|
|
|
|
}
|
2015-09-12 23:56:09 +02:00
|
|
|
}
|