mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 17:28:55 +00:00
133 lines
3.5 KiB
PHP
133 lines
3.5 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Support\Carbon;
|
|
use nntmux\Category;
|
|
|
|
class Video extends Model
|
|
{
|
|
/**
|
|
* @var bool
|
|
*/
|
|
protected $dateFormat = false;
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $guarded = [];
|
|
|
|
/**
|
|
* @var bool
|
|
*/
|
|
public $timestamps = false;
|
|
|
|
public function alias()
|
|
{
|
|
return $this->hasMany(VideoAlias::class, 'videos_id');
|
|
}
|
|
|
|
/**
|
|
* Get info from tables for the provided ID.
|
|
*
|
|
*
|
|
* @param $id
|
|
* @return array
|
|
*/
|
|
public static function getByVideoID($id): array
|
|
{
|
|
return self::query()
|
|
->where('videos.id', $id)
|
|
->join('tv_info', 'videos.id', '=', 'tv_info.videos_id')
|
|
->first(['videos.*', 'tv_info.summary', 'tv_info.publisher', 'tv_info.image'])
|
|
->toArray();
|
|
}
|
|
|
|
/**
|
|
* Retrieves a range of all shows for the show-edit admin list.
|
|
*
|
|
*
|
|
* @param $start
|
|
* @param $num
|
|
* @param string $showname
|
|
* @return array
|
|
*/
|
|
public static function getRange($start, $num, $showname = ''): array
|
|
{
|
|
$sql = self::query()
|
|
->select(['videos.*', 'tv_info.summary', 'tv_info.publisher', 'tv_info.image'])
|
|
->join('tv_info', 'videos.id', '=', 'tv_info.videos_id');
|
|
|
|
if ($showname !== '') {
|
|
$sql->where('videos.title', 'like', '%'.$showname.'%');
|
|
}
|
|
|
|
if ($start !== false) {
|
|
$sql->limit($num)->offset($start);
|
|
}
|
|
|
|
return $sql->get()->toArray();
|
|
}
|
|
|
|
/**
|
|
* Returns a count of all shows -- usually used by pager.
|
|
*
|
|
*
|
|
* @param string $showname
|
|
* @return int
|
|
*/
|
|
public static function getCount($showname = ''): int
|
|
{
|
|
$res = self::query()->join('tv_info', 'videos.id', '=', 'tv_info.videos_id');
|
|
|
|
if ($showname !== '') {
|
|
$res->where('videos.title', 'like', '%'.$showname.'%');
|
|
}
|
|
|
|
return $res->count('videos.id');
|
|
}
|
|
|
|
/**
|
|
* Retrieves and returns a list of shows with eligible releases.
|
|
*
|
|
* @param $uid
|
|
* @param string $letter
|
|
* @param string $showname
|
|
*
|
|
* @return array
|
|
*/
|
|
public static function getSeriesList($uid, $letter = '', $showname = ''): array
|
|
{
|
|
if ($letter !== '') {
|
|
if ($letter === '0-9') {
|
|
$letter = '[0-9]';
|
|
}
|
|
}
|
|
|
|
$qry = self::query()
|
|
->select(['videos.*', 'tve.firstaired as prevdate', 'tve.title as previnfo', 'tvi.publisher', 'us.id as userseriesid'])
|
|
->join('tv_info as tvi', 'videos.id', '=', 'tvi.videos_id')
|
|
->join('tv_episodes as tve', 'videos.id', '=', 'tve.videos_id')
|
|
->leftJoin('user_series as us', function ($join) use ($uid) {
|
|
$join->on('videos.id', '=', 'us.videos_id')->where('us.users_id', '=', $uid);
|
|
})
|
|
->whereBetween('r.categories_id', [Category::TV_ROOT, Category::TV_OTHER])
|
|
->where('tve.firstaired', '<', Carbon::now())
|
|
->leftJoin('releases as r', 'r.videos_id', '=', 'videos.id')
|
|
->orderBy('videos.title')
|
|
->orderByDesc('tve.firstaired')
|
|
->groupBy(['videos.id']);
|
|
|
|
if ($letter !== '') {
|
|
$qry->whereRaw('videos.title REGEXP ?', ['^'.$letter]);
|
|
}
|
|
|
|
if ($showname !== '') {
|
|
$qry->where('videos.title', 'like', '%'.$showname.'%');
|
|
}
|
|
|
|
return $qry->get()->toArray();
|
|
}
|
|
}
|