mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-28 17:01:16 +00:00
117 lines
3.8 KiB
PHP
117 lines
3.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Models;
|
|
|
|
use Carbon\Carbon;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
|
|
/**
|
|
* App\Models\BookInfo.
|
|
*
|
|
* @property int $id
|
|
* @property string $title
|
|
* @property string $author
|
|
* @property string|null $asin
|
|
* @property string|null $isbn
|
|
* @property string|null $ean
|
|
* @property string|null $url
|
|
* @property int|null $salesrank
|
|
* @property string|null $publisher
|
|
* @property string|null $publishdate
|
|
* @property string|null $pages
|
|
* @property string|null $overview
|
|
* @property string $genre
|
|
* @property bool $cover
|
|
* @property Carbon|null $created_at
|
|
* @property Carbon|null $updated_at
|
|
*
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\BookInfo whereAsin($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\BookInfo whereAuthor($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\BookInfo whereCover($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\BookInfo whereCreatedAt($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\BookInfo whereEan($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\BookInfo whereGenre($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\BookInfo whereId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\BookInfo whereIsbn($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\BookInfo whereOverview($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\BookInfo wherePages($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\BookInfo wherePublishdate($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\BookInfo wherePublisher($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\BookInfo whereSalesrank($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\BookInfo whereTitle($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\BookInfo whereUpdatedAt($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\BookInfo whereUrl($value)
|
|
*
|
|
* @mixin \Eloquent
|
|
*
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\BookInfo newModelQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\BookInfo newQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\BookInfo query()
|
|
*/
|
|
class BookInfo extends Model
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $table = 'bookinfo';
|
|
|
|
protected $dateFormat = false;
|
|
|
|
/**
|
|
* @var array<string>
|
|
*/
|
|
protected $guarded = [];
|
|
|
|
/**
|
|
* Get the releases associated with this book.
|
|
*
|
|
* @return HasMany<Release, $this>
|
|
*/
|
|
public function releases(): HasMany
|
|
{
|
|
return $this->hasMany(Release::class, 'bookinfo_id');
|
|
}
|
|
|
|
/**
|
|
* Get the cover image path.
|
|
*/
|
|
public function getCoverPath(): string
|
|
{
|
|
if ((int) $this->id <= 0) {
|
|
return '';
|
|
}
|
|
|
|
return storage_path('covers/book/'.$this->id.'.webp');
|
|
}
|
|
|
|
/**
|
|
* Check if cover image exists.
|
|
*/
|
|
public function hasCoverImage(): bool
|
|
{
|
|
$coverPath = $this->getCoverPath();
|
|
if ($coverPath === '') {
|
|
return false;
|
|
}
|
|
|
|
$legacyPath = preg_replace('/\.webp$/', '.jpg', $coverPath);
|
|
|
|
return file_exists($coverPath) || (is_string($legacyPath) && file_exists($legacyPath));
|
|
}
|
|
|
|
/**
|
|
* Get the cover URL.
|
|
*/
|
|
public function getCoverUrl(): ?string
|
|
{
|
|
if ((int) $this->id <= 0 || ! $this->cover || ! $this->hasCoverImage()) {
|
|
return null;
|
|
}
|
|
|
|
return url('/covers/book/'.$this->id.'.webp');
|
|
}
|
|
}
|