mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-28 22:01:33 +00:00
152 lines
4.6 KiB
PHP
152 lines
4.6 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Models;
|
|
|
|
use Carbon\Carbon;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
use Laravel\Scout\Searchable;
|
|
|
|
/**
|
|
* App\Models\ConsoleInfo.
|
|
*
|
|
* @property int $id
|
|
* @property string $title
|
|
* @property string|null $asin
|
|
* @property string|null $url
|
|
* @property int|null $salesrank
|
|
* @property string|null $platform
|
|
* @property string|null $publisher
|
|
* @property int|null $genres_id
|
|
* @property string|null $esrb
|
|
* @property string|null $releasedate
|
|
* @property string|null $review
|
|
* @property bool $cover
|
|
* @property Carbon|null $created_at
|
|
* @property Carbon|null $updated_at
|
|
*
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ConsoleInfo whereAsin($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ConsoleInfo whereCover($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ConsoleInfo whereCreatedAt($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ConsoleInfo whereEsrb($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ConsoleInfo whereGenresId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ConsoleInfo whereId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ConsoleInfo wherePlatform($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ConsoleInfo wherePublisher($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ConsoleInfo whereReleasedate($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ConsoleInfo whereReview($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ConsoleInfo whereSalesrank($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ConsoleInfo whereTitle($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ConsoleInfo whereUpdatedAt($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ConsoleInfo whereUrl($value)
|
|
*
|
|
* @mixin \Eloquent
|
|
*
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ConsoleInfo newModelQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ConsoleInfo newQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\ConsoleInfo query()
|
|
*/
|
|
class ConsoleInfo extends Model
|
|
{
|
|
use Searchable;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $table = 'consoleinfo';
|
|
|
|
protected $dateFormat = false;
|
|
|
|
/**
|
|
* @var array<string>
|
|
*/
|
|
protected $guarded = [];
|
|
|
|
public function searchableAs(): string
|
|
{
|
|
return 'ix_consoleinfo_title_platform_ft';
|
|
}
|
|
|
|
/**
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function toSearchableArray(): array
|
|
{
|
|
return [
|
|
'title' => $this->title,
|
|
'platform' => $this->platform,
|
|
];
|
|
}
|
|
|
|
// ========================================
|
|
// Relationships
|
|
// ========================================
|
|
|
|
/**
|
|
* Get the genre for the console info.
|
|
*
|
|
* @return BelongsTo<Genre, $this>
|
|
*/
|
|
public function genre(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Genre::class, 'genres_id');
|
|
}
|
|
|
|
/**
|
|
* Get the releases for the console info.
|
|
*
|
|
* @return HasMany<Release, $this>
|
|
*/
|
|
public function releases(): HasMany
|
|
{
|
|
return $this->hasMany(Release::class, 'consoleinfo_id');
|
|
}
|
|
|
|
// ========================================
|
|
// Query Scopes
|
|
// ========================================
|
|
|
|
/**
|
|
* Scope a query to only include consoles with covers.
|
|
*/
|
|
public function scopeWithCover(mixed $query): mixed
|
|
{
|
|
return $query->where('cover', 1);
|
|
}
|
|
|
|
/**
|
|
* Scope a query to only include consoles for a specific platform.
|
|
*/
|
|
public function scopeForPlatform(mixed $query, string $platform): mixed
|
|
{
|
|
return $query->where('platform', $platform);
|
|
}
|
|
|
|
// ========================================
|
|
// Static Helper Methods
|
|
// ========================================
|
|
|
|
/**
|
|
* Get console info by ID with genre.
|
|
*/
|
|
public static function getWithGenre(int $id): ?self
|
|
{
|
|
return static::query()
|
|
->where('consoleinfo.id', $id)
|
|
->select('consoleinfo.*', 'genres.title as genres')
|
|
->leftJoin('genres', 'genres.id', '=', 'consoleinfo.genres_id')
|
|
->first();
|
|
}
|
|
|
|
/**
|
|
* Find by ASIN.
|
|
*/
|
|
public static function findByAsin(string $asin): ?self
|
|
{
|
|
return static::where('asin', $asin)->first();
|
|
}
|
|
}
|