<?php
declare(strict_types=1);
namespace App\Models;
use App\Traits\AddFileToArchiveTrait;
use App\Traits\ConvertVideoTrait;
use App\Traits\SearchableTrait;
use App\Traits\SortableTrait;
use App\Traits\UploadTrait;
use Illuminate\Database\Eloquent\Attributes\Scope;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Collection;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Database\Eloquent\Relations\MorphMany;
use Illuminate\Database\Eloquent\Relations\MorphOne;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\HtmlString;
/**
* Class Down
*
* @property int $id
* @property int $category_id
* @property string $title
* @property string $text
* @property int $user_id
* @property int $created_at
* @property int $count_comments
* @property int $rating
* @property int $loads
* @property bool $active
* @property array $links
* @property int $updated_at
* @property-read Collection<File> $files
* @property-read Collection<Comment> $comments
* @property-read Collection<Poll> $polls
* @property-read Poll $poll
* @property-read Load $category
*/
class Down extends BaseModel
{
use AddFileToArchiveTrait;
use ConvertVideoTrait;
use SearchableTrait;
use SortableTrait;
use UploadTrait;
/**
* Indicates if the model should be timestamped.
*/
public $timestamps = false;
/**
* The attributes that aren't mass assignable.
*/
protected $guarded = [];
/**
* Директория загрузки файлов
*/
public string $uploadPath = '/uploads/files';
/**
* Counting field
*/
public string $countingField = 'loads';
/**
* Список расширений доступных для просмотра в архиве
*/
public array $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', 'webp', 'env', 'gitignore', 'json', 'yml', 'md'];
/**
* Morph name
*/
public static string $morphName = 'downs';
/**
* Get the attributes that should be cast.
*/
protected function casts(): array
{
return [
'active' => 'bool',
'links' => 'array',
];
}
/**
* Возвращает поля участвующие в поиске
*/
public function searchableFields(): array
{
return ['title', 'text'];
}
/**
* Возвращает список сортируемых полей
*/
protected static function sortableFields(): array
{
return [
'date' => ['field' => 'created_at', 'label' => __('main.date')],
'loads' => ['field' => 'loads', 'label' => __('main.downloads')],
'name' => ['field' => 'title', 'label' => __('main.title')],
'rating' => ['field' => 'rating', 'label' => __('main.rating')],
'comments' => ['field' => 'count_comments', 'label' => __('main.comments')],
];
}
/**
* Scope a query to only include active records.
*/
#[Scope]
protected function active(Builder $query, bool $type = true): void
{
$query->where('active', $type);
}
/**
* Возвращает категорию загрузок
*/
public function category(): BelongsTo
{
return $this->belongsTo(Load::class, 'category_id')->withDefault();
}
/**
* Возвращает комментарии
*/
public function comments(): MorphMany
{
return $this->morphMany(Comment::class, 'relate')->with('relate');
}
/**
* Возвращает связь с голосованиями
*/
public function polls(): MorphMany
{
return $this->MorphMany(Poll::class, 'relate');
}
/**
* Возвращает связь с голосованием
*/
public function poll(): morphOne
{
return $this->morphOne(Poll::class, 'relate')
->where('user_id', getUser('id'));
}
/**
* Возвращает последние комментарии к файлу
*/
public function lastComments(int $limit = 15): HasMany
{
return $this->hasMany(Comment::class, 'relate_id')
->where('relate_type', self::$morphName)
->orderBy('created_at', 'desc')
->with('user')
->limit($limit);
}
/**
* Возвращает загруженные файлы
*/
public function files(): MorphMany
{
return $this->morphMany(File::class, 'relate');
}
/**
* Возвращает файлы
*/
public function getFiles(): Collection
{
return $this->files->filter(static function (File $value, $key) {
return ! $value->isImage();
});
}
/**
* Возвращает картинки
*/
public function getImages(): Collection
{
return $this->files->filter(static function (File $value, $key) {
return $value->isImage();
});
}
/**
* Возвращает сокращенный текст описания
*/
public function shortText(int $words = 50): HtmlString
{
if (wordCount($this->text) > $words) {
$this->text = bbCodeTruncate($this->text, $words);
} else {
$this->text = bbCode($this->text);
}
return new HtmlString($this->text);
}
/**
* Is new file
*/
public function isNew(): bool
{
return $this->created_at > strtotime('-3 day');
}
/**
* Возвращает массив доступных расширений для просмотра в архиве
*/
public function getViewExt(): array
{
return $this->viewExt;
}
/**
* Удаление загрузки и загруженных файлов
*/
public function delete(): ?bool
{
return DB::transaction(function () {
$this->polls()->delete();
$this->comments->each(static function (Comment $comment) {
$comment->delete();
});
$this->files->each(static function (File $file) {
$file->delete();
});
return parent::delete();
});
}
}