belongsTo(User::class, 'users_id'); } /** * When a user wants to add a show to "my shows" insert it into the user series table. * * * @return int|\Illuminate\Database\Eloquent\Builder */ public static function addShow($userId, $videoId, array $catID = []) { 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". * * * @return \Illuminate\Database\Eloquent\Collection|static[] */ public static function getShows($userId) { 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($users_id, $videos_id): void { self::query()->where(compact('users_id', 'videos_id'))->delete(); } /** * Get tv show information for a user. * * * @return \Illuminate\Database\Eloquent\Model|null|static */ public static function getShow($userId, $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($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($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($users_id, $videos_id, array $catID = []): void { self::query()->where(compact('users_id', 'videos_id'))->update(['categories' => ! empty($catID) ? implode('|', $catID) : 'NULL']); } }