Passed
Push — master ( 059b28...26ef6b )
by Darko
13:18 queued 07:30
created
app/Models/Predb.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -196,7 +196,7 @@
 block discarded – undo
196 196
             return $predb;
197 197
         }
198 198
         $sql = self::query()->leftJoin('releases', 'releases.predb_id', '=', 'predb.id')->orderByDesc('predb.predate');
199
-        if (! empty($search)) {
199
+        if (!empty($search)) {
200 200
             if (config('nntmux.elasticsearch_enabled') === true) {
201 201
                 $ids = (new ElasticSearchSiteSearch)->predbIndexSearch($search);
202 202
             } else {
Please login to merge, or discard this patch.
app/Console/Commands/NntmuxPopulateSearchIndexes.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
         $manticore->truncateRTIndex(Arr::wrap('releases_rt'));
65 65
         $data = [];
66 66
         $total = Release::count();
67
-        if (! $total) {
67
+        if (!$total) {
68 68
             $this->warn('Releases table is empty. Nothing to do.');
69 69
             exit();
70 70
         }
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
             ->select(['releases.id', 'releases.name', 'releases.searchname', 'releases.fromname', 'releases.categories_id'])
85 85
             ->selectRaw('IFNULL(GROUP_CONCAT(release_files.name SEPARATOR " "),"") filename')
86 86
             ->groupBy('id')
87
-            ->chunk($max, function ($releases) use ($manticore, $bar, $data) {
87
+            ->chunk($max, function($releases) use ($manticore, $bar, $data) {
88 88
                 foreach ($releases as $r) {
89 89
                     $data[] = [
90 90
                         'id' => $r->id,
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
         $data = [];
113 113
 
114 114
         $total = Predb::count();
115
-        if (! $total) {
115
+        if (!$total) {
116 116
             $this->warn('PreDB table is empty. Nothing to do.');
117 117
             exit();
118 118
         }
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
             ->select(['id', 'title', 'filename', 'source'])
130 130
             ->groupBy('id')
131 131
             ->orderBy('id')
132
-            ->chunk($max, function ($pre) use ($manticore, $bar, $data) {
132
+            ->chunk($max, function($pre) use ($manticore, $bar, $data) {
133 133
                 foreach ($pre as $p) {
134 134
                     $data[] = [
135 135
                         'id' => $p->id,
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
         $data = ['body' => []];
152 152
         $elastic = new ElasticSearchSiteSearch;
153 153
         $total = Release::count();
154
-        if (! $total) {
154
+        if (!$total) {
155 155
             $this->warn('Could not get database information for releases table.');
156 156
             exit();
157 157
         }
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
             ->select(['releases.id', 'releases.name', 'releases.searchname', 'releases.fromname', 'releases.categories_id', 'releases.postdate'])
170 170
             ->selectRaw('IFNULL(GROUP_CONCAT(release_files.name SEPARATOR " "),"") filename')
171 171
             ->groupBy('id')
172
-            ->chunk($max, function ($releases) use ($bar, $data) {
172
+            ->chunk($max, function($releases) use ($bar, $data) {
173 173
                 foreach ($releases as $r) {
174 174
                     $searchName = str_replace(['.', '-'], ' ', $r->searchname);
175 175
                     $data['body'][] = [
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
         $data = ['body' => []];
203 203
         $elastic = new ElasticSearchSiteSearch;
204 204
         $total = Predb::count();
205
-        if (! $total) {
205
+        if (!$total) {
206 206
             $this->warn('Could not get database information for predb table.');
207 207
             exit();
208 208
         }
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
             ->select(['id', 'title', 'filename', 'source'])
220 220
             ->groupBy('id')
221 221
             ->orderBy('id')
222
-            ->chunk($max, function ($pre) use ($bar, $data) {
222
+            ->chunk($max, function($pre) use ($bar, $data) {
223 223
                 foreach ($pre as $p) {
224 224
                     $data['body'][] = [
225 225
                         'index' => [
Please login to merge, or discard this patch.
app/Console/Commands/CleanNZB.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
     public function handle(): void
38 38
     {
39 39
         // Check if any options are false
40
-        if (! $this->option('notindb') && ! $this->option('notondisk')) {
40
+        if (!$this->option('notindb') && !$this->option('notondisk')) {
41 41
             $this->error('You must specify at least one option. See: --help');
42 42
             exit();
43 43
         }
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
             $guid = stristr($filePath->getFilename(), '.nzb.gz', true);
64 64
             if (File::isFile($filePath) && $guid) {
65 65
                 // If NZB file guid is not present in DB delete the file from disk
66
-                if (! $releases->whereGuid($guid)->exists()) {
66
+                if (!$releases->whereGuid($guid)->exists()) {
67 67
                     if ($delete) {
68 68
                         File::delete($filePath);
69 69
                     }
@@ -88,11 +88,11 @@  discard block
 block discarded – undo
88 88
         $total = Release::count();
89 89
         $this->alert("Total releases to check: $total");
90 90
 
91
-        Release::where('nzbstatus', 1)->chunkById((int) $this->option('chunksize'), function (Collection $releases) use ($delete, &$checked, &$deleted, $nzb, $rel) {
91
+        Release::where('nzbstatus', 1)->chunkById((int) $this->option('chunksize'), function(Collection $releases) use ($delete, &$checked, &$deleted, $nzb, $rel) {
92 92
             echo 'Total done: '.$checked."\r";
93 93
             foreach ($releases as $r) {
94 94
 
95
-                if (! $nzb->NZBPath($r->guid)) {
95
+                if (!$nzb->NZBPath($r->guid)) {
96 96
                     if ($delete) {
97 97
                         $rel->deleteSingle(['g' => $r->guid, 'i' => $r->id], $nzb, new ReleaseImage);
98 98
                     }
Please login to merge, or discard this patch.
app/Http/Controllers/GetNzbController.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 
@@ -110,9 +110,9 @@  discard block
 block discarded – undo
110 110
             'X-DNZB-Details' => url('/').'/details/'.$request->input('id'),
111 111
         ];
112 112
 
113
-        if (! empty($relData['imdbid']) && $relData['imdbid'] > 0) {
113
+        if (!empty($relData['imdbid']) && $relData['imdbid'] > 0) {
114 114
             $headers += ['X-DNZB-MoreInfo' => 'http://www.imdb.com/title/tt'.$relData['imdbid']];
115
-        } elseif (! empty($relData['tvdb']) && $relData['tvdb'] > 0) {
115
+        } elseif (!empty($relData['tvdb']) && $relData['tvdb'] > 0) {
116 116
             $headers += ['X-DNZB-MoreInfo' => 'http://www.thetvdb.com/?tab=series&id='.$relData['tvdb']];
117 117
         }
118 118
 
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
 
126 126
         $cleanName = str_replace([',', ' ', '/', '\\'], '_', $relData['searchname']);
127 127
 
128
-        return response()->streamDownload(function () use ($nzbPath) {
128
+        return response()->streamDownload(function() use ($nzbPath) {
129 129
             echo $nzbPath;
130 130
         }, $cleanName.'.nzb', $headers);
131 131
     }
Please login to merge, or discard this patch.
routes/web.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -83,18 +83,18 @@  discard block
 block discarded – undo
83 83
 Route::post('login', [LoginController::class, 'login'])->name('login.post');
84 84
 Route::match(['GET', 'POST'], 'logout', [LoginController::class, 'logout'])->name('logout');
85 85
 
86
-Route::middleware('isVerified')->group(function () {
86
+Route::middleware('isVerified')->group(function() {
87 87
     Route::match(['GET', 'POST'], 'resetpassword', [ResetPasswordController::class, 'reset'])->name('resetpassword');
88 88
     Route::match(['GET', 'POST'], 'profile', [ProfileController::class, 'show'])->name('profile');
89 89
 
90
-    Route::prefix('browse')->group(function () {
90
+    Route::prefix('browse')->group(function() {
91 91
         Route::match(['GET', 'POST'], 'tags', [BrowseController::class, 'tags'])->name('tags');
92 92
         Route::match(['GET', 'POST'], 'group', [BrowseController::class, 'group'])->name('group');
93 93
         Route::match(['GET', 'POST'], 'All', [BrowseController::class, 'index'])->name('All');
94 94
         Route::match(['GET', 'POST'], '{parentCategory}/{id?}', [BrowseController::class, 'show'])->middleware('clearance')->name('browse');
95 95
     });
96 96
 
97
-    Route::prefix('cart')->group(function () {
97
+    Route::prefix('cart')->group(function() {
98 98
         Route::match(['GET', 'POST'], 'index', [CartController::class, 'index'])->name('cart.index');
99 99
         Route::match(['GET', 'POST'], 'add', [CartController::class, 'store'])->name('cart.add');
100 100
         Route::match(['GET', 'POST'], 'delete/{id}', [CartController::class, 'destroy'])->name('cart.delete');
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
     Route::match(['GET', 'POST'], 'content', [ContentController::class, 'show'])->name('content');
111 111
     Route::match(['GET', 'POST'], 'failed', [FailedReleasesController::class, 'failed'])->name('failed');
112 112
 
113
-    Route::middleware('clearance')->group(function () {
113
+    Route::middleware('clearance')->group(function() {
114 114
         Route::match(['GET', 'POST'], 'Games', [GamesController::class, 'show'])->name('Games');
115 115
         Route::match(['GET', 'POST'], 'Movies/{id?}', [MovieController::class, 'showMovies'])->name('Movies');
116 116
         Route::match(['GET', 'POST'], 'movie', [MovieController::class, 'showMovies'])->name('movie');
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
     Route::post('disable2fa', [PasswordSecurityController::class, 'disable2fa'])->name('disable2fa');
143 143
 });
144 144
 
145
-Route::middleware('role:Admin', '2fa')->prefix('admin')->group(function () {
145
+Route::middleware('role:Admin', '2fa')->prefix('admin')->group(function() {
146 146
     Route::match(['GET', 'POST'], 'index', [AdminPageController::class, 'index'])->name('admin.index');
147 147
     Route::match(['GET', 'POST'], 'anidb-delete/{id}', [AdminAnidbController::class, 'destroy'])->name('admin.anidb-delete');
148 148
     Route::match(['GET', 'POST'], 'anidb-edit/{id}', [AdminAnidbController::class, 'edit'])->name('admin.anidb-edit');
@@ -205,11 +205,11 @@  discard block
 block discarded – undo
205 205
 
206 206
 });
207 207
 
208
-Route::middleware('role_or_permission:Admin|Moderator|edit release')->prefix('admin')->group(function () {
208
+Route::middleware('role_or_permission:Admin|Moderator|edit release')->prefix('admin')->group(function() {
209 209
     Route::match(['GET', 'POST'], 'release-edit', [AdminReleasesController::class, 'edit'])->name('admin.release-edit');
210 210
 });
211 211
 
212
-Route::post('2faVerify', function () {
212
+Route::post('2faVerify', function() {
213 213
     return redirect()->to(URL()->previous());
214 214
 })->name('2faVerify')->middleware('2fa');
215 215
 
Please login to merge, or discard this patch.
Blacklight/Movie.php 1 patch
Spacing   +69 added lines, -69 removed lines patch added patch discarded remove patch
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
         $this->config->language = $this->lookuplanguage;
133 133
         $this->config->throwHttpExceptions = false;
134 134
         $cacheDir = storage_path('framework/cache/imdb_cache');
135
-        if (! File::isDirectory($cacheDir)) {
135
+        if (!File::isDirectory($cacheDir)) {
136 136
             File::makeDirectory($cacheDir, 0777, false, true);
137 137
         }
138 138
         $this->config->cachedir = $cacheDir;
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
 					ORDER BY %s %s %s",
177 177
                 $this->showPasswords,
178 178
                 $this->getBrowseBy(),
179
-                (! empty($catsrch) ? $catsrch : ''),
179
+                (!empty($catsrch) ? $catsrch : ''),
180 180
                 (
181 181
                     $maxAge > 0
182 182
                     ? 'AND r.postdate > NOW() - INTERVAL '.$maxAge.'DAY '
@@ -196,7 +196,7 @@  discard block
 block discarded – undo
196 196
             Cache::put(md5($moviesSql.$page), $movies, $expiresAt);
197 197
         }
198 198
         $movieIDs = $releaseIDs = [];
199
-        if (! empty($movies['result'])) {
199
+        if (!empty($movies['result'])) {
200 200
             foreach ($movies['result'] as $movie => $id) {
201 201
                 $movieIDs[] = $id->imdbid;
202 202
                 $releaseIDs[] = $id->grp_release_id;
@@ -235,14 +235,14 @@  discard block
 block discarded – undo
235 235
 			AND r.id IN (%s) %s
236 236
 			GROUP BY m.imdbid
237 237
 			ORDER BY %s %s",
238
-            (\is_array($movieIDs) && ! empty($movieIDs) ? implode(',', $movieIDs) : -1),
239
-            (\is_array($releaseIDs) && ! empty($releaseIDs) ? implode(',', $releaseIDs) : -1),
240
-            (! empty($catsrch) ? $catsrch : ''),
238
+            (\is_array($movieIDs) && !empty($movieIDs) ? implode(',', $movieIDs) : -1),
239
+            (\is_array($releaseIDs) && !empty($releaseIDs) ? implode(',', $releaseIDs) : -1),
240
+            (!empty($catsrch) ? $catsrch : ''),
241 241
             $order[0],
242 242
             $order[1]
243 243
         );
244 244
 
245
-        return Cache::flexible(md5($sql.$page), [config('nntmux.cache_expiry_medium'), config('nntmux.cache_expiry_long')], function () use ($sql, $movies) {
245
+        return Cache::flexible(md5($sql.$page), [config('nntmux.cache_expiry_medium'), config('nntmux.cache_expiry_long')], function() use ($sql, $movies) {
246 246
             $return = Release::fromQuery($sql);
247 247
             if (\count($return) > 0) {
248 248
                 $return[0]->_totalcount = $movies['total'][0]->total ?? 0;
@@ -282,7 +282,7 @@  discard block
 block discarded – undo
282 282
         $browseBy = ' ';
283 283
         $browseByArr = ['title', 'director', 'actors', 'genre', 'rating', 'year', 'imdb'];
284 284
         foreach ($browseByArr as $bb) {
285
-            if (request()->has($bb) && ! empty(request()->input($bb))) {
285
+            if (request()->has($bb) && !empty(request()->input($bb))) {
286 286
                 $bbv = stripslashes(request()->input($bb));
287 287
                 if ($bb === 'rating') {
288 288
                     $bbv .= '.';
@@ -315,7 +315,7 @@  discard block
 block discarded – undo
315 315
 
316 316
         if ($this->traktcheck !== null) {
317 317
             $data = $this->traktTv->client->movieSummary('tt'.$imdbId, 'full');
318
-            if (($data !== false) && ! empty($data['trailer'])) {
318
+            if (($data !== false) && !empty($data['trailer'])) {
319 319
                 return $data['trailer'];
320 320
             }
321 321
         }
@@ -341,7 +341,7 @@  discard block
 block discarded – undo
341 341
             return false;
342 342
         }
343 343
 
344
-        if (! empty($data['trailer'])) {
344
+        if (!empty($data['trailer'])) {
345 345
             $data['trailer'] = str_ireplace(
346 346
                 ['watch?v=', 'http://'],
347 347
                 ['embed/', 'https://'],
@@ -375,17 +375,17 @@  discard block
 block discarded – undo
375 375
      */
376 376
     private function checkTraktValue($value)
377 377
     {
378
-        if (\is_array($value) && ! empty($value)) {
378
+        if (\is_array($value) && !empty($value)) {
379 379
             $temp = '';
380 380
             foreach ($value as $val) {
381
-                if (! \is_array($val) && ! \is_object($val)) {
381
+                if (!\is_array($val) && !\is_object($val)) {
382 382
                     $temp .= $val;
383 383
                 }
384 384
             }
385 385
             $value = $temp;
386 386
         }
387 387
 
388
-        return ! empty($value) ? $value : '';
388
+        return !empty($value) ? $value : '';
389 389
     }
390 390
 
391 391
     /**
@@ -406,7 +406,7 @@  discard block
 block discarded – undo
406 406
      */
407 407
     public function update(array $values): bool
408 408
     {
409
-        if (! \count($values)) {
409
+        if (!\count($values)) {
410 410
             return false;
411 411
         }
412 412
 
@@ -414,7 +414,7 @@  discard block
 block discarded – undo
414 414
         $onDuplicateKey = ['created_at' => now()];
415 415
         $found = 0;
416 416
         foreach ($values as $key => $value) {
417
-            if (! empty($value)) {
417
+            if (!empty($value)) {
418 418
                 $found++;
419 419
                 if (\in_array($key, ['genre', 'language'], false)) {
420 420
                     $value = substr($value, 0, 64);
@@ -423,7 +423,7 @@  discard block
 block discarded – undo
423 423
                 $onDuplicateKey += [$key => $value];
424 424
             }
425 425
         }
426
-        if (! $found) {
426
+        if (!$found) {
427 427
             return false;
428 428
         }
429 429
         foreach ($query as $key => $value) {
@@ -440,19 +440,19 @@  discard block
 block discarded – undo
440 440
      */
441 441
     protected function setVariables(string|array $variable1, string|array $variable2, string|array $variable3, string|array $variable4, string|array $variable5)
442 442
     {
443
-        if (! empty($variable1)) {
443
+        if (!empty($variable1)) {
444 444
             return $variable1;
445 445
         }
446
-        if (! empty($variable2)) {
446
+        if (!empty($variable2)) {
447 447
             return $variable2;
448 448
         }
449
-        if (! empty($variable3)) {
449
+        if (!empty($variable3)) {
450 450
             return $variable3;
451 451
         }
452
-        if (! empty($variable4)) {
452
+        if (!empty($variable4)) {
453 453
             return $variable4;
454 454
         }
455
-        if (! empty($variable5)) {
455
+        if (!empty($variable5)) {
456 456
             return $variable5;
457 457
         }
458 458
 
@@ -487,7 +487,7 @@  discard block
 block discarded – undo
487 487
 
488 488
         $iTunes = $this->fetchItunesMovieProperties($this->currentTitle);
489 489
 
490
-        if (! $imdb && ! $tmdb && ! $trakt && ! $omdb && empty($iTunes)) {
490
+        if (!$imdb && !$tmdb && !$trakt && !$omdb && empty($iTunes)) {
491 491
             return false;
492 492
         }
493 493
 
@@ -500,36 +500,36 @@  discard block
 block discarded – undo
500 500
         $mov['type'] = $mov['director'] = $mov['actors'] = $mov['language'] = '';
501 501
 
502 502
         $mov['imdbid'] = $imdbId;
503
-        $mov['tmdbid'] = (! isset($tmdb['tmdbid']) || $tmdb['tmdbid'] === '') ? 0 : $tmdb['tmdbid'];
504
-        $mov['traktid'] = (! isset($trakt['id']) || $trakt['id'] === '') ? 0 : $trakt['id'];
503
+        $mov['tmdbid'] = (!isset($tmdb['tmdbid']) || $tmdb['tmdbid'] === '') ? 0 : $tmdb['tmdbid'];
504
+        $mov['traktid'] = (!isset($trakt['id']) || $trakt['id'] === '') ? 0 : $trakt['id'];
505 505
 
506 506
         // Prefer Fanart.tv cover over TMDB,TMDB over IMDB,IMDB over OMDB and OMDB over iTunes.
507
-        if (! empty($fanart['cover'])) {
507
+        if (!empty($fanart['cover'])) {
508 508
             $mov['cover'] = $this->releaseImage->saveImage($imdbId.'-cover', $fanart['cover'], $this->imgSavePath);
509
-        } elseif (! empty($tmdb['cover'])) {
509
+        } elseif (!empty($tmdb['cover'])) {
510 510
             $mov['cover'] = $this->releaseImage->saveImage($imdbId.'-cover', $tmdb['cover'], $this->imgSavePath);
511
-        } elseif (! empty($imdb['cover'])) {
511
+        } elseif (!empty($imdb['cover'])) {
512 512
             $mov['cover'] = $this->releaseImage->saveImage($imdbId.'-cover', $imdb['cover'], $this->imgSavePath);
513
-        } elseif (! empty($omdb['cover'])) {
513
+        } elseif (!empty($omdb['cover'])) {
514 514
             $mov['cover'] = $this->releaseImage->saveImage($imdbId.'-cover', $omdb['cover'], $this->imgSavePath);
515
-        } elseif (! empty($iTunes['cover'])) {
515
+        } elseif (!empty($iTunes['cover'])) {
516 516
             $mov['cover'] = $this->releaseImage->saveImage($imdbId.'-cover', $iTunes['cover'], $this->imgSavePath);
517 517
         }
518 518
 
519 519
         // Backdrops.
520
-        if (! empty($fanart['backdrop'])) {
520
+        if (!empty($fanart['backdrop'])) {
521 521
             $mov['backdrop'] = $this->releaseImage->saveImage($imdbId.'-backdrop', $fanart['backdrop'], $this->imgSavePath, 1920, 1024);
522
-        } elseif (! empty($tmdb['backdrop'])) {
522
+        } elseif (!empty($tmdb['backdrop'])) {
523 523
             $mov['backdrop'] = $this->releaseImage->saveImage($imdbId.'-backdrop', $tmdb['backdrop'], $this->imgSavePath, 1920, 1024);
524 524
         }
525 525
 
526 526
         // Banner
527
-        if (! empty($fanart['banner'])) {
527
+        if (!empty($fanart['banner'])) {
528 528
             $mov['banner'] = $this->releaseImage->saveImage($imdbId.'-banner', $fanart['banner'], $this->imgSavePath);
529 529
         }
530 530
 
531 531
         // RottenTomatoes rating from OmdbAPI
532
-        if ($omdb !== false && ! empty($omdb['rtRating'])) {
532
+        if ($omdb !== false && !empty($omdb['rtRating'])) {
533 533
             $mov['rtrating'] = $omdb['rtRating'];
534 534
         }
535 535
 
@@ -540,29 +540,29 @@  discard block
 block discarded – undo
540 540
         $mov['year'] = $this->setVariables($imdb['year'] ?? '', $tmdb['year'] ?? '', $trakt['year'] ?? '', $omdb['year'] ?? '', $iTunes['year'] ?? '');
541 541
         $mov['genre'] = $this->setVariables($imdb['genre'] ?? '', $tmdb['genre'] ?? '', $trakt['genres'] ?? '', $omdb['genre'] ?? '', $iTunes['genre'] ?? '');
542 542
 
543
-        if (! empty($imdb['type'])) {
543
+        if (!empty($imdb['type'])) {
544 544
             $mov['type'] = $imdb['type'];
545 545
         }
546 546
 
547
-        if (! empty($imdb['director'])) {
547
+        if (!empty($imdb['director'])) {
548 548
             $mov['director'] = \is_array($imdb['director']) ? implode(', ', array_unique($imdb['director'])) : $imdb['director'];
549
-        } elseif (! empty($omdb['director'])) {
549
+        } elseif (!empty($omdb['director'])) {
550 550
             $mov['director'] = \is_array($omdb['director']) ? implode(', ', array_unique($omdb['director'])) : $omdb['director'];
551
-        } elseif (! empty($tmdb['director'])) {
551
+        } elseif (!empty($tmdb['director'])) {
552 552
             $mov['director'] = \is_array($tmdb['director']) ? implode(', ', array_unique($tmdb['director'])) : $tmdb['director'];
553 553
         }
554 554
 
555
-        if (! empty($imdb['actors'])) {
555
+        if (!empty($imdb['actors'])) {
556 556
             $mov['actors'] = \is_array($imdb['actors']) ? implode(', ', array_unique($imdb['actors'])) : $imdb['actors'];
557
-        } elseif (! empty($omdb['actors'])) {
557
+        } elseif (!empty($omdb['actors'])) {
558 558
             $mov['actors'] = \is_array($omdb['actors']) ? implode(', ', array_unique($omdb['actors'])) : $omdb['actors'];
559
-        } elseif (! empty($tmdb['actors'])) {
559
+        } elseif (!empty($tmdb['actors'])) {
560 560
             $mov['actors'] = \is_array($tmdb['actors']) ? implode(', ', array_unique($tmdb['actors'])) : $tmdb['actors'];
561 561
         }
562 562
 
563
-        if (! empty($imdb['language'])) {
563
+        if (!empty($imdb['language'])) {
564 564
             $mov['language'] = \is_array($imdb['language']) ? implode(', ', array_unique($imdb['language'])) : $imdb['language'];
565
-        } elseif (! empty($omdb['language']) && ! is_bool($omdb['language'])) {
565
+        } elseif (!empty($omdb['language']) && !is_bool($omdb['language'])) {
566 566
             $mov['language'] = \is_array($omdb['language']) ? implode(', ', array_unique($omdb['language'])) : $omdb['language'];
567 567
         }
568 568
 
@@ -620,20 +620,20 @@  discard block
 block discarded – undo
620 620
         if ($this->fanartapikey !== null) {
621 621
             $art = $this->fanart->getMovieFanArt('tt'.$imdbId);
622 622
 
623
-            if (! empty($art)) {
623
+            if (!empty($art)) {
624 624
                 if (isset($art['status']) && $art['status'] === 'error') {
625 625
                     return false;
626 626
                 }
627 627
                 $ret = [];
628
-                if (! empty($art['moviebackground'][0]['url'])) {
628
+                if (!empty($art['moviebackground'][0]['url'])) {
629 629
                     $ret['backdrop'] = $art['moviebackground'][0]['url'];
630
-                } elseif (! empty($art['moviethumb'][0]['url'])) {
630
+                } elseif (!empty($art['moviethumb'][0]['url'])) {
631 631
                     $ret['backdrop'] = $art['moviethumb'][0]['url'];
632 632
                 }
633
-                if (! empty($art['movieposter'][0]['url'])) {
633
+                if (!empty($art['movieposter'][0]['url'])) {
634 634
                     $ret['cover'] = $art['movieposter'][0]['url'];
635 635
                 }
636
-                if (! empty($art['moviebanner'][0]['url'])) {
636
+                if (!empty($art['moviebanner'][0]['url'])) {
637 637
                     $ret['banner'] = $art['moviebanner'][0]['url'];
638 638
                 }
639 639
 
@@ -670,7 +670,7 @@  discard block
 block discarded – undo
670 670
             return false;
671 671
         }
672 672
 
673
-        if (! empty($tmdbLookup)) {
673
+        if (!empty($tmdbLookup)) {
674 674
             if ($this->currentTitle !== '') {
675 675
                 // Check the similarity.
676 676
                 similar_text($this->currentTitle, $tmdbLookup['title'], $percent);
@@ -699,7 +699,7 @@  discard block
 block discarded – undo
699 699
                 $ret['rating'] = '';
700 700
             }
701 701
             $actors = Arr::pluck($tmdbLookup['credits']['cast'], 'name');
702
-            if (! empty($actors)) {
702
+            if (!empty($actors)) {
703 703
                 $ret['actors'] = $actors;
704 704
             } else {
705 705
                 $ret['actors'] = '';
@@ -710,7 +710,7 @@  discard block
 block discarded – undo
710 710
                 }
711 711
             }
712 712
             $overview = $tmdbLookup['overview'];
713
-            if (! empty($overview)) {
713
+            if (!empty($overview)) {
714 714
                 $ret['plot'] = $overview;
715 715
             } else {
716 716
                 $ret['plot'] = '';
@@ -720,13 +720,13 @@  discard block
 block discarded – undo
720 720
             $ret['tagline'] = $tagline ?? '';
721 721
 
722 722
             $released = $tmdbLookup['release_date'];
723
-            if (! empty($released)) {
723
+            if (!empty($released)) {
724 724
                 $ret['year'] = Carbon::parse($released)->year;
725 725
             } else {
726 726
                 $ret['year'] = '';
727 727
             }
728 728
             $genresa = $tmdbLookup['genres'];
729
-            if (! empty($genresa) && \count($genresa) > 0) {
729
+            if (!empty($genresa) && \count($genresa) > 0) {
730 730
                 $genres = [];
731 731
                 foreach ($genresa as $genre) {
732 732
                     $genres[] = $genre['name'];
@@ -736,13 +736,13 @@  discard block
 block discarded – undo
736 736
                 $ret['genre'] = '';
737 737
             }
738 738
             $posterp = $tmdbLookup['poster_path'];
739
-            if (! empty($posterp)) {
739
+            if (!empty($posterp)) {
740 740
                 $ret['cover'] = 'https://image.tmdb.org/t/p/original'.$posterp;
741 741
             } else {
742 742
                 $ret['cover'] = '';
743 743
             }
744 744
             $backdrop = $tmdbLookup['backdrop_path'];
745
-            if (! empty($backdrop)) {
745
+            if (!empty($backdrop)) {
746 746
                 $ret['backdrop'] = 'https://image.tmdb.org/t/p/original'.$backdrop;
747 747
             } else {
748 748
                 $ret['backdrop'] = '';
@@ -764,9 +764,9 @@  discard block
 block discarded – undo
764 764
     {
765 765
         $realId = (new Title($imdbId, $this->config))->real_id();
766 766
         $result = new Title($realId, $this->config);
767
-        $title = ! empty($result->orig_title()) ? $result->orig_title() : $result->title();
768
-        if (! empty($title)) {
769
-            if (! empty($this->currentTitle)) {
767
+        $title = !empty($result->orig_title()) ? $result->orig_title() : $result->title();
768
+        if (!empty($title)) {
769
+            if (!empty($this->currentTitle)) {
770 770
                 similar_text($this->currentTitle, $title, $percent);
771 771
                 if ($percent >= self::MATCH_PERCENT) {
772 772
                     similar_text($this->currentYear, $result->year(), $percent);
@@ -775,7 +775,7 @@  discard block
 block discarded – undo
775 775
                             'title' => $title,
776 776
                             'tagline' => $result->tagline() ?? '',
777 777
                             'plot' => Arr::get($result->plot_split(), '0.plot'),
778
-                            'rating' => ! empty($result->rating()) ? $result->rating() : '',
778
+                            'rating' => !empty($result->rating()) ? $result->rating() : '',
779 779
                             'year' => $result->year() ?? '',
780 780
                             'cover' => $result->photo() ?? '',
781 781
                             'genre' => $result->genre() ?? '',
@@ -800,7 +800,7 @@  discard block
 block discarded – undo
800 800
                 'title' => $title,
801 801
                 'tagline' => $result->tagline() ?? '',
802 802
                 'plot' => Arr::get($result->plot_split(), '0.plot'),
803
-                'rating' => ! empty($result->rating()) ? $result->rating() : '',
803
+                'rating' => !empty($result->rating()) ? $result->rating() : '',
804 804
                 'year' => $result->year() ?? '',
805 805
                 'cover' => $result->photo() ?? '',
806 806
                 'genre' => $result->genre() ?? '',
@@ -874,7 +874,7 @@  discard block
 block discarded – undo
874 874
         if ($this->omdbapikey !== null) {
875 875
             $resp = $this->omdbApi->fetch('i', 'tt'.$imdbId);
876 876
 
877
-            if (\is_object($resp) && $resp->message === 'OK' && ! Str::contains($resp->data->Response, 'Error:') && $resp->data->Response !== 'False') {
877
+            if (\is_object($resp) && $resp->message === 'OK' && !Str::contains($resp->data->Response, 'Error:') && $resp->data->Response !== 'False') {
878 878
                 similar_text($this->currentTitle, $resp->data->Title, $percent);
879 879
                 if ($percent >= self::MATCH_PERCENT) {
880 880
                     similar_text($this->currentYear, $resp->data->Year, $percent);
@@ -1040,7 +1040,7 @@  discard block
 block discarded – undo
1040 1040
             // Loop over releases.
1041 1041
             foreach ($res as $arr) {
1042 1042
                 // Try to get a name/year.
1043
-                if (! $this->parseMovieSearchName($arr['searchname'])) {
1043
+                if (!$this->parseMovieSearchName($arr['searchname'])) {
1044 1044
                     //We didn't find a name, so set to all 0's so we don't parse again.
1045 1045
                     Release::query()->where('id', $arr['id'])->update(['imdbid' => 0000000]);
1046 1046
 
@@ -1074,7 +1074,7 @@  discard block
 block discarded – undo
1074 1074
                     try {
1075 1075
                         $imdbSearch = new TitleSearch($this->config);
1076 1076
                         foreach ($imdbSearch->search($this->currentTitle, [TitleSearch::MOVIE]) as $imdbTitle) {
1077
-                            if (! empty($imdbTitle->title())) {
1077
+                            if (!empty($imdbTitle->title())) {
1078 1078
                                 similar_text($imdbTitle->title(), $this->currentTitle, $percent);
1079 1079
                                 if ($percent >= self::MATCH_PERCENT) {
1080 1080
                                     similar_text($this->currentYear, $imdbTitle->year(), $percent);
@@ -1104,10 +1104,10 @@  discard block
 block discarded – undo
1104 1104
                             $buffer = $this->omdbApi->search($omdbTitle, 'movie');
1105 1105
                         }
1106 1106
 
1107
-                        if (\is_object($buffer) && $buffer->message === 'OK' && ! Str::contains($buffer->data->Response, 'Error:') && $buffer->data->Response === 'True') {
1107
+                        if (\is_object($buffer) && $buffer->message === 'OK' && !Str::contains($buffer->data->Response, 'Error:') && $buffer->data->Response === 'True') {
1108 1108
                             $getIMDBid = $buffer->data->Search[0]->imdbID;
1109 1109
 
1110
-                            if (! empty($getIMDBid)) {
1110
+                            if (!empty($getIMDBid)) {
1111 1111
                                 $imdbId = $this->doMovieUpdate($getIMDBid, 'OMDbAPI', $arr['id']);
1112 1112
                                 if ($imdbId !== false) {
1113 1113
                                     $movieUpdated = true;
@@ -1122,7 +1122,7 @@  discard block
 block discarded – undo
1122 1122
                     $data = $this->traktTv->client->movieSummary($movieName, 'full');
1123 1123
                     if ($data !== false) {
1124 1124
                         $this->parseTraktTv($data);
1125
-                        if (! empty($data['ids']['imdb'])) {
1125
+                        if (!empty($data['ids']['imdb'])) {
1126 1126
                             $imdbId = $this->doMovieUpdate($data['ids']['imdb'], 'Trakt', $arr['id']);
1127 1127
                             if ($imdbId !== false) {
1128 1128
                                 $movieUpdated = true;
@@ -1135,13 +1135,13 @@  discard block
 block discarded – undo
1135 1135
                 if ($movieUpdated === false) {
1136 1136
                     try {
1137 1137
                         $data = Tmdb::getSearchApi()->searchMovies($this->currentTitle);
1138
-                        if (($data['total_results'] > 0) && ! empty($data['results'])) {
1138
+                        if (($data['total_results'] > 0) && !empty($data['results'])) {
1139 1139
                             foreach ($data['results'] as $result) {
1140
-                                if (! empty($result['id']) && ! empty($result['release_date'])) {
1140
+                                if (!empty($result['id']) && !empty($result['release_date'])) {
1141 1141
                                     similar_text($this->currentYear, Carbon::parse($result['release_date'])->year, $percent);
1142 1142
                                     if ($percent >= self::YEAR_MATCH_PERCENT) {
1143 1143
                                         $ret = $this->fetchTMDBProperties($result['id'], true);
1144
-                                        if ($ret !== false && ! empty($ret['imdbid'])) {
1144
+                                        if ($ret !== false && !empty($ret['imdbid'])) {
1145 1145
                                             $imdbId = $this->doMovieUpdate('tt'.$ret['imdbid'], 'TMDB', $arr['id']);
1146 1146
                                             if ($imdbId !== false) {
1147 1147
                                                 $movieUpdated = true;
@@ -1242,7 +1242,7 @@  discard block
 block discarded – undo
1242 1242
             // Finally remove multiple spaces and trim leading spaces.
1243 1243
             $name = trim(preg_replace('/\s{2,}/', ' ', $name));
1244 1244
             // Check if the name is long enough and not just numbers.
1245
-            if (\strlen($name) > 4 && ! preg_match('/^\d+$/', $name)) {
1245
+            if (\strlen($name) > 4 && !preg_match('/^\d+$/', $name)) {
1246 1246
                 $this->currentTitle = $name;
1247 1247
                 $this->currentYear = $year;
1248 1248
 
Please login to merge, or discard this patch.
Blacklight/Games.php 1 patch
Spacing   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -241,7 +241,7 @@  discard block
 block discarded – undo
241 241
                 $order[1]
242 242
             );
243 243
 
244
-        return Cache::flexible($returnSql.$page, [config('nntmux.cache_expiry_medium'), config('nntmux.cache_expiry_long')], function () use ($returnSql, $games) {
244
+        return Cache::flexible($returnSql.$page, [config('nntmux.cache_expiry_medium'), config('nntmux.cache_expiry_long')], function() use ($returnSql, $games) {
245 245
             $return = DB::select($returnSql);
246 246
             if (\count($return) > 0) {
247 247
                 $return[0]->_totalcount = $games['total'][0]->total ?? 0;
@@ -293,7 +293,7 @@  discard block
 block discarded – undo
293 293
     {
294 294
         $browseBy = ' ';
295 295
         foreach ($this->getBrowseByOptions() as $bbk => $bbv) {
296
-            if (! empty($_REQUEST[$bbk])) {
296
+            if (!empty($_REQUEST[$bbk])) {
297 297
                 $bbs = stripslashes($_REQUEST[$bbk]);
298 298
                 if ($bbk === 'year') {
299 299
                     $browseBy .= ' AND YEAR (gi.releasedate) '.'LIKE '.escapeString('%'.$bbs.'%');
@@ -357,11 +357,11 @@  discard block
 block discarded – undo
357 357
                 if (empty($this->_gameResults['title'])) {
358 358
                     return false;
359 359
                 }
360
-                if (! empty($this->_gameResults['cover'])) {
360
+                if (!empty($this->_gameResults['cover'])) {
361 361
                     $game['coverurl'] = (string) $this->_gameResults['cover'];
362 362
                 }
363 363
 
364
-                if (! empty($this->_gameResults['backdrop'])) {
364
+                if (!empty($this->_gameResults['backdrop'])) {
365 365
                     $game['backdropurl'] = (string) $this->_gameResults['backdrop'];
366 366
                 }
367 367
 
@@ -369,41 +369,41 @@  discard block
 block discarded – undo
369 369
                 $game['asin'] = $this->_gameResults['steamid'];
370 370
                 $game['url'] = (string) $this->_gameResults['directurl'];
371 371
 
372
-                if (! empty($this->_gameResults['publisher'])) {
372
+                if (!empty($this->_gameResults['publisher'])) {
373 373
                     $game['publisher'] = (string) $this->_gameResults['publisher'];
374 374
                 } else {
375 375
                     $game['publisher'] = 'Unknown';
376 376
                 }
377 377
 
378
-                if (! empty($this->_gameResults['rating'])) {
378
+                if (!empty($this->_gameResults['rating'])) {
379 379
                     $game['esrb'] = (string) $this->_gameResults['rating'];
380 380
                 } else {
381 381
                     $game['esrb'] = 'Not Rated';
382 382
                 }
383 383
 
384
-                if (! empty($this->_gameResults['releasedate'])) {
384
+                if (!empty($this->_gameResults['releasedate'])) {
385 385
                     $dateReleased = strtotime($this->_gameResults['releasedate']) === false ? '' : $this->_gameResults['releasedate'];
386 386
                     $game['releasedate'] = ($this->_gameResults['releasedate'] === '' || strtotime($this->_gameResults['releasedate']) === false) ? null : Carbon::createFromFormat('M j, Y', Carbon::parse($dateReleased)->toFormattedDateString())->format('Y-m-d');
387 387
                 }
388 388
 
389
-                if (! empty($this->_gameResults['description'])) {
389
+                if (!empty($this->_gameResults['description'])) {
390 390
                     $game['review'] = (string) $this->_gameResults['description'];
391 391
                 }
392 392
 
393
-                if (! empty($this->_gameResults['genres'])) {
393
+                if (!empty($this->_gameResults['genres'])) {
394 394
                     $genres = $this->_gameResults['genres'];
395 395
                     $genreName = $this->_matchGenre($genres);
396 396
                 }
397 397
             }
398 398
         }
399 399
 
400
-        if (! empty($this->publicKey)) {
400
+        if (!empty($this->publicKey)) {
401 401
             if ($steamGameID === false || $this->_gameResults === false) {
402 402
                 $bestMatch = false;
403 403
                 $this->_classUsed = 'GiantBomb';
404 404
                 try {
405 405
                     $result = $this->giantBomb->search($gameInfo['title'], 'Game');
406
-                    if (! \is_object($result)) {
406
+                    if (!\is_object($result)) {
407 407
                         $bestMatchPct = 0;
408 408
                         foreach ($result as $res) {
409 409
                             similar_text(strtolower($gameInfo['title']), strtolower($res->name), $percent1);
@@ -416,17 +416,17 @@  discard block
 block discarded – undo
416 416
                         if ($bestMatch !== false) {
417 417
                             $this->_gameResults = $this->giantBomb->findWithResourceID('Game', '3030-'.$bestMatch);
418 418
 
419
-                            if (! empty($this->_gameResults->image['medium_url'])) {
419
+                            if (!empty($this->_gameResults->image['medium_url'])) {
420 420
                                 $game['coverurl'] = (string) $this->_gameResults->image['medium_url'];
421 421
                             }
422 422
 
423
-                            if (! empty($this->_gameResults->image['screen_url'])) {
423
+                            if (!empty($this->_gameResults->image['screen_url'])) {
424 424
                                 $game['backdropurl'] = (string) $this->_gameResults->image['screen_url'];
425 425
                             }
426 426
 
427 427
                             $game['title'] = (string) $this->_gameResults->get('name');
428 428
                             $game['asin'] = $this->_gameResults->get('id');
429
-                            if (! empty($this->_gameResults->get('site_detail_url'))) {
429
+                            if (!empty($this->_gameResults->get('site_detail_url'))) {
430 430
                                 $game['url'] = (string) $this->_gameResults->get('site_detail_url');
431 431
                             } else {
432 432
                                 $game['url'] = '';
@@ -438,7 +438,7 @@  discard block
 block discarded – undo
438 438
                                 $game['publisher'] = 'Unknown';
439 439
                             }
440 440
 
441
-                            if (! empty($this->_gameResults->original_game_rating[0]['name'])) {
441
+                            if (!empty($this->_gameResults->original_game_rating[0]['name'])) {
442 442
                                 $game['esrb'] = $this->_gameResults->original_game_rating[0]['name'] ?? 'Not Rated';
443 443
                             } else {
444 444
                                 $game['esrb'] = 'Not Rated';
@@ -475,7 +475,7 @@  discard block
 block discarded – undo
475 475
                     $bestMatch = false;
476 476
                     $this->_classUsed = 'IGDB';
477 477
                     $result = Game::where('name', $gameInfo['title'])->get();
478
-                    if (! empty($result)) {
478
+                    if (!empty($result)) {
479 479
                         $bestMatchPct = 0;
480 480
                         foreach ($result as $res) {
481 481
                             similar_text(strtolower($gameInfo['title']), strtolower($res->name), $percent1);
@@ -493,7 +493,7 @@  discard block
 block discarded – undo
493 493
                             ])->where('id', $bestMatch)->first();
494 494
 
495 495
                             $publishers = [];
496
-                            if (! empty($this->_gameResults->involved_companies)) {
496
+                            if (!empty($this->_gameResults->involved_companies)) {
497 497
                                 foreach ($this->_gameResults->involved_companies as $publisher) {
498 498
                                     if ($publisher['publisher'] === true) {
499 499
                                         $company = Company::find($publisher['company']);
@@ -504,7 +504,7 @@  discard block
 block discarded – undo
504 504
 
505 505
                             $genres = [];
506 506
 
507
-                            if (! empty($this->_gameResults->themes)) {
507
+                            if (!empty($this->_gameResults->themes)) {
508 508
                                 foreach ($this->_gameResults->themes as $theme) {
509 509
                                     $genres[] = $theme['name'];
510 510
                                 }
@@ -526,7 +526,7 @@  discard block
 block discarded – undo
526 526
                                 'esrb' => isset($this->_gameResults->aggregated_rating) ? round($this->_gameResults->aggregated_rating).'%' : 'Not Rated',
527 527
                                 'url' => $this->_gameResults->url ?? '',
528 528
                                 'backdropurl' => isset($this->_gameResults->screenshots) ? 'https:'.str_replace('t_thumb', 't_cover_big', $this->_gameResults->screenshots[0]['url']) : '',
529
-                                'publisher' => ! empty($publishers) ? implode(',', $publishers) : 'Unknown',
529
+                                'publisher' => !empty($publishers) ? implode(',', $publishers) : 'Unknown',
530 530
                             ];
531 531
                         } else {
532 532
                             $this->colorCli->notice('IGDB returned no valid results');
@@ -560,20 +560,20 @@  discard block
 block discarded – undo
560 560
         } else {
561 561
             $game['backdrop'] = 0;
562 562
         }
563
-        if (! isset($game['trailer'])) {
563
+        if (!isset($game['trailer'])) {
564 564
             $game['trailer'] = 0;
565 565
         }
566 566
         if (empty($game['title'])) {
567 567
             $game['title'] = $gameInfo['title'];
568 568
         }
569
-        if (! isset($game['releasedate'])) {
569
+        if (!isset($game['releasedate'])) {
570 570
             $game['releasedate'] = '';
571 571
         }
572 572
 
573 573
         if ($game['releasedate'] === '') {
574 574
             $game['releasedate'] = '';
575 575
         }
576
-        if (! isset($game['review'])) {
576
+        if (!isset($game['review'])) {
577 577
             $game['review'] = 'No Review';
578 578
         }
579 579
         $game['classused'] = $this->_classUsed;
@@ -591,7 +591,7 @@  discard block
 block discarded – undo
591 591
         $game['gamesgenre'] = $genreName;
592 592
         $game['gamesgenreID'] = $genreKey;
593 593
 
594
-        if (! empty($game['asin'])) {
594
+        if (!empty($game['asin'])) {
595 595
             $check = GamesInfo::query()->where('asin', $game['asin'])->first();
596 596
             if ($check === null) {
597 597
                 $gamesId = GamesInfo::query()
@@ -636,7 +636,7 @@  discard block
 block discarded – undo
636 636
             }
637 637
         }
638 638
 
639
-        if (! empty($gamesId)) {
639
+        if (!empty($gamesId)) {
640 640
             if ($this->echoOutput) {
641 641
                 $this->colorCli->header('Added/updated game: ').
642 642
                     $this->colorCli->alternateOver('   Title:    ').
@@ -655,7 +655,7 @@  discard block
 block discarded – undo
655 655
                 $this->colorCli->primary($game['title'].' (PC)');
656 656
         }
657 657
 
658
-        return ! empty($gamesId) ? $gamesId : false;
658
+        return !empty($gamesId) ? $gamesId : false;
659 659
     }
660 660
 
661 661
     /**
Please login to merge, or discard this patch.
Blacklight/XXX.php 1 patch
Spacing   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
 			%s %s %s %s
154 154
 			GROUP BY xxx.id
155 155
 			ORDER BY %s %s",
156
-            (! empty($xxxIDs) ? implode(',', $xxxIDs) : -1),
156
+            (!empty($xxxIDs) ? implode(',', $xxxIDs) : -1),
157 157
             $this->showPasswords,
158 158
             $this->getBrowseBy(),
159 159
             $catSrch,
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
             $order[1]
168 168
         );
169 169
 
170
-        return Cache::flexible($sql.$page, [config('nntmux.cache_expiry_medium'), config('nntmux.cache_expiry_long')], function () use ($sql, $xxxmovies) {
170
+        return Cache::flexible($sql.$page, [config('nntmux.cache_expiry_medium'), config('nntmux.cache_expiry_long')], function() use ($sql, $xxxmovies) {
171 171
             $return = DB::select($sql);
172 172
             if (\count($return) > 0) {
173 173
                 $return[0]->_totalcount = $xxxmovies['total'][0]->total ?? 0;
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
     {
204 204
         $browseBy = ' ';
205 205
         foreach (['title', 'director', 'actors', 'genre', 'id'] as $bb) {
206
-            if (! empty($_REQUEST[$bb])) {
206
+            if (!empty($_REQUEST[$bb])) {
207 207
                 $bbv = stripslashes($_REQUEST[$bb]);
208 208
                 if ($bb === 'genre') {
209 209
                     $bbv = $this->getGenreID($bbv);
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
         string $cover = '',
239 239
         string $backdrop = ''
240 240
     ): void {
241
-        if (! empty($id)) {
241
+        if (!empty($id)) {
242 242
             XxxInfo::query()->where('id', $id)->update(
243 243
                 [
244 244
                     'title' => $title,
@@ -277,12 +277,12 @@  discard block
 block discarded – undo
277 277
     public function getGenres(bool $activeOnly = false, $gid = null): mixed
278 278
     {
279 279
         if ($activeOnly) {
280
-            return Genre::query()->where(['disabled' => 0, 'type' => Category::XXX_ROOT])->when($gid !== null, function ($query) use ($gid) {
280
+            return Genre::query()->where(['disabled' => 0, 'type' => Category::XXX_ROOT])->when($gid !== null, function($query) use ($gid) {
281 281
                 return $query->where('id', $gid);
282 282
             })->orderBy('title')->first(['title']);
283 283
         }
284 284
 
285
-        return Genre::query()->where(['type' => Category::XXX_ROOT])->when($gid !== null, function ($query) use ($gid) {
285
+        return Genre::query()->where(['type' => Category::XXX_ROOT])->when($gid !== null, function($query) use ($gid) {
286 286
             return $query->where('id', $gid);
287 287
         })->orderBy('title')->first(['title']);
288 288
     }
@@ -297,7 +297,7 @@  discard block
 block discarded – undo
297 297
     {
298 298
         $ret = null;
299 299
 
300
-        if (! \is_array($arr)) {
300
+        if (!\is_array($arr)) {
301 301
             $res = Genre::query()->where('title', $arr)->first(['id']);
302 302
             if ($res !== null) {
303 303
                 return $res['id'];
@@ -337,7 +337,7 @@  discard block
 block discarded – undo
337 337
     public function insertSwf($whichClass, $res): string
338 338
     {
339 339
         $ret = '';
340
-        if (($whichClass === 'ade') && ! empty($res)) {
340
+        if (($whichClass === 'ade') && !empty($res)) {
341 341
             $trailers = unserialize($res, 'ade');
342 342
             $ret .= "<object width='360' height='240' type='application/x-shockwave-flash' id='EmpireFlashPlayer' name='EmpireFlashPlayer' data='".$trailers['url']."'>";
343 343
             $ret .= "<param name='flashvars' value= 'streamID=".$trailers['streamid'].'&amp;autoPlay=false&amp;BaseStreamingUrl='.$trailers['baseurl']."'>";
@@ -345,7 +345,7 @@  discard block
 block discarded – undo
345 345
 
346 346
             return $ret;
347 347
         }
348
-        if (($whichClass === 'pop') && ! empty($res)) {
348
+        if (($whichClass === 'pop') && !empty($res)) {
349 349
             $trailers = unserialize($res, 'pop');
350 350
             $ret .= "<embed id='trailer' width='480' height='360'";
351 351
             $ret .= "flashvars='".$trailers['flashvars']."' allowfullscreen='true' allowscriptaccess='always' quality='high' name='trailer' style='undefined'";
@@ -422,22 +422,22 @@  discard block
 block discarded – undo
422 422
             return -2;
423 423
         }
424 424
 
425
-        $res['cast'] = ! empty($res['cast']) ? implode(',', $res['cast']) : '';
426
-        $res['genres'] = ! empty($res['genres']) ? $this->getGenreID($res['genres']) : '';
425
+        $res['cast'] = !empty($res['cast']) ? implode(',', $res['cast']) : '';
426
+        $res['genres'] = !empty($res['genres']) ? $this->getGenreID($res['genres']) : '';
427 427
 
428 428
         $mov = [
429
-            'trailers' => ! empty($res['trailers']) ? serialize($res['trailers']) : '',
430
-            'extras' => ! empty($res['extras']) ? serialize($res['extras']) : '',
431
-            'productinfo' => ! empty($res['productinfo']) ? serialize($res['productinfo']) : '',
432
-            'backdrop' => ! empty($res['backcover']) ? $res['backcover'] : 0,
433
-            'cover' => ! empty($res['boxcover']) ? $res['boxcover'] : 0,
434
-            'title' => ! empty($res['title']) ? html_entity_decode($res['title'], ENT_QUOTES, 'UTF-8') : '',
435
-            'plot' => ! empty($res['synopsis']) ? html_entity_decode($res['synopsis'], ENT_QUOTES, 'UTF-8') : '',
436
-            'tagline' => ! empty($res['tagline']) ? html_entity_decode($res['tagline'], ENT_QUOTES, 'UTF-8') : '',
437
-            'genre' => ! empty($res['genres']) ? html_entity_decode($res['genres'], ENT_QUOTES, 'UTF-8') : '',
438
-            'director' => ! empty($res['director']) ? html_entity_decode($res['director'], ENT_QUOTES, 'UTF-8') : '',
439
-            'actors' => ! empty($res['cast']) ? html_entity_decode($res['cast'], ENT_QUOTES, 'UTF-8') : '',
440
-            'directurl' => ! empty($res['directurl']) ? html_entity_decode($res['directurl'], ENT_QUOTES, 'UTF-8') : '',
429
+            'trailers' => !empty($res['trailers']) ? serialize($res['trailers']) : '',
430
+            'extras' => !empty($res['extras']) ? serialize($res['extras']) : '',
431
+            'productinfo' => !empty($res['productinfo']) ? serialize($res['productinfo']) : '',
432
+            'backdrop' => !empty($res['backcover']) ? $res['backcover'] : 0,
433
+            'cover' => !empty($res['boxcover']) ? $res['boxcover'] : 0,
434
+            'title' => !empty($res['title']) ? html_entity_decode($res['title'], ENT_QUOTES, 'UTF-8') : '',
435
+            'plot' => !empty($res['synopsis']) ? html_entity_decode($res['synopsis'], ENT_QUOTES, 'UTF-8') : '',
436
+            'tagline' => !empty($res['tagline']) ? html_entity_decode($res['tagline'], ENT_QUOTES, 'UTF-8') : '',
437
+            'genre' => !empty($res['genres']) ? html_entity_decode($res['genres'], ENT_QUOTES, 'UTF-8') : '',
438
+            'director' => !empty($res['director']) ? html_entity_decode($res['director'], ENT_QUOTES, 'UTF-8') : '',
439
+            'actors' => !empty($res['cast']) ? html_entity_decode($res['cast'], ENT_QUOTES, 'UTF-8') : '',
440
+            'directurl' => !empty($res['directurl']) ? html_entity_decode($res['directurl'], ENT_QUOTES, 'UTF-8') : '',
441 441
             'classused' => $this->whichClass,
442 442
         ];
443 443
 
@@ -447,12 +447,12 @@  discard block
 block discarded – undo
447 447
             $xxxID = $check['id'];
448 448
 
449 449
             // Update BoxCover.
450
-            if (! empty($mov['cover'])) {
450
+            if (!empty($mov['cover'])) {
451 451
                 $cover = $this->releaseImage->saveImage($xxxID.'-cover', $mov['cover'], $this->imgSavePath);
452 452
             }
453 453
 
454 454
             // BackCover.
455
-            if (! empty($mov['backdrop'])) {
455
+            if (!empty($mov['backdrop'])) {
456 456
                 $backdrop = $this->releaseImage->saveImage($xxxID.'-backdrop', $mov['backdrop'], $this->imgSavePath, 1920, 1024);
457 457
             }
458 458
 
@@ -480,12 +480,12 @@  discard block
 block discarded – undo
480 480
                 ]
481 481
             );
482 482
             // Update BoxCover.
483
-            if (! empty($mov['cover'])) {
483
+            if (!empty($mov['cover'])) {
484 484
                 $cover = $this->releaseImage->saveImage($xxxID.'-cover', $mov['cover'], $this->imgSavePath);
485 485
             }
486 486
 
487 487
             // BackCover.
488
-            if (! empty($mov['backdrop'])) {
488
+            if (!empty($mov['backdrop'])) {
489 489
                 $backdrop = $this->releaseImage->saveImage($xxxID.'-backdrop', $mov['backdrop'], $this->imgSavePath, 1920, 1024);
490 490
             }
491 491
 
@@ -598,7 +598,7 @@  discard block
 block discarded – undo
598 598
             $name = trim(preg_replace('/(brazilian|chinese|croatian|danish|deutsch|dutch|estonian|flemish|finnish|french|german|greek|hebrew|icelandic|italian|latin|nordic|norwegian|polish|portuguese|japenese|japanese|russian|serbian|slovenian|spanish|spanisch|swedish|thai|turkish)$/i', '', $name));
599 599
 
600 600
             // Check if the name is long enough and not just numbers and not file (d) of (d) and does not contain Episodes and any dated 00.00.00 which are site rips..
601
-            if (\strlen($name) > 5 && ! preg_match('/^\d+$/', $name) && ! preg_match('/( File \d+ of \d+|\d+.\d+.\d+)/', $name) && ! preg_match('/(E\d+)/', $name) && ! preg_match('/\d\d\.\d\d.\d\d/', $name)) {
601
+            if (\strlen($name) > 5 && !preg_match('/^\d+$/', $name) && !preg_match('/( File \d+ of \d+|\d+.\d+.\d+)/', $name) && !preg_match('/(E\d+)/', $name) && !preg_match('/\d\d\.\d\d.\d\d/', $name)) {
602 602
                 $this->currentTitle = $name;
603 603
 
604 604
                 return true;
Please login to merge, or discard this patch.
Blacklight/Books.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -169,14 +169,14 @@  discard block
 block discarded – undo
169 169
 			%s
170 170
 			GROUP BY boo.id
171 171
 			ORDER BY %s %s',
172
-            \is_array($bookIDs) && ! empty($bookIDs) ? implode(',', $bookIDs) : -1,
173
-            \is_array($releaseIDs) && ! empty($releaseIDs) ? implode(',', $releaseIDs) : -1,
172
+            \is_array($bookIDs) && !empty($bookIDs) ? implode(',', $bookIDs) : -1,
173
+            \is_array($releaseIDs) && !empty($releaseIDs) ? implode(',', $releaseIDs) : -1,
174 174
             $catsrch,
175 175
             $order[0],
176 176
             $order[1]
177 177
         );
178 178
 
179
-        return Cache::flexible($sql.$page, [config('nntmux.cache_expiry_medium'), config('nntmux.cache_expiry_long')], function () use ($sql, $books) {
179
+        return Cache::flexible($sql.$page, [config('nntmux.cache_expiry_medium'), config('nntmux.cache_expiry_long')], function() use ($sql, $books) {
180 180
             $return = DB::select($sql);
181 181
             if (\count($return) > 0) {
182 182
                 $return[0]->_totalcount = $books['total'][0]->total ?? 0;
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
     {
235 235
         $browseby = ' ';
236 236
         foreach ($this->getBrowseByOptions() as $bbk => $bbv) {
237
-            if (! empty($_REQUEST[$bbk])) {
237
+            if (!empty($_REQUEST[$bbk])) {
238 238
                 $bbs = stripslashes($_REQUEST[$bbk]);
239 239
                 $browseby .= ' AND boo.'.$bbv.' '.'LIKE '.escapeString('%'.$bbs.'%');
240 240
             }
@@ -364,7 +364,7 @@  discard block
 block discarded – undo
364 364
                 return false;
365 365
             }
366 366
 
367
-            if (preg_match('/^([a-z0-9ü!]+ ){1,2}(N|Vol)?\d{1,4}([abc])?$|^([a-z0-9]+ ){1,2}(Jan( |unar|$)|Feb( |ruary|$)|Mar( |ch|$)|Apr( |il|$)|May(?![a-z0-9])|Jun([ e$])|Jul([ y$])|Aug( |ust|$)|Sep( |tember|$)|O([ck])t( |ober|$)|Nov( |ember|$)|De([cz])( |ember|$))/ui', $releasename) && ! preg_match('/Part \d+/i', $releasename)) {
367
+            if (preg_match('/^([a-z0-9ü!]+ ){1,2}(N|Vol)?\d{1,4}([abc])?$|^([a-z0-9]+ ){1,2}(Jan( |unar|$)|Feb( |ruary|$)|Mar( |ch|$)|Apr( |il|$)|May(?![a-z0-9])|Jun([ e$])|Jul([ y$])|Aug( |ust|$)|Sep( |tember|$)|O([ck])t( |ober|$)|Nov( |ember|$)|De([cz])( |ember|$))/ui', $releasename) && !preg_match('/Part \d+/i', $releasename)) {
368 368
                 if ($this->echooutput) {
369 369
                     $this->colorCli->headerOver('Changing category to magazines: ').$this->colorCli->primary($releasename);
370 370
                 }
@@ -372,14 +372,14 @@  discard block
 block discarded – undo
372 372
 
373 373
                 return false;
374 374
             }
375
-            if (! empty($releasename) && ! preg_match('/^[a-z0-9]+$|^([0-9]+ ){1,}$|Part \d+/i', $releasename)) {
375
+            if (!empty($releasename) && !preg_match('/^[a-z0-9]+$|^([0-9]+ ){1,}$|Part \d+/i', $releasename)) {
376 376
                 return $releasename;
377 377
             }
378 378
 
379 379
             return false;
380 380
         }
381 381
         if ($releasetype === 'audiobook') {
382
-            if (! empty($releasename) && ! preg_match('/^[a-z0-9]+$|^([0-9]+ ){1,}$|Part \d+/i', $releasename)) {
382
+            if (!empty($releasename) && !preg_match('/^[a-z0-9]+$|^([0-9]+ ){1,}$|Part \d+/i', $releasename)) {
383 383
                 // we can skip category for audiobooks, since we already know it, so as long as the release name is valid return it so that it is postprocessed by amazon.  In the future, determining the type of audiobook could be added (Lecture or book), since we can skip lookups on lectures, but for now handle them all the same way
384 384
                 return $releasename;
385 385
             }
@@ -403,7 +403,7 @@  discard block
 block discarded – undo
403 403
 
404 404
         $book = false;
405 405
         if ($bookInfo !== '') {
406
-            if (! $book) {
406
+            if (!$book) {
407 407
                 $this->colorCli->info('Fetching data from iTunes for '.$bookInfo);
408 408
                 $book = $this->fetchItunesBookProperties($bookInfo);
409 409
             } elseif ($amazdata !== null) {
@@ -510,12 +510,12 @@  discard block
 block discarded – undo
510 510
                 'salesrank' => '',
511 511
                 'publisher' => '',
512 512
                 'pages' => '',
513
-                'coverurl' => ! empty($iTunesBook->getCover()) ? str_replace('100x100', '800x800', $iTunesBook->getCover()) : '',
513
+                'coverurl' => !empty($iTunesBook->getCover()) ? str_replace('100x100', '800x800', $iTunesBook->getCover()) : '',
514 514
                 'genre' => implode(', ', $iTunesBook->getGenre()),
515 515
                 'overview' => strip_tags($iTunesBook->getDescription()),
516 516
                 'publishdate' => $iTunesBook->getReleaseDate()->format('Y-m-d'),
517 517
             ];
518
-            if (! empty($book['coverurl'])) {
518
+            if (!empty($book['coverurl'])) {
519 519
                 $book['cover'] = 1;
520 520
             } else {
521 521
                 $book['cover'] = 0;
Please login to merge, or discard this patch.