mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-28 23:01:29 +00:00
135 lines
4.2 KiB
PHP
135 lines
4.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Models;
|
|
|
|
use Carbon\Carbon;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
/**
|
|
* App\Models\UserSerie.
|
|
*
|
|
* @property int $id
|
|
* @property int $users_id
|
|
* @property int $videos_id FK to videos.id
|
|
* @property string|null $categories List of categories for user tv shows
|
|
* @property Carbon|null $created_at
|
|
* @property Carbon|null $updated_at
|
|
* @property-read User $user
|
|
*
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\UserSerie whereCategories($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\UserSerie whereCreatedAt($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\UserSerie whereId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\UserSerie whereUpdatedAt($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\UserSerie whereUsersId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\UserSerie whereVideosId($value)
|
|
*
|
|
* @mixin \Eloquent
|
|
*
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\UserSerie newModelQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\UserSerie newQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\UserSerie query()
|
|
*/
|
|
class UserSerie extends Model
|
|
{
|
|
/**
|
|
* @var array<string>
|
|
*/
|
|
protected $guarded = [];
|
|
|
|
protected $dateFormat = false;
|
|
|
|
/**
|
|
* @return BelongsTo<User, $this>
|
|
*/
|
|
public function user(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class, 'users_id');
|
|
}
|
|
|
|
/**
|
|
* When a user wants to add a show to "my shows" insert it into the user series table.
|
|
*
|
|
*
|
|
* @param array<string, mixed> $catID
|
|
* @return int|Builder
|
|
*/
|
|
public static function addShow(mixed $userId, mixed $videoId, array $catID = []) // @phpstan-ignore missingType.generics
|
|
{
|
|
return self::query()
|
|
->insertGetId(
|
|
[
|
|
'users_id' => $userId,
|
|
'videos_id' => $videoId,
|
|
'categories' => ! empty($catID) ? implode('|', $catID) : 'NULL',
|
|
'created_at' => now(),
|
|
'updated_at' => now(),
|
|
]
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Get all the user's "my shows".
|
|
*/
|
|
public static function getShows(mixed $userId): mixed
|
|
{
|
|
return self::query()
|
|
->where('user_series.users_id', $userId)
|
|
->select(['user_series.*', 'v.title'])
|
|
->join('videos as v', 'v.id', '=', 'user_series.videos_id')
|
|
->orderBy('v.title')
|
|
->get();
|
|
}
|
|
|
|
/**
|
|
* Delete a tv show from the user's "my shows".
|
|
*/
|
|
public static function delShow(mixed $users_id, mixed $videos_id): void
|
|
{
|
|
self::query()->where(compact('users_id', 'videos_id'))->delete();
|
|
}
|
|
|
|
/**
|
|
* Get tv show information for a user.
|
|
*
|
|
*
|
|
* @return Model|null|static
|
|
*/
|
|
public static function getShow(mixed $userId, mixed $videoId)
|
|
{
|
|
return self::query()
|
|
->where(['user_series.users_id' => $userId, 'user_series.videos_id' => $videoId])
|
|
->select(['user_series.*', 'v.title'])
|
|
->leftJoin('videos as v', 'v.id', '=', 'user_series.videos_id')->first();
|
|
}
|
|
|
|
/**
|
|
* Delete all shows from the user's "my shows".
|
|
*/
|
|
public static function delShowForUser(mixed $userId): void
|
|
{
|
|
self::query()->where('users_id', $userId)->delete();
|
|
}
|
|
|
|
/**
|
|
* Delete TV shows from all user's "my shows" that match a TV id.
|
|
*/
|
|
public static function delShowForSeries(mixed $videoId): void
|
|
{
|
|
self::query()->where('videos_id', $videoId)->delete();
|
|
}
|
|
|
|
/**
|
|
* Update a TV show category ID for a user's "my show" TV show.
|
|
*
|
|
* @param array<string, mixed> $catID List of category ID's.
|
|
*/
|
|
public static function updateShow(mixed $users_id, mixed $videos_id, array $catID = []): void
|
|
{
|
|
self::query()->where(compact('users_id', 'videos_id'))->update(['categories' => ! empty($catID) ? implode('|', $catID) : 'NULL']);
|
|
}
|
|
}
|