Passed
Push — master ( 04c44e...059b28 )
by Darko
10:01 queued 04:00
created
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.
Blacklight/Music.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -195,14 +195,14 @@  discard block
 block discarded – undo
195 195
 			%s %s %s
196 196
 			GROUP BY m.id
197 197
 			ORDER BY %s %s',
198
-            ! empty($musicIDs) ? 'WHERE m.id IN ('.implode(',', $musicIDs).')' : 'AND 1=1',
199
-            (! empty($releaseIDs)) ? 'AND r.id in ('.implode(',', $releaseIDs).')' : '',
198
+            !empty($musicIDs) ? 'WHERE m.id IN ('.implode(',', $musicIDs).')' : 'AND 1=1',
199
+            (!empty($releaseIDs)) ? 'AND r.id in ('.implode(',', $releaseIDs).')' : '',
200 200
             $catsrch,
201 201
             $order[0],
202 202
             $order[1]
203 203
         );
204 204
 
205
-        return Cache::flexible($sql.$page, [config('nntmux.cache_expiry_medium'), config('nntmux.cache_expiry_long')], function () use ($sql, $music) {
205
+        return Cache::flexible($sql.$page, [config('nntmux.cache_expiry_medium'), config('nntmux.cache_expiry_long')], function() use ($sql, $music) {
206 206
             $return = DB::select($sql);
207 207
             if (\count($return) > 0) {
208 208
                 $return[0]->_totalcount = $music['total'][0]->total ?? 0;
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
     {
260 260
         $browseby = ' ';
261 261
         foreach ($this->getBrowseByOptions() as $bbk => $bbv) {
262
-            if (! empty($_REQUEST[$bbk])) {
262
+            if (!empty($_REQUEST[$bbk])) {
263 263
                 $bbs = stripslashes($_REQUEST[$bbk]);
264 264
                 if (stripos($bbv, 'id') !== false) {
265 265
                     $browseby .= ' AND m.'.$bbv.' = '.$bbs;
@@ -410,7 +410,7 @@  discard block
 block discarded – undo
410 410
             )
411 411
         );
412 412
 
413
-        if (! empty($res)) {
413
+        if (!empty($res)) {
414 414
             foreach ($res as $arr) {
415 415
                 $startTime = now();
416 416
                 $usedAmazon = false;
@@ -483,7 +483,7 @@  discard block
 block discarded – undo
483 483
             $h = trim(preg_replace('/\s\s+/', ' ', $g));
484 484
             $newname = trim(preg_replace('/ [a-z]{2}$| [a-z]{3} \d{2,}$|\d{5,} \d{5,}$|-WEB$/i', '', $h));
485 485
 
486
-            if (! preg_match('/^[a-z0-9]+$/i', $newname) && strlen($newname) > 10) {
486
+            if (!preg_match('/^[a-z0-9]+$/i', $newname) && strlen($newname) > 10) {
487 487
                 $result['name'] = $newname;
488 488
 
489 489
                 return $result;
Please login to merge, or discard this patch.
Blacklight/IRCClient.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
         $transport = ($tls === true ? 'tls' : 'tcp');
193 193
 
194 194
         $socket_string = $transport.'://'.$hostname.':'.$port;
195
-        if ($socket_string !== $this->_remote_socket_string || ! $this->_connected()) {
195
+        if ($socket_string !== $this->_remote_socket_string || !$this->_connected()) {
196 196
             if ($hostname === '') {
197 197
                 echo 'ERROR: IRC host name must not be empty!'.PHP_EOL;
198 198
 
@@ -237,7 +237,7 @@  discard block
 block discarded – undo
237 237
      */
238 238
     public function login(string $nickName, string $userName, string $realName, $password = null): bool
239 239
     {
240
-        if (! $this->_connected()) {
240
+        if (!$this->_connected()) {
241 241
             echo 'ERROR: You must connect to IRC first!'.PHP_EOL;
242 242
 
243 243
             return false;
@@ -254,15 +254,15 @@  discard block
 block discarded – undo
254 254
         $this->_realName = $realName;
255 255
         $this->_password = $password;
256 256
 
257
-        if (empty($password) && ! $this->_writeSocket('PASSWORD '.$password)) {
257
+        if (empty($password) && !$this->_writeSocket('PASSWORD '.$password)) {
258 258
             return false;
259 259
         }
260 260
 
261
-        if (! $this->_writeSocket('NICK '.$nickName)) {
261
+        if (!$this->_writeSocket('NICK '.$nickName)) {
262 262
             return false;
263 263
         }
264 264
 
265
-        if (! $this->_writeSocket('USER '.$userName.' 0 * :'.$realName)) {
265
+        if (!$this->_writeSocket('USER '.$userName.' 0 * :'.$realName)) {
266 266
             return false;
267 267
         }
268 268
 
@@ -291,7 +291,7 @@  discard block
 block discarded – undo
291 291
                         $tempPass = $password;
292 292
                     }
293 293
 
294
-                    if ($password !== null && ! $this->_writeSocket('PASS '.$tempPass)) {
294
+                    if ($password !== null && !$this->_writeSocket('PASS '.$tempPass)) {
295 295
                         return false;
296 296
                     }
297 297
 
@@ -370,13 +370,13 @@  discard block
 block discarded – undo
370 370
     {
371 371
         $this->_channels = $channels;
372 372
 
373
-        if (! $this->_connected()) {
373
+        if (!$this->_connected()) {
374 374
             echo 'ERROR: You must connect to IRC first!'.PHP_EOL;
375 375
 
376 376
             return false;
377 377
         }
378 378
 
379
-        if (! empty($channels)) {
379
+        if (!empty($channels)) {
380 380
             foreach ($channels as $channel => $password) {
381 381
                 $this->_joinChannel($channel, $password ?? '');
382 382
             }
@@ -404,7 +404,7 @@  discard block
 block discarded – undo
404 404
      */
405 405
     protected function _pong(string $host)
406 406
     {
407
-        if (! $this->_writeSocket('PONG '.$host)) {
407
+        if (!$this->_writeSocket('PONG '.$host)) {
408 408
             $this->_reconnect();
409 409
         }
410 410
 
@@ -422,7 +422,7 @@  discard block
 block discarded – undo
422 422
         $pong = $this->_writeSocket('PING '.$host);
423 423
 
424 424
         // Check if there's a connection error.
425
-        if ($pong === false || ((time() - $this->_lastPing) > ($this->_socket_timeout / 2) && ! 0 === strpos($this->_buffer, 'PONG'))) {
425
+        if ($pong === false || ((time() - $this->_lastPing) > ($this->_socket_timeout / 2) && !0 === strpos($this->_buffer, 'PONG'))) {
426 426
             $this->_reconnect();
427 427
         }
428 428
 
@@ -437,12 +437,12 @@  discard block
 block discarded – undo
437 437
      */
438 438
     protected function _reconnect(): void
439 439
     {
440
-        if (! $this->connect($this->_remote_host, $this->_remote_port, $this->_remote_tls)) {
440
+        if (!$this->connect($this->_remote_host, $this->_remote_port, $this->_remote_tls)) {
441 441
             exit('FATAL: Could not reconnect to ('.$this->_remote_host.') after ('.$this->_reconnectRetries.') tries.'.PHP_EOL);
442 442
         }
443 443
 
444
-        if (! $this->_alreadyLoggedIn) {
445
-            if (! $this->login($this->_nickName, $this->_userName, $this->_realName, $this->_password)) {
444
+        if (!$this->_alreadyLoggedIn) {
445
+            if (!$this->login($this->_nickName, $this->_userName, $this->_realName, $this->_password)) {
446 446
                 exit('FATAL: Could not log in to ('.$this->_remote_host.')!'.PHP_EOL);
447 447
             }
448 448
 
@@ -459,7 +459,7 @@  discard block
 block discarded – undo
459 459
         do {
460 460
             stream_set_timeout($this->_socket, $this->_socket_timeout);
461 461
             $buffer .= fgets($this->_socket, 1024);
462
-        } while (! empty($buffer) && ! preg_match('/\v+$/', $buffer));
462
+        } while (!empty($buffer) && !preg_match('/\v+$/', $buffer));
463 463
         $this->_buffer = trim($buffer);
464 464
 
465 465
         if ($this->_debug && $this->_buffer !== '') {
@@ -545,7 +545,7 @@  discard block
 block discarded – undo
545 545
      */
546 546
     protected function _connected(): bool
547 547
     {
548
-        return \is_resource($this->_socket) && ! feof($this->_socket);
548
+        return \is_resource($this->_socket) && !feof($this->_socket);
549 549
     }
550 550
 
551 551
     /**
Please login to merge, or discard this patch.
Blacklight/Genres.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
     {
30 30
         $sql = $this->getListQuery($type, $activeOnly);
31 31
 
32
-        return Cache::flexible($sql, [config('nntmux.cache_expiry_medium'), config('nntmux.cache_expiry_long')], function () use ($sql) {
32
+        return Cache::flexible($sql, [config('nntmux.cache_expiry_medium'), config('nntmux.cache_expiry_long')], function() use ($sql) {
33 33
             return DB::select($sql);
34 34
         });
35 35
     }
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
 
48 48
     private function getListQuery(string $type = '', bool $activeOnly = false): string
49 49
     {
50
-        if (! empty($type)) {
50
+        if (!empty($type)) {
51 51
             $typesql = sprintf(' AND g.type = %d', $type);
52 52
         } else {
53 53
             $typesql = '';
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
 
94 94
     public function getCount(string $type = '', bool $activeOnly = false): mixed
95 95
     {
96
-        if (! empty($type)) {
96
+        if (!empty($type)) {
97 97
             $typesql = sprintf(' AND g.type = %d', $type);
98 98
         } else {
99 99
             $typesql = '';
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
      */
149 149
     public function getDisabledIDs()
150 150
     {
151
-        return Cache::flexible('disabledCats', [config('nntmux.cache_expiry_medium'), config('nntmux.cache_expiry_long')], function () {
151
+        return Cache::flexible('disabledCats', [config('nntmux.cache_expiry_medium'), config('nntmux.cache_expiry_long')], function() {
152 152
             return Genre::query()->where('disabled', '=', 1)->get(['id']);
153 153
         });
154 154
     }
Please login to merge, or discard this patch.
Blacklight/Console.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
             $order[1]
210 210
         );
211 211
 
212
-        return Cache::flexible($sql.$page, [config('nntmux.cache_expiry_medium'), config('nntmux.cache_expiry_long')], function () use ($sql, $consoles) {
212
+        return Cache::flexible($sql.$page, [config('nntmux.cache_expiry_medium'), config('nntmux.cache_expiry_long')], function() use ($sql, $consoles) {
213 213
             $return = DB::select($sql);
214 214
             if (\count($return) > 0) {
215 215
                 $return[0]->_totalcount = $consoles['total'][0]->total ?? 0;
@@ -269,7 +269,7 @@  discard block
 block discarded – undo
269 269
     {
270 270
         $browseBy = ' ';
271 271
         foreach ($this->getBrowseByOptions() as $bbk => $bbv) {
272
-            if (! empty($_REQUEST[$bbk])) {
272
+            if (!empty($_REQUEST[$bbk])) {
273 273
                 $bbs = stripslashes($_REQUEST[$bbk]);
274 274
                 $browseBy .= ' AND con.'.$bbv.' LIKE '.escapeString('%'.$bbs.'%');
275 275
             }
@@ -394,7 +394,7 @@  discard block
 block discarded – undo
394 394
         $con['esrb'] = (string) $amaz->ItemAttributes->ESRBAgeRating;
395 395
         $con['releasedate'] = (string) $amaz->ItemAttributes->ReleaseDate;
396 396
 
397
-        if (! isset($con['releasedate'])) {
397
+        if (!isset($con['releasedate'])) {
398 398
             $con['releasedate'] = '';
399 399
         }
400 400
 
@@ -620,7 +620,7 @@  discard block
 block discarded – undo
620 620
         if (config('config.credentials.client_id') !== '' && config('config.credentials.client_secret') !== '') {
621 621
             try {
622 622
                 $result = Game::where('name', $gameInfo)->get();
623
-                if (! empty($result)) {
623
+                if (!empty($result)) {
624 624
                     $bestMatchPct = 0;
625 625
                     foreach ($result as $res) {
626 626
                         similar_text(strtolower($gameInfo), strtolower($res->name), $percent);
@@ -638,7 +638,7 @@  discard block
 block discarded – undo
638 638
                         ])->where('id', $bestMatch)->first();
639 639
 
640 640
                         $publishers = [];
641
-                        if (! empty($game->involved_companies)) {
641
+                        if (!empty($game->involved_companies)) {
642 642
                             foreach ($game->involved_companies as $publisher) {
643 643
                                 if ($publisher['publisher'] === true) {
644 644
                                     $company = Company::find($publisher['company']);
@@ -649,7 +649,7 @@  discard block
 block discarded – undo
649 649
 
650 650
                         $genres = [];
651 651
 
652
-                        if (! empty($game->themes)) {
652
+                        if (!empty($game->themes)) {
653 653
                             foreach ($game->themes as $theme) {
654 654
                                 $genres[] = $theme['name'];
655 655
                             }
@@ -659,7 +659,7 @@  discard block
 block discarded – undo
659 659
 
660 660
                         $platform = '';
661 661
 
662
-                        if (! empty($game->platforms)) {
662
+                        if (!empty($game->platforms)) {
663 663
                             foreach ($game->platforms as $platforms) {
664 664
                                 $percentCurrent = 0;
665 665
                                 $gamePlatforms = Platform::where('id', $platforms)->get();
@@ -678,13 +678,13 @@  discard block
 block discarded – undo
678 678
                             'title' => $game->name,
679 679
                             'asin' => $game->id,
680 680
                             'review' => $game->summary ?? '',
681
-                            'coverurl' => ! empty($game->cover->url) ? 'https:'.$game->cover->url : '',
682
-                            'releasedate' => ! empty($game->first_release_date) ? $game->first_release_date->format('Y-m-d') : now()->format('Y-m-d'),
683
-                            'esrb' => ! empty($game->aggregated_rating) ? round($game->aggregated_rating).'%' : 'Not Rated',
681
+                            'coverurl' => !empty($game->cover->url) ? 'https:'.$game->cover->url : '',
682
+                            'releasedate' => !empty($game->first_release_date) ? $game->first_release_date->format('Y-m-d') : now()->format('Y-m-d'),
683
+                            'esrb' => !empty($game->aggregated_rating) ? round($game->aggregated_rating).'%' : 'Not Rated',
684 684
                             'url' => $game->url ?? '',
685
-                            'publisher' => ! empty($publishers) ? implode(',', $publishers) : 'Unknown',
685
+                            'publisher' => !empty($publishers) ? implode(',', $publishers) : 'Unknown',
686 686
                             'platform' => $platform ?? '',
687
-                            'consolegenre' => ! empty($genres) ? implode(',', $genres) : 'Unknown',
687
+                            'consolegenre' => !empty($genres) ? implode(',', $genres) : 'Unknown',
688 688
                             'consolegenreid' => $genreKey ?? '',
689 689
                             'salesrank' => '',
690 690
                         ];
@@ -829,7 +829,7 @@  discard block
 block discarded – undo
829 829
                 $platform = 'PSX';
830 830
             }
831 831
 
832
-            if (! empty($title) && stripos('XBLA', $platform) === 0 && stripos('dlc', $title) !== false) {
832
+            if (!empty($title) && stripos('XBLA', $platform) === 0 && stripos('dlc', $title) !== false) {
833 833
                 $platform = 'XBOX360';
834 834
             }
835 835
 
@@ -844,7 +844,7 @@  discard block
 block discarded – undo
844 844
            Other option is to pass the $release->categories_id here if we don't find a platform but that
845 845
            would require an extra lookup to determine the name. In either case we should have a title at the minimum. */
846 846
 
847
-        return (isset($result['title'], $result['platform']) && ! empty($result['title'])) ? $result : false;
847
+        return (isset($result['title'], $result['platform']) && !empty($result['title'])) ? $result : false;
848 848
     }
849 849
 
850 850
     public function getBrowseNode($platform): string
Please login to merge, or discard this patch.
app/Http/Controllers/Api/RSS.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
                 $limit === -1 ? '' : ' LIMIT '.$limit.' OFFSET '.$offset
82 82
             );
83 83
 
84
-        return Cache::flexible(md5($sql), [config('nntmux.cache_expiry_medium'), config('nntmux.cache_expiry_long')], function () use ($sql) {
84
+        return Cache::flexible(md5($sql), [config('nntmux.cache_expiry_medium'), config('nntmux.cache_expiry_long')], function() use ($sql) {
85 85
             return Release::fromQuery($sql);
86 86
         });
87 87
     }
@@ -122,10 +122,10 @@  discard block
 block discarded – undo
122 122
             Category::TV_ROOT,
123 123
             Category::TV_OTHER,
124 124
             $this->releases->showPasswords(),
125
-            ! empty($limit) ? sprintf(' LIMIT %d OFFSET 0', $limit > 100 ? 100 : $limit) : ''
125
+            !empty($limit) ? sprintf(' LIMIT %d OFFSET 0', $limit > 100 ? 100 : $limit) : ''
126 126
         );
127 127
 
128
-        return Cache::flexible(md5($sql), [config('nntmux.cache_expiry_medium'), config('nntmux.cache_expiry_long')], function () use ($sql) {
128
+        return Cache::flexible(md5($sql), [config('nntmux.cache_expiry_medium'), config('nntmux.cache_expiry_long')], function() use ($sql) {
129 129
             return Release::fromQuery($sql);
130 130
         });
131 131
     }
@@ -164,10 +164,10 @@  discard block
 block discarded – undo
164 164
             Category::MOVIE_ROOT,
165 165
             Category::MOVIE_OTHER,
166 166
             $this->releases->showPasswords(),
167
-            ! empty($limit) ? sprintf(' LIMIT %d OFFSET 0', $limit > 100 ? 100 : $limit) : ''
167
+            !empty($limit) ? sprintf(' LIMIT %d OFFSET 0', $limit > 100 ? 100 : $limit) : ''
168 168
         );
169 169
 
170
-        return Cache::flexible(md5($sql), [config('nntmux.cache_expiry_medium'), config('nntmux.cache_expiry_long')], function () use ($sql) {
170
+        return Cache::flexible(md5($sql), [config('nntmux.cache_expiry_medium'), config('nntmux.cache_expiry_long')], function() use ($sql) {
171 171
             return Release::fromQuery($sql);
172 172
         });
173 173
     }
Please login to merge, or discard this patch.