*/ protected $guarded = []; protected $dateFormat = false; /** * @return BelongsTo */ 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 $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 $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']); } }