<?php
namespace App\Models;
use FFMpeg\Coordinate\TimeCode;
use FFMpeg\FFMpeg;
use FFMpeg\FFProbe;
use FFMpeg\Format\Video\X264;
use Illuminate\Http\UploadedFile;
class Down extends BaseModel
{
/**
* Indicates if the model should be timestamped.
*
* @var bool
*/
public $timestamps = false;
/**
* The attributes that aren't mass assignable.
*
* @var array
*/
protected $guarded = [];
/**
* Список расширений доступных для просмотра в архиве
*
* @var array
*/
public static $viewExt = ['xml', 'wml', 'asp', 'aspx', 'shtml', 'htm', 'phtml', 'html', 'php', 'htt', 'dat', 'tpl', 'htaccess', 'pl', 'js', 'jsp', 'css', 'txt', 'sql', 'gif', 'png', 'bmp', 'wbmp', 'jpg', 'jpeg', 'env', 'gitignore', 'json', 'yml', 'md'];
/**
* Возвращает категорию загрузок
*/
public function category()
{
return $this->belongsTo(Load::class, 'category_id')->withDefault();
}
/**
* Возвращает комментарии
*/
public function comments()
{
return $this->morphMany(Comment::class, 'relate');
}
/**
* Возвращает последнии комментарии к файлу
*
* @param int $limit
* @return mixed
*/
public function lastComments($limit = 15)
{
return $this->hasMany(Comment::class, 'relate_id')
->where('relate_type', self::class)
->limit($limit);
}
/**
* Возвращает загруженные файлы
*/
public function files()
{
return $this->morphMany(File::class, 'relate');
}
/**
* Возвращает файлы
*/
public function getFiles()
{
return $this->files->filter(function ($value, $key) {
return ! $value->isImage();
});
}
/**
* Возвращает картинки
*/
public function getImages()
{
return $this->files->filter(function ($value, $key) {
return $value->isImage();
});
}
/**
* Обрезает текст
*
* @return string
*/
public function cutText()
{
if (utfStrlen($this->text) > 300) {
$this->text = strip_tags(bbCode($this->text), '<br>');
$this->text = str_limit($this->text, 300);
}
return $this->text;
}
/**
* Возвращает массив доступных расширений для просмотра в архиве
*
* @return array
*/
public static function getViewExt()
{
return self::$viewExt;
}
/**
* Загружает файл
*
* @param UploadedFile $file
* @return void
*/
public function uploadFile(UploadedFile $file)
{
$extension = strtolower($file->getClientOriginalExtension());
$path = in_array($extension, ['jpg', 'jpeg', 'gif', 'png']) ? 'screens' : 'files';
$fileName = uploadFile($file, UPLOADS . '/' . $path);
$this->convertVideo($file, $fileName);
File::query()->create([
'relate_id' => $this->id,
'relate_type' => self::class,
'hash' => $fileName,
'name' => $file->getClientOriginalName(),
'size' => $file->getClientSize(),
'user_id' => getUser('id'),
'created_at' => SITETIME,
]);
}
/**
* @param UploadedFile $file
*/
public function convertVideo(UploadedFile $file, $fileName)
{
$isVideo = strpos($file->getClientMimeType(), 'video/') !== false ? true : false;
// Обработка видео
if ($isVideo && env('FFMPEG_ENABLED')) {
$ffconfig = [
'ffmpeg.binaries' => env('FFMPEG_PATH'),
'ffprobe.binaries' => env('FFPROBE_PATH'),
'timeout' => env('FFMPEG_TIMEOUT'),
'ffmpeg.threads' => env('FFMPEG_THREADS'),
];
$ffmpeg = FFMpeg::create($ffconfig);
$video = $ffmpeg->open(UPLOADS . '/files/' . $fileName);
// Сохраняем скрин с 5 секунды
$frame = $video->frame(TimeCode::fromSeconds(5));
$frame->save(UPLOADS . '/screens/' . $fileName . '.jpg');
File::query()->create([
'relate_id' => $this->id,
'relate_type' => self::class,
'hash' => $fileName . '.jpg',
'name' => 'screenshot.jpg',
'size' => filesize(UPLOADS . '/screens/' . $fileName . '.jpg'),
'user_id' => getUser('id'),
'created_at' => SITETIME,
]);
// Перекодируем видео в h264
$ffprobe = FFProbe::create($ffconfig);
$codec = $ffprobe
->streams(UPLOADS . '/files/' . $fileName)
->videos()
->first()
->get('codec_name');
if ($file->getClientOriginalExtension() === 'mp4' && $codec !== 'h264') {
$format = new X264('libmp3lame', 'libx264');
$video->save($format, UPLOADS . '/files/convert-' . $fileName);
rename(
UPLOADS . '/files/convert-' . $fileName,
UPLOADS . '/files/' . $fileName
);
}
}
}
/**
* Удаление загрузки и загруженных файлов
*
* @return bool|null
* @throws \Exception
*/
public function delete()
{
$this->files->each(function($file) {
if ($file->isImage()) {
deleteFile(UPLOADS . '/screens/' . $file->hash);
} else {
deleteFile(UPLOADS . '/files/' . $file->hash);
}
$file->delete();
});
return parent::delete();
}
}