@@ -254,7 +254,7 @@ discard block |
||
254 | 254 | { |
255 | 255 | $res = self::query()->where('email', '<>', '[email protected]'); |
256 | 256 | |
257 | - if (! empty($role)) { |
|
257 | + if (!empty($role)) { |
|
258 | 258 | $res->where('roles_id', $role); |
259 | 259 | } |
260 | 260 | |
@@ -295,7 +295,7 @@ discard block |
||
295 | 295 | 'rate_limit' => $rateLimit ? $rateLimit['rate_limit'] : 60, |
296 | 296 | ]; |
297 | 297 | |
298 | - if (! empty($email)) { |
|
298 | + if (!empty($email)) { |
|
299 | 299 | $email = trim($email); |
300 | 300 | $sql += ['email' => $email]; |
301 | 301 | } |
@@ -344,10 +344,10 @@ discard block |
||
344 | 344 | { |
345 | 345 | $user = self::find($uid); |
346 | 346 | $currRoleExp = $user->rolechangedate ?? now()->toDateTimeString(); |
347 | - if (! empty($date)) { |
|
347 | + if (!empty($date)) { |
|
348 | 348 | $user->update(['rolechangedate' => $date]); |
349 | 349 | } |
350 | - if (empty($date) && ! empty($addYear)) { |
|
350 | + if (empty($date) && !empty($addYear)) { |
|
351 | 351 | $user->update(['rolechangedate' => Carbon::createFromDate($currRoleExp)->addYears($addYear)]); |
352 | 352 | } |
353 | 353 | } |
@@ -404,10 +404,10 @@ discard block |
||
404 | 404 | return self::fromQuery( |
405 | 405 | sprintf( |
406 | 406 | $query, |
407 | - ! empty($userName) ? 'AND users.username '.'LIKE '.escapeString('%'.$userName.'%') : '', |
|
408 | - ! empty($email) ? 'AND users.email '.'LIKE '.escapeString('%'.$email.'%') : '', |
|
409 | - ! empty($host) ? 'AND users.host '.'LIKE '.escapeString('%'.$host.'%') : '', |
|
410 | - (! empty($role) ? ('AND users.roles_id = '.$role) : ''), |
|
407 | + !empty($userName) ? 'AND users.username '.'LIKE '.escapeString('%'.$userName.'%') : '', |
|
408 | + !empty($email) ? 'AND users.email '.'LIKE '.escapeString('%'.$email.'%') : '', |
|
409 | + !empty($host) ? 'AND users.host '.'LIKE '.escapeString('%'.$host.'%') : '', |
|
410 | + (!empty($role) ? ('AND users.roles_id = '.$role) : ''), |
|
411 | 411 | $order[0], |
412 | 412 | $order[1], |
413 | 413 | ($start === false ? '' : ('LIMIT '.$offset.' OFFSET '.$start)) |
@@ -519,7 +519,7 @@ discard block |
||
519 | 519 | |
520 | 520 | public static function isValidUrl($url): bool |
521 | 521 | { |
522 | - return (! preg_match('/^(http|https|ftp):\/\/([A-Z0-9][A-Z0-9_-]*(?:\.[A-Z0-9][A-Z0-9_-]*)+):?(\d+)?\/?/i', $url)) ? false : true; |
|
522 | + return (!preg_match('/^(http|https|ftp):\/\/([A-Z0-9][A-Z0-9_-]*(?:\.[A-Z0-9][A-Z0-9_-]*)+):?(\d+)?\/?/i', $url)) ? false : true; |
|
523 | 523 | } |
524 | 524 | |
525 | 525 | /** |
@@ -555,7 +555,7 @@ discard block |
||
555 | 555 | |
556 | 556 | // Make sure this is the last check, as if a further validation check failed, the invite would still have been used up. |
557 | 557 | $invitedBy = 0; |
558 | - if (! $forceInviteMode && (int) Settings::settingValue('registerstatus') === Settings::REGISTER_STATUS_INVITE) { |
|
558 | + if (!$forceInviteMode && (int) Settings::settingValue('registerstatus') === Settings::REGISTER_STATUS_INVITE) { |
|
559 | 559 | if ($inviteCode === '') { |
560 | 560 | return self::ERR_SIGNUP_BADINVITECODE; |
561 | 561 | } |
@@ -575,7 +575,7 @@ discard block |
||
575 | 575 | public static function checkAndUseInvite(string $inviteCode): int |
576 | 576 | { |
577 | 577 | $invite = Invitation::getInvite($inviteCode); |
578 | - if (! $invite) { |
|
578 | + if (!$invite) { |
|
579 | 579 | return -1; |
580 | 580 | } |
581 | 581 | |
@@ -591,7 +591,7 @@ discard block |
||
591 | 591 | public static function add(string $userName, string $password, string $email, int $role, ?string $notes = '', string $host = '', int $invites = Invitation::DEFAULT_INVITES, int $invitedBy = 0) |
592 | 592 | { |
593 | 593 | $password = self::hashPassword($password); |
594 | - if (! $password) { |
|
594 | + if (!$password) { |
|
595 | 595 | return false; |
596 | 596 | } |
597 | 597 | |
@@ -633,9 +633,9 @@ discard block |
||
633 | 633 | |
634 | 634 | $cats = ['view console', 'view movies', 'view audio', 'view tv', 'view pc', 'view adult', 'view books', 'view other']; |
635 | 635 | |
636 | - if (! empty($allowed)) { |
|
636 | + if (!empty($allowed)) { |
|
637 | 637 | foreach ($cats as $cat) { |
638 | - if (! \in_array($cat, $allowed, false)) { |
|
638 | + if (!\in_array($cat, $allowed, false)) { |
|
639 | 639 | $ret[] = match ($cat) { |
640 | 640 | 'view console' => 1000, |
641 | 641 | 'view movies' => 2000, |
@@ -73,7 +73,7 @@ |
||
73 | 73 | if ($user !== null) { |
74 | 74 | $rememberMe = $request->has('rememberme') && $request->input('rememberme') === 'on'; |
75 | 75 | |
76 | - if (! $user->isVerified() || $user->isPendingVerification()) { |
|
76 | + if (!$user->isVerified() || $user->isPendingVerification()) { |
|
77 | 77 | $request->session()->flash('message', 'You have not verified your email address!'); |
78 | 78 | |
79 | 79 | return redirect()->to('login'); |
@@ -34,11 +34,11 @@ discard block |
||
34 | 34 | $re = new ReleaseExtra; |
35 | 35 | $data = Release::getByGuid($guid); |
36 | 36 | $releaseRegex = ''; |
37 | - if (! empty($data)) { |
|
37 | + if (!empty($data)) { |
|
38 | 38 | $releaseRegex = ReleaseRegex::query()->where('releases_id', '=', $data['id'])->first(); |
39 | 39 | } |
40 | 40 | |
41 | - if (! $data) { |
|
41 | + if (!$data) { |
|
42 | 42 | return redirect()->back(); |
43 | 43 | } |
44 | 44 | |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | if ($data['imdbid'] !== '' && $data['imdbid'] !== 0000000) { |
65 | 65 | $movie = new Movie(['Settings' => $this->settings]); |
66 | 66 | $mov = $movie->getMovieInfo($data['imdbid']); |
67 | - if (! empty($mov['title'])) { |
|
67 | + if (!empty($mov['title'])) { |
|
68 | 68 | $mov['title'] = str_replace(['/', '\\'], '', $mov['title']); |
69 | 69 | $mov['actors'] = makeFieldLinks($mov, 'actors', 'movies'); |
70 | 70 | $mov['genre'] = makeFieldLinks($mov, 'genre', 'movies'); |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | switch ($action) { |
27 | 27 | case 'delete': |
28 | 28 | $show = UserSerie::getShow($this->userdata->id, $videoId); |
29 | - if (! $show) { |
|
29 | + if (!$show) { |
|
30 | 30 | return redirect()->back(); |
31 | 31 | } |
32 | 32 | |
@@ -46,12 +46,12 @@ discard block |
||
46 | 46 | } |
47 | 47 | |
48 | 48 | $show = Video::getByVideoID($videoId); |
49 | - if (! $show) { |
|
49 | + if (!$show) { |
|
50 | 50 | return redirect()->to('myshows'); |
51 | 51 | } |
52 | 52 | |
53 | 53 | if ($action === 'doadd') { |
54 | - $category = ($request->has('category') && \is_array($request->input('category')) && ! empty($request->input('category'))) ? $request->input('category') : []; |
|
54 | + $category = ($request->has('category') && \is_array($request->input('category')) && !empty($request->input('category'))) ? $request->input('category') : []; |
|
55 | 55 | UserSerie::addShow($this->userdata->id, $videoId, $category); |
56 | 56 | if ($request->has('from')) { |
57 | 57 | return redirect()->to($request->input('from')); |
@@ -85,12 +85,12 @@ discard block |
||
85 | 85 | case 'doedit': |
86 | 86 | $show = UserSerie::getShow($this->userdata->id, $videoId); |
87 | 87 | |
88 | - if (! $show) { |
|
88 | + if (!$show) { |
|
89 | 89 | return redirect()->to('myshows'); |
90 | 90 | } |
91 | 91 | |
92 | 92 | if ($action === 'doedit') { |
93 | - $category = ($request->has('category') && \is_array($request->input('category')) && ! empty($request->input('category'))) ? $request->input('category') : []; |
|
93 | + $category = ($request->has('category') && \is_array($request->input('category')) && !empty($request->input('category'))) ? $request->input('category') : []; |
|
94 | 94 | UserSerie::updateShow($this->userdata->id, $videoId, $category); |
95 | 95 | if ($request->has('from')) { |
96 | 96 | return redirect()->to($request->input('from')); |
@@ -136,9 +136,9 @@ discard block |
||
136 | 136 | if ($shows !== null) { |
137 | 137 | foreach ($shows as $showk => $show) { |
138 | 138 | $showcats = explode('|', $show['categories']); |
139 | - if (\is_array($showcats) && ! empty($showcats)) { |
|
139 | + if (\is_array($showcats) && !empty($showcats)) { |
|
140 | 140 | foreach ($showcats as $scat) { |
141 | - if (! empty($scat)) { |
|
141 | + if (!empty($scat)) { |
|
142 | 142 | $catArr[] = $categories[$scat]; |
143 | 143 | } |
144 | 144 | } |
@@ -57,7 +57,7 @@ |
||
57 | 57 | |
58 | 58 | if ($payload['type'] === 'InvoiceSettled') { |
59 | 59 | // Check if we have the invoice_id in payments table and if we do, update the user account |
60 | - $checkOrder = Payment::query()->where('invoice_id', '=', $payload['invoiceId'])->where('payment_status', '=', 'Settled')->where(function ($query) { |
|
60 | + $checkOrder = Payment::query()->where('invoice_id', '=', $payload['invoiceId'])->where('payment_status', '=', 'Settled')->where(function($query) { |
|
61 | 61 | return $query->where('invoice_status', 'Pending')->orWhereNull('invoice_status'); |
62 | 62 | })->first(); |
63 | 63 | if ($checkOrder !== null) { |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | } |
35 | 35 | |
36 | 36 | $res = User::getByRssToken($request->input('r')); |
37 | - if (! $res) { |
|
37 | + if (!$res) { |
|
38 | 38 | return Utility::showApiError(100); |
39 | 39 | } |
40 | 40 | |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | return Utility::showApiError(501); |
53 | 53 | } |
54 | 54 | |
55 | - if (! $request->input('id')) { |
|
55 | + if (!$request->input('id')) { |
|
56 | 56 | return Utility::showApiError(200, 'Parameter id is required'); |
57 | 57 | } |
58 | 58 | |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | |
87 | 87 | $nzbPath = (new NZB)->getNZBPath($request->input('id')); |
88 | 88 | |
89 | - if (! File::exists($nzbPath)) { |
|
89 | + if (!File::exists($nzbPath)) { |
|
90 | 90 | return Utility::showApiError(300, 'NZB file not found!'); |
91 | 91 | } |
92 | 92 | |
@@ -113,9 +113,9 @@ discard block |
||
113 | 113 | 'X-DNZB-Details' => url('/details/'.$request->input('id')), |
114 | 114 | ]; |
115 | 115 | |
116 | - if (! empty($relData['imdbid']) && $relData['imdbid'] > 0) { |
|
116 | + if (!empty($relData['imdbid']) && $relData['imdbid'] > 0) { |
|
117 | 117 | $headers['X-DNZB-MoreInfo'] = 'http://www.imdb.com/title/tt'.$relData['imdbid']; |
118 | - } elseif (! empty($relData['tvdb']) && $relData['tvdb'] > 0) { |
|
118 | + } elseif (!empty($relData['tvdb']) && $relData['tvdb'] > 0) { |
|
119 | 119 | $headers['X-DNZB-MoreInfo'] = 'http://www.thetvdb.com/?tab=series&id='.$relData['tvdb']; |
120 | 120 | } |
121 | 121 | |
@@ -130,15 +130,15 @@ discard block |
||
130 | 130 | $cleanName = str_replace([',', ' ', '/', '\\'], '_', $relData['searchname']); |
131 | 131 | |
132 | 132 | // Stream the file content |
133 | - return response()->streamDownload(function () use ($nzbPath) { |
|
133 | + return response()->streamDownload(function() use ($nzbPath) { |
|
134 | 134 | $bufferSize = 1000000; // 1 MB chunks |
135 | 135 | $gz = gzopen($nzbPath, 'rb'); |
136 | 136 | |
137 | - if (! $gz) { |
|
137 | + if (!$gz) { |
|
138 | 138 | throw new RuntimeException('Failed to open gzipped file for streaming.'); |
139 | 139 | } |
140 | 140 | |
141 | - while (! gzeof($gz)) { |
|
141 | + while (!gzeof($gz)) { |
|
142 | 142 | echo gzread($gz, $bufferSize); |
143 | 143 | flush(); // Ensure chunks are sent immediately |
144 | 144 | } |
@@ -117,7 +117,7 @@ discard block |
||
117 | 117 | $releases = new Releases; |
118 | 118 | |
119 | 119 | // Set Query Parameters based on Request objects |
120 | - $outputXML = ! ($request->has('o') && $request->input('o') === 'json'); |
|
120 | + $outputXML = !($request->has('o') && $request->input('o') === 'json'); |
|
121 | 121 | $minSize = $request->has('minsize') && $request->input('minsize') > 0 ? $request->input('minsize') : 0; |
122 | 122 | $offset = $this->offset($request); |
123 | 123 | |
@@ -258,7 +258,7 @@ discard block |
||
258 | 258 | |
259 | 259 | $this->addCoverURL( |
260 | 260 | $relData, |
261 | - function ($release) { |
|
261 | + function($release) { |
|
262 | 262 | return Utility::getCoverURL(['type' => 'movies', 'id' => $release->imdbid]); |
263 | 263 | } |
264 | 264 | ); |
@@ -300,9 +300,9 @@ discard block |
||
300 | 300 | |
301 | 301 | if ($rel && $rel->isNotEmpty()) { |
302 | 302 | $data = ReleaseNfo::getReleaseNfo($rel->id); |
303 | - if (! empty($data)) { |
|
303 | + if (!empty($data)) { |
|
304 | 304 | if ($request->has('o') && $request->input('o') === 'file') { |
305 | - return response()->streamDownload(function () use ($data) { |
|
305 | + return response()->streamDownload(function() use ($data) { |
|
306 | 306 | echo $data['nfo']; |
307 | 307 | }, $rel['searchname'].'.nfo', ['Content-type:' => 'application/octet-stream']); |
308 | 308 | } |
@@ -344,7 +344,7 @@ discard block |
||
344 | 344 | header('Content-type: text/xml'); |
345 | 345 | } else { |
346 | 346 | // JSON encode the XMLWriter response |
347 | - $response = json_encode(xml_to_array($response), JSON_THROW_ON_ERROR | JSON_PRETTY_PRINT + JSON_UNESCAPED_SLASHES); |
|
347 | + $response = json_encode(xml_to_array($response), JSON_THROW_ON_ERROR|JSON_PRETTY_PRINT + JSON_UNESCAPED_SLASHES); |
|
348 | 348 | header('Content-type: application/json'); |
349 | 349 | } |
350 | 350 | if ($response === false) { |
@@ -387,7 +387,7 @@ discard block |
||
387 | 387 | 'search' => ['available' => 'yes', 'supportedParams' => 'q'], |
388 | 388 | 'tv-search' => ['available' => 'yes', 'supportedParams' => 'q,vid,tvdbid,traktid,rid,tvmazeid,imdbid,tmdbid,season,ep'], |
389 | 389 | 'movie-search' => ['available' => 'yes', 'supportedParams' => 'q,imdbid, tmdbid, traktid'], |
390 | - 'audio-search' => ['available' => 'no', 'supportedParams' => ''], |
|
390 | + 'audio-search' => ['available' => 'no', 'supportedParams' => ''], |
|
391 | 391 | ], |
392 | 392 | 'categories' => $this->type === 'caps' |
393 | 393 | ? Category::getForMenu() |
@@ -402,9 +402,9 @@ discard block |
||
402 | 402 | { |
403 | 403 | $maxAge = -1; |
404 | 404 | if ($request->has('maxage')) { |
405 | - if (! $request->filled('maxage')) { |
|
405 | + if (!$request->filled('maxage')) { |
|
406 | 406 | return Utility::showApiError(201, 'Incorrect parameter (maxage must not be empty)'); |
407 | - } elseif (! is_numeric($request->input('maxage'))) { |
|
407 | + } elseif (!is_numeric($request->input('maxage'))) { |
|
408 | 408 | return Utility::showApiError(201, 'Incorrect parameter (maxage must be numeric)'); |
409 | 409 | } else { |
410 | 410 | $maxAge = (int) $request->input('maxage'); |
@@ -423,7 +423,7 @@ discard block |
||
423 | 423 | if ($request->has('cat')) { |
424 | 424 | $categoryIDs = urldecode($request->input('cat')); |
425 | 425 | // Append Web-DL category ID if HD present for SickBeard / Sonarr compatibility. |
426 | - if (str_contains($categoryIDs, (string) Category::TV_HD) && ! str_contains($categoryIDs, (string) Category::TV_WEBDL) && (int) Settings::settingValue('catwebdl') === 0) { |
|
426 | + if (str_contains($categoryIDs, (string) Category::TV_HD) && !str_contains($categoryIDs, (string) Category::TV_WEBDL) && (int) Settings::settingValue('catwebdl') === 0) { |
|
427 | 427 | $categoryIDs .= (','.Category::TV_WEBDL); |
428 | 428 | } |
429 | 429 | $categoryID = explode(',', $categoryIDs); |
@@ -53,8 +53,8 @@ discard block |
||
53 | 53 | } |
54 | 54 | } |
55 | 55 | |
56 | - if (! $yesMode) { |
|
57 | - if (! $this->confirm('Are you sure you want to install NNTmux? This will wipe your database!!')) { |
|
56 | + if (!$yesMode) { |
|
57 | + if (!$this->confirm('Are you sure you want to install NNTmux? This will wipe your database!!')) { |
|
58 | 58 | $this->info('Installation aborted by user.'); |
59 | 59 | exit; |
60 | 60 | } |
@@ -97,33 +97,33 @@ discard block |
||
97 | 97 | $zip_path = config('nntmux_settings.tmp_unzip_path'); |
98 | 98 | $unrar_path = config('nntmux.tmp_unrar_path'); |
99 | 99 | |
100 | - if (! File::isWritable($nzb_path)) { |
|
100 | + if (!File::isWritable($nzb_path)) { |
|
101 | 101 | $this->warn($nzb_path.' is not writable. Please fix folder permissions'); |
102 | 102 | |
103 | 103 | return false; |
104 | 104 | } |
105 | 105 | |
106 | - if (! file_exists($unrar_path)) { |
|
106 | + if (!file_exists($unrar_path)) { |
|
107 | 107 | $this->info('Creating missing '.$unrar_path.' folder'); |
108 | - if (! @File::makeDirectory($unrar_path) && ! File::isDirectory($unrar_path)) { |
|
108 | + if (!@File::makeDirectory($unrar_path) && !File::isDirectory($unrar_path)) { |
|
109 | 109 | throw new \RuntimeException('Unable to create '.$unrar_path.' folder'); |
110 | 110 | } |
111 | 111 | $this->info('Folder '.$unrar_path.' successfully created'); |
112 | 112 | } |
113 | 113 | |
114 | - if (! is_writable($unrar_path)) { |
|
114 | + if (!is_writable($unrar_path)) { |
|
115 | 115 | $this->warn($unrar_path.' is not writable. Please fix folder permissions'); |
116 | 116 | |
117 | 117 | return false; |
118 | 118 | } |
119 | 119 | |
120 | - if (! File::isWritable($covers_path)) { |
|
120 | + if (!File::isWritable($covers_path)) { |
|
121 | 121 | $this->warn($covers_path.' is not writable. Please fix folder permissions'); |
122 | 122 | |
123 | 123 | return false; |
124 | 124 | } |
125 | 125 | |
126 | - if (! File::isWritable($zip_path)) { |
|
126 | + if (!File::isWritable($zip_path)) { |
|
127 | 127 | $this->warn($zip_path.' is not writable. Please fix folder permissions'); |
128 | 128 | |
129 | 129 | return false; |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | if (empty($email) && empty($rssToken)) { |
44 | 44 | app('smarty.view')->assign('error', 'Missing parameter (email and/or apikey) to send password reset'); |
45 | 45 | } else { |
46 | - if (config('captcha.enabled') === true && (! empty(config('captcha.secret')) && ! empty(config('captcha.sitekey')))) { |
|
46 | + if (config('captcha.enabled') === true && (!empty(config('captcha.secret')) && !empty(config('captcha.sitekey')))) { |
|
47 | 47 | $validate = Validator::make($request->all(), [ |
48 | 48 | 'g-recaptcha-response' => 'required|captcha', |
49 | 49 | ]); |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | // |
55 | 55 | // Check users exists and send an email |
56 | 56 | // |
57 | - $ret = ! empty($rssToken) ? User::getByRssToken($rssToken) : User::getByEmail($email); |
|
57 | + $ret = !empty($rssToken) ? User::getByRssToken($rssToken) : User::getByEmail($email); |
|
58 | 58 | if ($ret === null) { |
59 | 59 | app('smarty.view')->assign('error', 'The email or apikey are not recognised.'); |
60 | 60 | } else { |