CS code fixes by pint

This commit is contained in:
DariusIII
2023-03-02 16:47:20 +01:00
parent a5d5901698
commit 49872346f2
274 changed files with 2117 additions and 4946 deletions
+85 -39
View File
@@ -31,6 +31,7 @@ use Illuminate\Support\Facades\DB;
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Category whereParentid($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Category whereStatus($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Category whereTitle($value)
*
* @mixin \Eloquent
*
* @property int|null $root_categories_id
@@ -47,83 +48,161 @@ class Category extends Model
* Do NOT use the values, as they may change, always use the constant - that's what it's for.
*/
public const OTHER_MISC = 10;
public const OTHER_HASHED = 20;
public const GAME_NDS = 1010;
public const GAME_PSP = 1020;
public const GAME_WII = 1030;
public const GAME_XBOX = 1040;
public const GAME_XBOX360 = 1050;
public const GAME_WIIWARE = 1060;
public const GAME_XBOX360DLC = 1070;
public const GAME_PS3 = 1080;
public const GAME_OTHER = 1999;
public const GAME_3DS = 1110;
public const GAME_PSVITA = 1120;
public const GAME_WIIU = 1130;
public const GAME_XBOXONE = 1140;
public const GAME_PS4 = 1180;
public const MOVIE_FOREIGN = 2010;
public const MOVIE_OTHER = 2999;
public const MOVIE_SD = 2030;
public const MOVIE_HD = 2040;
public const MOVIE_UHD = 2045;
public const MOVIE_3D = 2050;
public const MOVIE_BLURAY = 2060;
public const MOVIE_DVD = 2070;
public const MOVIE_WEBDL = 2080;
public const MOVIE_X265 = 2090;
public const MUSIC_MP3 = 3010;
public const MUSIC_VIDEO = 3020;
public const MUSIC_AUDIOBOOK = 3030;
public const MUSIC_LOSSLESS = 3040;
public const MUSIC_PODCAST = 3050;
public const MUSIC_OTHER = 3999;
public const MUSIC_FOREIGN = 3060;
public const PC_0DAY = 4010;
public const PC_ISO = 4020;
public const PC_MAC = 4030;
public const PC_PHONE_OTHER = 4040;
public const PC_GAMES = 4050;
public const PC_PHONE_IOS = 4060;
public const PC_PHONE_ANDROID = 4070;
public const TV_WEBDL = 5010;
public const TV_FOREIGN = 5020;
public const TV_SD = 5030;
public const TV_HD = 5040;
public const TV_UHD = 5045;
public const TV_OTHER = 5999;
public const TV_SPORT = 5060;
public const TV_ANIME = 5070;
public const TV_DOCU = 5080;
public const TV_X265 = 5090;
public const XXX_DVD = 6010;
public const XXX_WMV = 6020;
public const XXX_XVID = 6030;
public const XXX_X264 = 6040;
public const XXX_CLIPHD = 6041;
public const XXX_CLIPSD = 6042;
public const XXX_UHD = 6045;
public const XXX_PACK = 6050;
public const XXX_IMAGESET = 6060;
public const XXX_OTHER = 6999;
public const XXX_SD = 6080;
public const XXX_WEBDL = 6090;
public const BOOKS_MAGAZINES = 7010;
public const BOOKS_EBOOK = 7020;
public const BOOKS_COMICS = 7030;
public const BOOKS_TECHNICAL = 7040;
public const BOOKS_FOREIGN = 7060;
public const BOOKS_UNKNOWN = 7999;
public const OTHER_ROOT = 1;
public const GAME_ROOT = 1000;
public const MOVIE_ROOT = 2000;
public const MUSIC_ROOT = 3000;
public const PC_ROOT = 4000;
public const TV_ROOT = 5000;
public const XXX_ROOT = 6000;
public const BOOKS_ROOT = 7000;
public const STATUS_INACTIVE = 0;
public const STATUS_ACTIVE = 1;
public const STATUS_DISABLED = 2;
public const OTHERS_GROUP =
@@ -231,7 +310,6 @@ class Category extends Model
}
/**
* @param array $cat
* @return string
*/
public static function getCategorySearch(array $cat = [])
@@ -260,16 +338,16 @@ class Category extends Model
switch ($catCount) {
//No category constraint
case 0:
$catsrch = 'AND 1=1';
$catsrch = 'AND 1=1';
break;
// One category constraint
// One category constraint
case 1:
$catsrch = $categories[0] !== -1 ? ' AND r.categories_id = '.$categories[0] : '';
$catsrch = $categories[0] !== -1 ? ' AND r.categories_id = '.$categories[0] : '';
break;
// Multiple category constraints
// Multiple category constraints
default:
$catsrch = ' AND r.categories_id IN ('.implode(', ', $categories).') ';
$catsrch = ' AND r.categories_id IN ('.implode(', ', $categories).') ';
break;
}
@@ -278,8 +356,6 @@ class Category extends Model
/**
* Returns a concatenated list of other categories.
*
* @return string
*/
public static function getCategoryOthersGroup(): string
{
@@ -290,7 +366,6 @@ class Category extends Model
}
/**
* @param $category
* @return mixed
*/
public static function getCategoryValue($category)
@@ -300,9 +375,6 @@ class Category extends Model
/**
* Check if category is parent.
*
* @param $cid
* @return bool
*/
public static function isParent($cid): bool
{
@@ -323,7 +395,6 @@ class Category extends Model
* Get children of a parent category.
*
*
* @param $categoryId
* @return mixed
*/
public static function getChildren($categoryId)
@@ -366,7 +437,6 @@ class Category extends Model
/**
* Get multiple categories.
*
* @param $ids
* @return bool|\Illuminate\Database\Eloquent\Collection|static[]
*/
public static function getByIds($ids)
@@ -389,10 +459,6 @@ class Category extends Model
/**
* Return the parent and category name from the supplied categoryID.
*
*
* @param $categoryId
* @return string
*/
public static function getNameByID($categoryId): string
{
@@ -402,8 +468,6 @@ class Category extends Model
}
/**
* @param $title
* @param $parent
* @return bool|mixed
*/
public static function getIdByName($title, $parent)
@@ -415,15 +479,6 @@ class Category extends Model
/**
* Update a category.
*
*
* @param $id
* @param $status
* @param $desc
* @param $disablepreview
* @param $minsize
* @param $maxsize
* @return int
*/
public static function updateCategory($id, $status, $desc, $disablepreview, $minsize, $maxsize): int
{
@@ -438,14 +493,10 @@ class Category extends Model
);
}
/**
* @param array $excludedCats
* @return array
*/
public static function getForMenu(array $excludedCats = []): array
{
$categoriesResult = [];
$categoriesArray = RootCategory::query()->with(['categories' =>function ($query) use ($excludedCats) {
$categoriesArray = RootCategory::query()->with(['categories' => function ($query) use ($excludedCats) {
if (! empty($excludedCats)) {
$query->whereNotIn('id', $excludedCats);
}
@@ -481,9 +532,6 @@ class Category extends Model
/**
* Return a list of categories for use in a dropdown.
*
* @param bool $blnIncludeNoneSelected
* @return array
*/
public static function getForSelect(bool $blnIncludeNoneSelected = true): array
{
@@ -501,8 +549,6 @@ class Category extends Model
}
/**
* @param bool $activeOnly
* @param array $excludedCats
* @return \Illuminate\Database\Eloquent\Builder[]|\Illuminate\Database\Eloquent\Collection
*/
public static function getCategories(bool $activeOnly = false, array $excludedCats = []): \Illuminate\Database\Eloquent\Collection|array