mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
59f09bf2cf
[ci skip] [skip ci]
104 lines
2.7 KiB
PHP
104 lines
2.7 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* App\Models\UserExcludedCategory.
|
|
*
|
|
* @property int $id
|
|
* @property int $users_id
|
|
* @property int $categories_id
|
|
* @property \Carbon\Carbon|null $created_at
|
|
* @property \Carbon\Carbon|null $updated_at
|
|
* @property-read \App\Models\Category $category
|
|
* @property-read \App\Models\User $user
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\UserExcludedCategory whereCategoriesId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\UserExcludedCategory whereCreatedAt($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\UserExcludedCategory whereId($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\UserExcludedCategory whereUpdatedAt($value)
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\UserExcludedCategory whereUsersId($value)
|
|
* @mixin \Eloquent
|
|
*/
|
|
class UserExcludedCategory extends Model
|
|
{
|
|
/**
|
|
* @var bool
|
|
*/
|
|
protected $dateFormat = false;
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $guarded = [];
|
|
|
|
/**
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
*/
|
|
public function user()
|
|
{
|
|
return $this->belongsTo(User::class, 'users_id');
|
|
}
|
|
|
|
/**
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
*/
|
|
public function category()
|
|
{
|
|
return $this->belongsTo(Category::class, 'categories_id');
|
|
}
|
|
|
|
/**
|
|
* @param $uid
|
|
*/
|
|
public static function delUserCategoryExclusions($uid): void
|
|
{
|
|
self::query()->where('users_id', $uid)->delete();
|
|
}
|
|
|
|
/**
|
|
* @param $uid
|
|
* @param array $catids
|
|
*/
|
|
public static function addCategoryExclusions($uid, array $catids): void
|
|
{
|
|
self::delUserCategoryExclusions($uid);
|
|
if (\count($catids) > 0) {
|
|
foreach ($catids as $catid) {
|
|
self::create(['users_id' => $uid, 'categories_id' => $catid]);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Get list of category names excluded by the user.
|
|
*
|
|
* @param int $userID ID of the user.
|
|
*
|
|
* @return array
|
|
* @throws \Exception
|
|
*/
|
|
public static function getCategoryExclusionNames($userID): array
|
|
{
|
|
$categories = self::with('category')->where('users_id', $userID)->get();
|
|
$ret = [];
|
|
if ($categories !== null) {
|
|
foreach ($categories as $cat) {
|
|
$ret[] = $cat->category->title;
|
|
}
|
|
}
|
|
|
|
return $ret;
|
|
}
|
|
|
|
/**
|
|
* @param $uid
|
|
* @param $catid
|
|
*/
|
|
public static function delCategoryExclusion($uid, $catid): void
|
|
{
|
|
self::query()->where(['users_id'=> $uid, 'categories_id' => $catid])->delete();
|
|
}
|
|
}
|