Passed
Pull Request — master (#1558)
by Darko
07:33
created
Blacklight/ReleaseRemover.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
                 $this->colorCLI->header('Removing '.($type === '' ? 'All crap releases ' : $type.' crap releases').' - no time limit.', true);
155 155
             }
156 156
         } else {
157
-            if (! is_numeric($time)) {
157
+            if (!is_numeric($time)) {
158 158
                 $this->error = 'Error, time must be a number or full.';
159 159
 
160 160
                 return $this->returnError();
@@ -630,7 +630,7 @@  discard block
 block discarded – undo
630 630
     {
631 631
         $status = sprintf('AND status = %d', Binaries::BLACKLIST_ENABLED);
632 632
 
633
-        if (! empty($this->blacklistID) && $this->delete === false) {
633
+        if (!empty($this->blacklistID) && $this->delete === false) {
634 634
             $status = '';
635 635
         }
636 636
 
@@ -727,7 +727,7 @@  discard block
 block discarded – undo
727 727
                         $searchResult = (new ElasticSearchSiteSearch())->indexSearch($regexMatch, 100);
728 728
                     } else {
729 729
                         $searchResult = (new ManticoreSearch())->searchIndexes('releases_rt', $regexMatch, ['name,searchname']);
730
-                        if (! empty($searchResult)) {
730
+                        if (!empty($searchResult)) {
731 731
                             $searchResult = Arr::wrap(Arr::get($searchResult, 'id'));
732 732
                         }
733 733
                     }
@@ -741,7 +741,7 @@  discard block
 block discarded – undo
741 741
 							SELECT r.guid, r.searchname, r.id
742 742
 							FROM releases r %s %s %s %s',
743 743
                     $regexSQL,
744
-                    ! empty($searchResult) ? ' WHERE r.id IN ('.implode(',', $searchResult).')' : '',
744
+                    !empty($searchResult) ? ' WHERE r.id IN ('.implode(',', $searchResult).')' : '',
745 745
                     $groupID,
746 746
                     $this->crapTime,
747 747
                 );
@@ -1107,7 +1107,7 @@  discard block
 block discarded – undo
1107 1107
                     }
1108 1108
                     break;
1109 1109
                 case 'size':
1110
-                    if (! is_numeric($args[2])) {
1110
+                    if (!is_numeric($args[2])) {
1111 1111
                         break;
1112 1112
                     }
1113 1113
                     switch ($args[1]) {
@@ -1122,7 +1122,7 @@  discard block
 block discarded – undo
1122 1122
                     }
1123 1123
                     break;
1124 1124
                 case 'adddate':
1125
-                    if (! is_numeric($args[2])) {
1125
+                    if (!is_numeric($args[2])) {
1126 1126
                         break;
1127 1127
                     }
1128 1128
                     switch ($args[1]) {
@@ -1135,7 +1135,7 @@  discard block
 block discarded – undo
1135 1135
                     }
1136 1136
                     break;
1137 1137
                 case 'postdate':
1138
-                    if (! is_numeric($args[2])) {
1138
+                    if (!is_numeric($args[2])) {
1139 1139
                         break;
1140 1140
                     }
1141 1141
                     switch ($args[1]) {
@@ -1148,7 +1148,7 @@  discard block
 block discarded – undo
1148 1148
                     }
1149 1149
                     break;
1150 1150
                 case 'completion':
1151
-                    if (! is_numeric($args[2])) {
1151
+                    if (!is_numeric($args[2])) {
1152 1152
                         break;
1153 1153
                     }
1154 1154
                     if ($args[1] === 'smaller') {
Please login to merge, or discard this patch.
Blacklight/utility/Utility.php 1 patch
Spacing   +5 added lines, -6 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
         $themes = scandir(base_path().'/resources/views/themes', SCANDIR_SORT_ASCENDING);
20 20
         $themeList[] = 'None';
21 21
         foreach ($themes as $theme) {
22
-            if (! str_contains($theme, '.') && ! \in_array($theme, $ignoredThemes, false) && File::isDirectory(base_path().'/resources/views/themes/'.$theme)) {
22
+            if (!str_contains($theme, '.') && !\in_array($theme, $ignoredThemes, false) && File::isDirectory(base_path().'/resources/views/themes/'.$theme)) {
23 23
                 $themeList[] = $theme;
24 24
             }
25 25
         }
@@ -39,12 +39,12 @@  discard block
 block discarded – undo
39 39
         $string = '';
40 40
         $gzFile = @gzopen($filePath, 'rb', 0);
41 41
         if ($gzFile) {
42
-            while (! gzeof($gzFile)) {
42
+            while (!gzeof($gzFile)) {
43 43
                 $temp = gzread($gzFile, 1024);
44 44
                 // Check for empty string.
45 45
                 // Without this the loop would be endless and consume 100% CPU.
46 46
                 // Do not set $string empty here, as the data might still be good.
47
-                if (! $temp) {
47
+                if (!$temp) {
48 48
                     break;
49 49
                 }
50 50
                 $string .= $temp;
@@ -102,15 +102,14 @@  discard block
 block discarded – undo
102 102
         $fileSpecTemplate = '%s/%s%s';
103 103
         $fileSpec = '';
104 104
 
105
-        if (! empty($options['id']) && \in_array(
105
+        if (!empty($options['id']) && \in_array(
106 106
             $options['type'],
107 107
             ['anime', 'audio', 'audiosample', 'book', 'console', 'games', 'movies', 'music', 'preview', 'sample', 'tvrage', 'video', 'xxx'],
108 108
             false
109 109
         )
110 110
         ) {
111 111
             $fileSpec = sprintf($fileSpecTemplate, $options['type'], $options['id'], $options['suffix']);
112
-            $fileSpec = file_exists(storage_path('covers/').$fileSpec) ? $fileSpec :
113
-                sprintf($fileSpecTemplate, $options['type'], 'no', $options['suffix']);
112
+            $fileSpec = file_exists(storage_path('covers/').$fileSpec) ? $fileSpec : sprintf($fileSpecTemplate, $options['type'], 'no', $options['suffix']);
114 113
         }
115 114
 
116 115
         return $fileSpec;
Please login to merge, or discard this patch.
Blacklight/Releases.php 1 patch
Spacing   +40 added lines, -40 removed lines patch added patch discarded remove patch
@@ -274,7 +274,7 @@  discard block
 block discarded – undo
274 274
 				GROUP BY r.id
275 275
 				ORDER BY %s %s %s",
276 276
             $this->uSQL($userShows, 'videos_id'),
277
-            (! empty($excludedCats) ? ' AND r.categories_id NOT IN ('.implode(',', $excludedCats).')' : ''),
277
+            (!empty($excludedCats) ? ' AND r.categories_id NOT IN ('.implode(',', $excludedCats).')' : ''),
278 278
             NZB::NZB_ADDED,
279 279
             Category::TV_ROOT,
280 280
             Category::TV_OTHER,
@@ -344,7 +344,7 @@  discard block
 block discarded – undo
344 344
     {
345 345
         // Delete NZB from disk.
346 346
         $nzbPath = $nzb->NZBPath($identifiers['g']);
347
-        if (! empty($nzbPath)) {
347
+        if (!empty($nzbPath)) {
348 348
             File::delete($nzbPath);
349 349
         }
350 350
 
@@ -384,7 +384,7 @@  discard block
 block discarded – undo
384 384
      */
385 385
     public function updateMulti($guids, $category, $grabs, $videoId, $episodeId, $anidbId, $imdbId)
386 386
     {
387
-        if (! \is_array($guids) || \count($guids) < 1) {
387
+        if (!\is_array($guids) || \count($guids) < 1) {
388 388
             return false;
389 389
         }
390 390
 
@@ -408,7 +408,7 @@  discard block
 block discarded – undo
408 408
         $sql = '(1=2 ';
409 409
         foreach ($userQuery as $query) {
410 410
             $sql .= sprintf('OR (r.%s = %d', $type, $query->$type);
411
-            if (! empty($query->categories)) {
411
+            if (!empty($query->categories)) {
412 412
                 $catsArr = explode('|', $query->categories);
413 413
                 if (\count($catsArr) > 1) {
414 414
                     $sql .= sprintf(' AND r.categories_id IN (%s)', implode(',', $catsArr));
@@ -452,7 +452,7 @@  discard block
 block discarded – undo
452 452
             $orderBy = $this->getBrowseOrder($orderBy);
453 453
         }
454 454
 
455
-        $searchFields = Arr::where($searchArr, static function ($value) {
455
+        $searchFields = Arr::where($searchArr, static function($value) {
456 456
             return $value !== -1;
457 457
         });
458 458
 
@@ -462,7 +462,7 @@  discard block
 block discarded – undo
462 462
             $searchResult = $this->elasticSearch->indexSearch($phrases, $limit);
463 463
         } else {
464 464
             $searchResult = $this->manticoreSearch->searchIndexes('releases_rt', '', [], $searchFields);
465
-            if (! empty($searchResult)) {
465
+            if (!empty($searchResult)) {
466 466
                 $searchResult = Arr::wrap(Arr::get($searchResult, 'id'));
467 467
             }
468 468
         }
@@ -553,7 +553,7 @@  discard block
 block discarded – undo
553 553
                 $searchResult = $this->elasticSearch->indexSearchApi($searchName, $limit);
554 554
             } else {
555 555
                 $searchResult = $this->manticoreSearch->searchIndexes('releases_rt', $searchName, ['searchname']);
556
-                if (! empty($searchResult)) {
556
+                if (!empty($searchResult)) {
557 557
                     $searchResult = Arr::wrap(Arr::get($searchResult, 'id'));
558 558
                 }
559 559
             }
@@ -569,7 +569,7 @@  discard block
 block discarded – undo
569 569
             ((int) $groupName !== -1 ? sprintf(' AND r.groups_id = %d ', UsenetGroup::getIDByName($groupName)) : ''),
570 570
             $catQuery,
571 571
             (\count($excludedCats) > 0 ? ' AND r.categories_id NOT IN ('.implode(',', $excludedCats).')' : ''),
572
-            (! empty($searchResult) ? 'AND r.id IN ('.implode(',', $searchResult).')' : ''),
572
+            (!empty($searchResult) ? 'AND r.id IN ('.implode(',', $searchResult).')' : ''),
573 573
             ($minSize > 0 ? sprintf('AND r.size >= %d', $minSize) : '')
574 574
         );
575 575
         $baseSql = sprintf(
@@ -603,7 +603,7 @@  discard block
 block discarded – undo
603 603
         if ($releases !== null) {
604 604
             return $releases;
605 605
         }
606
-        if ($searchName !== -1 && ! empty($searchResult)) {
606
+        if ($searchName !== -1 && !empty($searchResult)) {
607 607
             $releases = self::fromQuery($sql);
608 608
         } elseif ($searchName !== -1 && empty($searchResult)) {
609 609
             $releases = collect();
@@ -653,13 +653,13 @@  discard block
 block discarded – undo
653 653
                 ($airDate !== '' ? sprintf('AND DATE(tve.firstaired) = %s', escapeString($airDate)) : '')
654 654
             );
655 655
             $show = self::fromQuery($showQry);
656
-            if (! empty($show[0]) && $show->isNotEmpty()) {
657
-                if ((! empty($series) || ! empty($episode) || ! empty($airDate)) && $show[0]->episodes !== '') {
656
+            if (!empty($show[0]) && $show->isNotEmpty()) {
657
+                if ((!empty($series) || !empty($episode) || !empty($airDate)) && $show[0]->episodes !== '') {
658 658
                     $showSql = sprintf('AND r.tv_episodes_id IN (%s)', $show[0]->episodes);
659 659
                 } elseif ((int) $show[0]->video > 0) {
660 660
                     $showSql = 'AND r.videos_id = '.$show[0]->video;
661 661
                     // If $series is set but episode is not, return Season Packs only
662
-                    if (! empty($series) && empty($episode)) {
662
+                    if (!empty($series) && empty($episode)) {
663 663
                         $showSql .= ' AND r.tv_episodes_id = 0';
664 664
                     }
665 665
                 } else {
@@ -672,22 +672,22 @@  discard block
 block discarded – undo
672 672
             }
673 673
         }
674 674
         // If $name is set it is a fallback search, add available SxxExx/airdate info to the query
675
-        if (! empty($name) && $showSql === '') {
676
-            if (! empty($series) && (int) $series < 1900) {
675
+        if (!empty($name) && $showSql === '') {
676
+            if (!empty($series) && (int) $series < 1900) {
677 677
                 $name .= sprintf(' S%s', str_pad($series, 2, '0', STR_PAD_LEFT));
678
-                if (! empty($episode) && ! str_contains($episode, '/')) {
678
+                if (!empty($episode) && !str_contains($episode, '/')) {
679 679
                     $name .= sprintf('E%s', str_pad($episode, 2, '0', STR_PAD_LEFT));
680 680
                 }
681
-            } elseif (! empty($airDate)) {
681
+            } elseif (!empty($airDate)) {
682 682
                 $name .= sprintf(' %s', str_replace(['/', '-', '.', '_'], ' ', $airDate));
683 683
             }
684 684
         }
685
-        if (! empty($name)) {
685
+        if (!empty($name)) {
686 686
             if (config('nntmux.elasticsearch_enabled') === true) {
687 687
                 $searchResult = $this->elasticSearch->indexSearchTMA($name, $limit);
688 688
             } else {
689 689
                 $searchResult = $this->manticoreSearch->searchIndexes('releases_rt', $name, ['searchname']);
690
-                if (! empty($searchResult)) {
690
+                if (!empty($searchResult)) {
691 691
                     $searchResult = Arr::wrap(Arr::get($searchResult, 'id'));
692 692
                 }
693 693
             }
@@ -703,11 +703,11 @@  discard block
 block discarded – undo
703 703
             NZB::NZB_ADDED,
704 704
             $this->showPasswords(),
705 705
             $showSql,
706
-            (! empty($name) && ! empty($searchResult)) ? 'AND r.id IN ('.implode(',', $searchResult).')' : '',
706
+            (!empty($name) && !empty($searchResult)) ? 'AND r.id IN ('.implode(',', $searchResult).')' : '',
707 707
             (empty($searchResult)) ? Category::getCategorySearch($cat) : '',
708 708
             $maxAge > 0 ? sprintf('AND r.postdate > NOW() - INTERVAL %d DAY', $maxAge) : '',
709 709
             $minSize > 0 ? sprintf('AND r.size >= %d', $minSize) : '',
710
-            ! empty($excludedCategories) ? sprintf('AND r.categories_id NOT IN('.implode(',', $excludedCategories).')') : ''
710
+            !empty($excludedCategories) ? sprintf('AND r.categories_id NOT IN('.implode(',', $excludedCategories).')') : ''
711 711
         );
712 712
         $baseSql = sprintf(
713 713
             "SELECT r.searchname, r.guid, r.postdate, r.groups_id, r.categories_id, r.size, r.totalpart, r.fromname, r.passwordstatus, r.grabs, r.comments, r.adddate, r.videos_id, r.tv_episodes_id, r.haspreview, r.jpgstatus,
@@ -743,7 +743,7 @@  discard block
 block discarded – undo
743 743
         if ($releases !== null) {
744 744
             return $releases;
745 745
         }
746
-        $releases = ((! empty($name) && ! empty($searchResult)) || empty($name)) ? self::fromQuery($sql) : [];
746
+        $releases = ((!empty($name) && !empty($searchResult)) || empty($name)) ? self::fromQuery($sql) : [];
747 747
         if (count($releases) !== 0 && $releases->isNotEmpty()) {
748 748
             $releases[0]->_totalrows = $this->getPagerCount(
749 749
                 preg_replace('#LEFT(\s+OUTER)?\s+JOIN\s+(?!tv_episodes)\s+.*ON.*=.*\n#i', ' ', $baseSql)
@@ -789,12 +789,12 @@  discard block
 block discarded – undo
789 789
             );
790 790
             $show = self::fromQuery($showQry);
791 791
             if ($show->isNotEmpty()) {
792
-                if ((! empty($series) || ! empty($episode) || ! empty($airDate)) && $show[0]->episodes !== '') {
792
+                if ((!empty($series) || !empty($episode) || !empty($airDate)) && $show[0]->episodes !== '') {
793 793
                     $showSql = sprintf('AND r.tv_episodes_id IN (%s)', $show[0]->episodes);
794 794
                 } elseif ((int) $show[0]->video > 0) {
795 795
                     $showSql = 'AND r.videos_id = '.$show[0]->video;
796 796
                     // If $series is set but episode is not, return Season Packs only
797
-                    if (! empty($series) && empty($episode)) {
797
+                    if (!empty($series) && empty($episode)) {
798 798
                         $showSql .= ' AND r.tv_episodes_id = 0';
799 799
                     }
800 800
                 } else {
@@ -807,22 +807,22 @@  discard block
 block discarded – undo
807 807
             }
808 808
         }
809 809
         // If $name is set it is a fallback search, add available SxxExx/airdate info to the query
810
-        if (! empty($name) && $showSql === '') {
811
-            if (! empty($series) && (int) $series < 1900) {
810
+        if (!empty($name) && $showSql === '') {
811
+            if (!empty($series) && (int) $series < 1900) {
812 812
                 $name .= sprintf(' S%s', str_pad($series, 2, '0', STR_PAD_LEFT));
813
-                if (! empty($episode) && ! str_contains($episode, '/')) {
813
+                if (!empty($episode) && !str_contains($episode, '/')) {
814 814
                     $name .= sprintf('E%s', str_pad($episode, 2, '0', STR_PAD_LEFT));
815 815
                 }
816
-            } elseif (! empty($airDate)) {
816
+            } elseif (!empty($airDate)) {
817 817
                 $name .= sprintf(' %s', str_replace(['/', '-', '.', '_'], ' ', $airDate));
818 818
             }
819 819
         }
820
-        if (! empty($name)) {
820
+        if (!empty($name)) {
821 821
             if (config('nntmux.elasticsearch_enabled') === true) {
822 822
                 $searchResult = $this->elasticSearch->indexSearchTMA($name, $limit);
823 823
             } else {
824 824
                 $searchResult = $this->manticoreSearch->searchIndexes('releases_rt', $name, ['searchname']);
825
-                if (! empty($searchResult)) {
825
+                if (!empty($searchResult)) {
826 826
                     $searchResult = Arr::wrap(Arr::get($searchResult, 'id'));
827 827
                 }
828 828
             }
@@ -838,11 +838,11 @@  discard block
 block discarded – undo
838 838
             NZB::NZB_ADDED,
839 839
             $this->showPasswords(),
840 840
             $showSql,
841
-            (! empty($searchResult) ? 'AND r.id IN ('.implode(',', $searchResult).')' : ''),
841
+            (!empty($searchResult) ? 'AND r.id IN ('.implode(',', $searchResult).')' : ''),
842 842
             Category::getCategorySearch($cat),
843 843
             ($maxAge > 0 ? sprintf('AND r.postdate > NOW() - INTERVAL %d DAY', $maxAge) : ''),
844 844
             ($minSize > 0 ? sprintf('AND r.size >= %d', $minSize) : ''),
845
-            ! empty($excludedCategories) ? sprintf('AND r.categories_id NOT IN('.implode(',', $excludedCategories).')') : ''
845
+            !empty($excludedCategories) ? sprintf('AND r.categories_id NOT IN('.implode(',', $excludedCategories).')') : ''
846 846
         );
847 847
         $baseSql = sprintf(
848 848
             "SELECT r.searchname, r.guid, r.postdate, r.groups_id, r.categories_id, r.size, r.totalpart, r.fromname, r.passwordstatus, r.grabs, r.comments, r.adddate, r.tv_episodes_id, r.haspreview, r.jpgstatus,
@@ -892,12 +892,12 @@  discard block
 block discarded – undo
892 892
      */
893 893
     public function animeSearch($aniDbID, int $offset = 0, int $limit = 100, string $name = '', array $cat = [-1], int $maxAge = -1, array $excludedCategories = []): mixed
894 894
     {
895
-        if (! empty($name)) {
895
+        if (!empty($name)) {
896 896
             if (config('nntmux.elasticsearch_enabled') === true) {
897 897
                 $searchResult = $this->elasticSearch->indexSearchTMA($name, $limit);
898 898
             } else {
899 899
                 $searchResult = $this->manticoreSearch->searchIndexes('releases_rt', $name, ['searchname']);
900
-                if (! empty($searchResult)) {
900
+                if (!empty($searchResult)) {
901 901
                     $searchResult = Arr::wrap(Arr::get($searchResult, 'id'));
902 902
                 }
903 903
             }
@@ -914,8 +914,8 @@  discard block
 block discarded – undo
914 914
             $this->showPasswords(),
915 915
             NZB::NZB_ADDED,
916 916
             ($aniDbID > -1 ? sprintf(' AND r.anidbid = %d ', $aniDbID) : ''),
917
-            (! empty($searchResult) ? 'AND r.id IN ('.implode(',', $searchResult).')' : ''),
918
-            ! empty($excludedCategories) ? sprintf('AND r.categories_id NOT IN('.implode(',', $excludedCategories).')') : '',
917
+            (!empty($searchResult) ? 'AND r.id IN ('.implode(',', $searchResult).')' : ''),
918
+            !empty($excludedCategories) ? sprintf('AND r.categories_id NOT IN('.implode(',', $excludedCategories).')') : '',
919 919
             Category::getCategorySearch($cat),
920 920
             ($maxAge > 0 ? sprintf(' AND r.postdate > NOW() - INTERVAL %d DAY ', $maxAge) : '')
921 921
         );
@@ -964,12 +964,12 @@  discard block
 block discarded – undo
964 964
      */
965 965
     public function moviesSearch(int $imDbId = -1, int $tmDbId = -1, int $traktId = -1, int $offset = 0, int $limit = 100, string $name = '', array $cat = [-1], int $maxAge = -1, int $minSize = 0, array $excludedCategories = []): mixed
966 966
     {
967
-        if (! empty($name)) {
967
+        if (!empty($name)) {
968 968
             if (config('nntmux.elasticsearch_enabled') === true) {
969 969
                 $searchResult = $this->elasticSearch->indexSearchTMA($name, $limit);
970 970
             } else {
971 971
                 $searchResult = $this->manticoreSearch->searchIndexes('releases_rt', $name, ['searchname']);
972
-                if (! empty($searchResult)) {
972
+                if (!empty($searchResult)) {
973 973
                     $searchResult = Arr::wrap(Arr::get($searchResult, 'id'));
974 974
                 }
975 975
             }
@@ -986,11 +986,11 @@  discard block
 block discarded – undo
986 986
 			%s %s %s %s %s %s %s',
987 987
             NZB::NZB_ADDED,
988 988
             $this->showPasswords(),
989
-            (! empty($searchResult) ? 'AND r.id IN ('.implode(',', $searchResult).')' : ''),
989
+            (!empty($searchResult) ? 'AND r.id IN ('.implode(',', $searchResult).')' : ''),
990 990
             ($imDbId !== -1 && is_numeric($imDbId)) ? sprintf(' AND m.imdbid = \'%s\' ', $imDbId) : '',
991 991
             ($tmDbId !== -1 && is_numeric($tmDbId)) ? sprintf(' AND m.tmdbid = %d ', $tmDbId) : '',
992 992
             ($traktId !== -1 && is_numeric($traktId)) ? sprintf(' AND m.traktid = %d ', $traktId) : '',
993
-            ! empty($excludedCategories) ? sprintf('AND r.categories_id NOT IN('.implode(',', $excludedCategories).')') : '',
993
+            !empty($excludedCategories) ? sprintf('AND r.categories_id NOT IN('.implode(',', $excludedCategories).')') : '',
994 994
             Category::getCategorySearch($cat),
995 995
             $maxAge > 0 ? sprintf(' AND r.postdate > NOW() - INTERVAL %d DAY ', $maxAge) : '',
996 996
             $minSize > 0 ? sprintf('AND r.size >= %d', $minSize) : ''
@@ -1042,7 +1042,7 @@  discard block
 block discarded – undo
1042 1042
             $parentCat = $catRow['root_categories_id'];
1043 1043
 
1044 1044
             $results = $this->search(['searchname' => getSimilarName($name)], -1, '', '', -1, -1, 0, config('nntmux.items_per_page'), '', -1, $excludedCats, 'basic', [$parentCat]);
1045
-            if (! $results) {
1045
+            if (!$results) {
1046 1046
                 return $ret;
1047 1047
             }
1048 1048
 
Please login to merge, or discard this patch.
Blacklight/Binaries.php 1 patch
Spacing   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -377,7 +377,7 @@  discard block
 block discarded – undo
377 377
 
378 378
             $done = false;
379 379
             // Get all the parts (in portions of $this->messageBuffer to not use too much memory).
380
-            while (! $done) {
380
+            while (!$done) {
381 381
                 // Increment last until we reach $groupLast (group newest article).
382 382
                 if ($total > $this->messageBuffer) {
383 383
                     if ((string) ($first + $this->messageBuffer) > $groupLast) {
@@ -401,7 +401,7 @@  discard block
 block discarded – undo
401 401
                 $scanSummary = $this->scan($groupMySQL, $first, $last);
402 402
 
403 403
                 // Check if we fetched headers.
404
-                if (! empty($scanSummary)) {
404
+                if (!empty($scanSummary)) {
405 405
                     // If new group, update first record & postdate
406 406
                     if ($groupMySQL['first_record_postdate'] === null && (int) $groupMySQL['first_record'] === 0) {
407 407
                         $groupMySQL['first_record'] = $scanSummary['firstArticleNumber'];
@@ -425,7 +425,7 @@  discard block
 block discarded – undo
425 425
                     }
426 426
 
427 427
                     $scanSummary['lastArticleDate'] = (isset($scanSummary['lastArticleDate']) ? strtotime($scanSummary['lastArticleDate']) : false);
428
-                    if (! is_numeric($scanSummary['lastArticleDate'])) {
428
+                    if (!is_numeric($scanSummary['lastArticleDate'])) {
429 429
                         $scanSummary['lastArticleDate'] = $this->postdate($scanSummary['lastArticleNumber'], $groupNNTP);
430 430
                     }
431 431
 
@@ -574,7 +574,7 @@  discard block
 block discarded – undo
574 574
 
575 575
             // If set we are running in partRepair mode.
576 576
             if ($partRepair && $missingParts !== null) {
577
-                if (! \in_array($header['Number'], $missingParts, false)) {
577
+                if (!\in_array($header['Number'], $missingParts, false)) {
578 578
                     // If article isn't one that is missing skip it.
579 579
                     continue;
580 580
                 }
@@ -619,15 +619,15 @@  discard block
 block discarded – undo
619 619
 
620 620
         unset($headers); // Reclaim memory now that headers are split.
621 621
 
622
-        if (! empty($this->_binaryBlacklistIdsToUpdate)) {
622
+        if (!empty($this->_binaryBlacklistIdsToUpdate)) {
623 623
             $this->updateBlacklistUsage();
624 624
         }
625 625
 
626
-        if ($this->_echoCLI && ! $partRepair) {
626
+        if ($this->_echoCLI && !$partRepair) {
627 627
             $this->outputHeaderInitial();
628 628
         }
629 629
 
630
-        if (! empty($stdHeaders)) {
630
+        if (!empty($stdHeaders)) {
631 631
             $this->storeHeaders($stdHeaders);
632 632
         }
633 633
         unset($stdHeaders);
@@ -702,7 +702,7 @@  discard block
 block discarded – undo
702 702
         // Loop articles, figure out files/parts.
703 703
         foreach ($headers as $this->header) {
704 704
             // Set up the info for inserting into parts/binaries/collections tables.
705
-            if (! isset($articles[$this->header['matches'][1]])) {
705
+            if (!isset($articles[$this->header['matches'][1]])) {
706 706
                 // Attempt to find the file count. If it is not found, set it to 0.
707 707
                 $fileCount = $this->getFileCount($this->header['matches'][1]);
708 708
                 if ($fileCount[1] === 0 && $fileCount[3] === 0) {
@@ -717,7 +717,7 @@  discard block
 block discarded – undo
717 717
                 $this->header['CollectionKey'] = $collMatch['name'].$fileCount[3];
718 718
 
719 719
                 // If this header's collection key isn't in memory, attempt to insert the collection
720
-                if (! isset($collectionIDs[$this->header['CollectionKey']])) {
720
+                if (!isset($collectionIDs[$this->header['CollectionKey']])) {
721 721
                     /* Date from header should be a string this format:
722 722
                      * 31 Mar 2014 15:36:04 GMT or 6 Oct 1998 04:38:40 -0500
723 723
                      * Still make sure it's not unix time, convert it to unix time if it is.
@@ -748,7 +748,7 @@  discard block
 block discarded – undo
748 748
 
749 749
                     $finalXrefArray = [];
750 750
                     foreach ($tempHeaderXrefs as $tempHeaderXref) {
751
-                        if (! in_array($tempHeaderXref, $tempXrefsData, false)) {
751
+                        if (!in_array($tempHeaderXref, $tempXrefsData, false)) {
752 752
                             $finalXrefArray[] = $tempHeaderXref;
753 753
                         }
754 754
                     }
@@ -888,12 +888,12 @@  discard block
 block discarded – undo
888 888
         $iterator1 = 0;
889 889
         $iterator2 = $msgCount - 1;
890 890
         while (true) {
891
-            if (! isset($returnArray['firstArticleNumber']) && isset($headers[$iterator1]['Number'])) {
891
+            if (!isset($returnArray['firstArticleNumber']) && isset($headers[$iterator1]['Number'])) {
892 892
                 $returnArray['firstArticleNumber'] = $headers[$iterator1]['Number'];
893 893
                 $returnArray['firstArticleDate'] = $headers[$iterator1]['Date'];
894 894
             }
895 895
 
896
-            if (! isset($returnArray['lastArticleNumber']) && isset($headers[$iterator2]['Number'])) {
896
+            if (!isset($returnArray['lastArticleNumber']) && isset($headers[$iterator2]['Number'])) {
897 897
                 $returnArray['lastArticleNumber'] = $headers[$iterator2]['Number'];
898 898
                 $returnArray['lastArticleDate'] = $headers[$iterator2]['Date'];
899 899
             }
@@ -1067,7 +1067,7 @@  discard block
 block discarded – undo
1067 1067
         }
1068 1068
 
1069 1069
         // Remove articles that we cant fetch after x attempts.
1070
-        DB::transaction(function () use ($groupArr) {
1070
+        DB::transaction(function() use ($groupArr) {
1071 1071
             DB::delete(
1072 1072
                 sprintf(
1073 1073
                     'DELETE FROM missed_parts WHERE attempts >= %d AND groups_id = %d',
@@ -1106,14 +1106,14 @@  discard block
 block discarded – undo
1106 1106
                     $currentPost
1107 1107
                 )
1108 1108
             );
1109
-            if (! empty($local) && \count($local) > 0) {
1109
+            if (!empty($local) && \count($local) > 0) {
1110 1110
                 $date = $local[0]->date;
1111 1111
                 break;
1112 1112
             }
1113 1113
 
1114 1114
             // If we could not find it locally, try usenet.
1115 1115
             $header = $this->_nntp->getXOVER($currentPost);
1116
-            if (! $this->_nntp::isError($header) && isset($header[0]['Date']) && $header[0]['Date'] !== '') {
1116
+            if (!$this->_nntp::isError($header) && isset($header[0]['Date']) && $header[0]['Date'] !== '') {
1117 1117
                 $date = $header[0]['Date'];
1118 1118
                 break;
1119 1119
             }
@@ -1138,7 +1138,7 @@  discard block
 block discarded – undo
1138 1138
         } while ($attempts++ <= 20);
1139 1139
 
1140 1140
         // If we didn't get a date, set it to now.
1141
-        if (! $date) {
1141
+        if (!$date) {
1142 1142
             $date = time();
1143 1143
         } else {
1144 1144
             $date = strtotime($date);
@@ -1201,7 +1201,7 @@  discard block
 block discarded – undo
1201 1201
             $articleTime = $this->postdate($wantedArticle, $data);
1202 1202
 
1203 1203
             // Article doesn't exist, start again with something random
1204
-            if (! $articleTime) {
1204
+            if (!$articleTime) {
1205 1205
                 $wantedArticle = random_int($aMin, $aMax);
1206 1206
                 $articleTime = $this->postdate($wantedArticle, $data);
1207 1207
             }
@@ -1273,7 +1273,7 @@  discard block
 block discarded – undo
1273 1273
         foreach ($numbers as $number) {
1274 1274
             $sql .= $number.',';
1275 1275
         }
1276
-        DB::transaction(static function () use ($groupID, $sql) {
1276
+        DB::transaction(static function() use ($groupID, $sql) {
1277 1277
             DB::delete(rtrim($sql, ',').') AND groups_id = '.$groupID);
1278 1278
         }, 10);
1279 1279
     }
@@ -1288,10 +1288,10 @@  discard block
 block discarded – undo
1288 1288
      */
1289 1289
     protected function _retrieveBlackList(string $groupName): void
1290 1290
     {
1291
-        if (! isset($this->blackList[$groupName])) {
1291
+        if (!isset($this->blackList[$groupName])) {
1292 1292
             $this->blackList[$groupName] = $this->getBlacklist(true, self::OPTYPE_BLACKLIST, $groupName, true);
1293 1293
         }
1294
-        if (! isset($this->whiteList[$groupName])) {
1294
+        if (!isset($this->whiteList[$groupName])) {
1295 1295
             $this->whiteList[$groupName] = $this->getBlacklist(true, self::OPTYPE_WHITELIST, $groupName, true);
1296 1296
         }
1297 1297
         $this->_listsFound[$groupName] = ($this->blackList[$groupName] || $this->whiteList[$groupName]);
@@ -1305,10 +1305,10 @@  discard block
 block discarded – undo
1305 1305
      */
1306 1306
     public function isBlackListed(array $msg, string $groupName): bool
1307 1307
     {
1308
-        if (! isset($this->_listsFound[$groupName])) {
1308
+        if (!isset($this->_listsFound[$groupName])) {
1309 1309
             $this->_retrieveBlackList($groupName);
1310 1310
         }
1311
-        if (! $this->_listsFound[$groupName]) {
1311
+        if (!$this->_listsFound[$groupName]) {
1312 1312
             return false;
1313 1313
         }
1314 1314
 
@@ -1336,7 +1336,7 @@  discard block
 block discarded – undo
1336 1336
 
1337 1337
         // Check if the field is blacklisted.
1338 1338
 
1339
-        if (! $blackListed && $this->blackList[$groupName]) {
1339
+        if (!$blackListed && $this->blackList[$groupName]) {
1340 1340
             foreach ($this->blackList[$groupName] as $blackList) {
1341 1341
                 if (preg_match('/'.$blackList->regex.'/i', $field[$blackList->msgcol])) {
1342 1342
                     $blackListed = true;
@@ -1446,7 +1446,7 @@  discard block
 block discarded – undo
1446 1446
      */
1447 1447
     public function delete(int $collectionID): void
1448 1448
     {
1449
-        DB::transaction(static function () use ($collectionID) {
1449
+        DB::transaction(static function() use ($collectionID) {
1450 1450
             DB::delete(sprintf('DELETE FROM collections WHERE id = %d', $collectionID));
1451 1451
         }, 10);
1452 1452
 
@@ -1493,7 +1493,7 @@  discard block
 block discarded – undo
1493 1493
 
1494 1494
     private function getFileCount($subject): array
1495 1495
     {
1496
-        if (! preg_match('/[[(\s](\d{1,5})(\/|[\s_]of[\s_]|-)(\d{1,5})[])\s$:]/i', $subject, $fileCount)) {
1496
+        if (!preg_match('/[[(\s](\d{1,5})(\/|[\s_]of[\s_]|-)(\d{1,5})[])\s$:]/i', $subject, $fileCount)) {
1497 1497
             $fileCount[1] = $fileCount[3] = 0;
1498 1498
         }
1499 1499
 
Please login to merge, or discard this patch.
Blacklight/processing/ProcessReleases.php 1 patch
Spacing   +34 added lines, -34 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
         $this->echoCLI = config('nntmux.echocli');
111 111
         $groupID = '';
112 112
 
113
-        if (! empty($groupName)) {
113
+        if (!empty($groupName)) {
114 114
             $groupInfo = UsenetGroup::getByName($groupName);
115 115
             if ($groupInfo !== null) {
116 116
                 $groupID = $groupInfo['id'];
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
             $this->colorCLI->header('Starting release update process ('.now()->format('Y-m-d H:i:s').')');
122 122
         }
123 123
 
124
-        if (! file_exists(Settings::settingValue('..nzbpath'))) {
124
+        if (!file_exists(Settings::settingValue('..nzbpath'))) {
125 125
             if ($this->echoCLI) {
126 126
                 $this->colorCLI->error('Bad or missing nzb directory - '.Settings::settingValue('..nzbpath'));
127 127
             }
@@ -182,7 +182,7 @@  discard block
 block discarded – undo
182 182
         $cat = new Categorize();
183 183
         $categorized = $total = 0;
184 184
         $releasesQuery = Release::query()->where(['categories_id' => Category::OTHER_MISC, 'iscategorized' => 0]);
185
-        if (! empty($groupId)) {
185
+        if (!empty($groupId)) {
186 186
             $releasesQuery->where('groups_id', $groupId);
187 187
         }
188 188
         $releases = $releasesQuery->select(['id', 'fromname', 'groups_id', $type])->get();
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
             $this->colorCLI->header('Process Releases -> Attempting to find complete collections.');
219 219
         }
220 220
 
221
-        $where = (! empty($groupID) ? ' AND c.groups_id = '.$groupID.' ' : ' ');
221
+        $where = (!empty($groupID) ? ' AND c.groups_id = '.$groupID.' ' : ' ');
222 222
 
223 223
         $this->processStuckCollections($groupID);
224 224
         $this->collectionFileCheckStage1($groupID);
@@ -231,7 +231,7 @@  discard block
 block discarded – undo
231 231
         if ($this->echoCLI) {
232 232
             $countQuery = Collection::query()->where('filecheck', self::COLLFC_COMPPART);
233 233
 
234
-            if (! empty($groupID)) {
234
+            if (!empty($groupID)) {
235 235
                 $countQuery->where('groups_id', $groupID);
236 236
             }
237 237
             $count = $countQuery->count('id');
@@ -258,7 +258,7 @@  discard block
 block discarded – undo
258 258
             $this->colorCLI->header('Process Releases -> Calculating collection sizes (in bytes).');
259 259
         }
260 260
         // Get the total size in bytes of the collection for collections where filecheck = 2.
261
-        DB::transaction(function () use ($groupID, $startTime) {
261
+        DB::transaction(function() use ($groupID, $startTime) {
262 262
             $checked = DB::update(
263 263
                 sprintf(
264 264
                     '
@@ -274,7 +274,7 @@  discard block
 block discarded – undo
274 274
 				AND c.filesize = 0 %s',
275 275
                     self::COLLFC_SIZED,
276 276
                     self::COLLFC_COMPPART,
277
-                    (! empty($groupID) ? ' AND c.groups_id = '.$groupID : ' ')
277
+                    (!empty($groupID) ? ' AND c.groups_id = '.$groupID : ' ')
278 278
                 )
279 279
             );
280 280
             if ($checked > 0 && $this->echoCLI) {
@@ -313,16 +313,16 @@  discard block
 block discarded – undo
313 313
 
314 314
             $groupMinimums = UsenetGroup::getGroupByID($grpID['id']);
315 315
             if ($groupMinimums !== null) {
316
-                if (! empty($groupMinimums['minsizetoformrelease']) && $groupMinimums['minsizetoformrelease'] > 0) {
316
+                if (!empty($groupMinimums['minsizetoformrelease']) && $groupMinimums['minsizetoformrelease'] > 0) {
317 317
                     $groupMinSizeSetting = (int) $groupMinimums['minsizetoformrelease'];
318 318
                 }
319
-                if (! empty($groupMinimums['minfilestoformrelease']) && $groupMinimums['minfilestoformrelease'] > 0) {
319
+                if (!empty($groupMinimums['minfilestoformrelease']) && $groupMinimums['minfilestoformrelease'] > 0) {
320 320
                     $groupMinFilesSetting = (int) $groupMinimums['minfilestoformrelease'];
321 321
                 }
322 322
             }
323 323
 
324 324
             if (Collection::query()->where('filecheck', self::COLLFC_SIZED)->where('filesize', '>', 0)->first() !== null) {
325
-                DB::transaction(function () use (
325
+                DB::transaction(function() use (
326 326
                     $groupMinSizeSetting,
327 327
                     $minSizeSetting,
328 328
                     $minSizeDeleted,
@@ -395,7 +395,7 @@  discard block
 block discarded – undo
395 395
         $collectionsQuery = Collection::query()
396 396
             ->where('collections.filecheck', self::COLLFC_SIZED)
397 397
             ->where('collections.filesize', '>', 0);
398
-        if (! empty($groupID)) {
398
+        if (!empty($groupID)) {
399 399
             $collectionsQuery->where('collections.groups_id', $groupID);
400 400
         }
401 401
         $collectionsQuery->select(['collections.*', 'usenet_groups.name as gname'])
@@ -450,7 +450,7 @@  discard block
 block discarded – undo
450 450
                 $releaseID = Release::insertRelease(
451 451
                     [
452 452
                         'name' => $cleanRelName,
453
-                        'searchname' => ! empty($cleanedName) ? mb_convert_encoding($cleanedName, 'UTF-8', mb_list_encodings()) : $cleanRelName,
453
+                        'searchname' => !empty($cleanedName) ? mb_convert_encoding($cleanedName, 'UTF-8', mb_list_encodings()) : $cleanRelName,
454 454
                         'totalpart' => $collection->totalfiles,
455 455
                         'groups_id' => $collection->groups_id,
456 456
                         'guid' => createGUID(),
@@ -466,7 +466,7 @@  discard block
 block discarded – undo
466 466
 
467 467
                 if ($releaseID !== null) {
468 468
                     // Update collections table to say we inserted the release.
469
-                    DB::transaction(static function () use ($collection, $releaseID) {
469
+                    DB::transaction(static function() use ($collection, $releaseID) {
470 470
                         Collection::query()->where('id', $collection->id)->update(['filecheck' => self::COLLFC_INSERTED, 'releases_id' => $releaseID]);
471 471
                     }, 10);
472 472
 
@@ -527,7 +527,7 @@  discard block
 block discarded – undo
527 527
                 }
528 528
             } else {
529 529
                 // The release was already in the DB, so delete the collection.
530
-                DB::transaction(static function () use ($collection) {
530
+                DB::transaction(static function() use ($collection) {
531 531
                     Collection::query()->where('collectionhash', $collection->collectionhash)->delete();
532 532
                 }, 10);
533 533
 
@@ -568,7 +568,7 @@  discard block
 block discarded – undo
568 568
         }
569 569
 
570 570
         $releasesQuery = Release::query()->with('category.parent')->where('nzbstatus', '=', 0);
571
-        if (! empty($groupID)) {
571
+        if (!empty($groupID)) {
572 572
             $releasesQuery->where('releases.groups_id', $groupID);
573 573
         }
574 574
         $releases = $releasesQuery->select(['id', 'guid', 'name', 'categories_id'])->get();
@@ -671,7 +671,7 @@  discard block
 block discarded – undo
671 671
                 ), true);
672 672
         }
673 673
 
674
-        DB::transaction(function () use ($deletedCount, $startTime) {
674
+        DB::transaction(function() use ($deletedCount, $startTime) {
675 675
             $deleted = 0;
676 676
             $deleteQuery = Collection::query()
677 677
                 ->where('dateadded', '<', now()->subHours(Settings::settingValue('..partretentionhours')))
@@ -834,7 +834,7 @@  discard block
 block discarded – undo
834 834
             $releases = Release::query()
835 835
                 ->select(['id', 'guid'])
836 836
                 ->where('passwordstatus', '=', Releases::PASSWD_RAR)
837
-                ->orWhereIn('id', function ($query) {
837
+                ->orWhereIn('id', function($query) {
838 838
                     $query->select('releases_id')
839 839
                         ->from('release_files')
840 840
                         ->where('passworded', '=', Releases::PASSWD_RAR);
@@ -893,7 +893,7 @@  discard block
 block discarded – undo
893 893
             foreach ($genrelist as $genre) {
894 894
                 $musicInfoQuery = MusicInfo::query()->where('genre_id', (int) $genre['id'])->select(['id']);
895 895
                 $releases = Release::query()
896
-                    ->joinSub($musicInfoQuery, 'mi', function ($join) {
896
+                    ->joinSub($musicInfoQuery, 'mi', function($join) {
897 897
                         $join->on('releases.musicinfo_id', '=', 'mi.id');
898 898
                     })
899 899
                     ->select(['releases.id', 'releases.guid'])
@@ -979,18 +979,18 @@  discard block
 block discarded – undo
979 979
      */
980 980
     private function collectionFileCheckStage1(int $groupID): void
981 981
     {
982
-        DB::transaction(static function () use ($groupID) {
982
+        DB::transaction(static function() use ($groupID) {
983 983
             $collectionsCheck = Collection::query()->select(['collections.id'])
984 984
                 ->join('binaries', 'binaries.collections_id', '=', 'collections.id')
985 985
                 ->where('collections.totalfiles', '>', 0)
986 986
                 ->where('collections.filecheck', '=', self::COLLFC_DEFAULT);
987
-            if (! empty($groupID)) {
987
+            if (!empty($groupID)) {
988 988
                 $collectionsCheck->where('collections.groups_id', $groupID);
989 989
             }
990 990
             $collectionsCheck->groupBy('binaries.collections_id', 'collections.totalfiles', 'collections.id')
991 991
                 ->havingRaw('COUNT(binaries.id) IN (collections.totalfiles, collections.totalfiles+1)');
992 992
 
993
-            Collection::query()->joinSub($collectionsCheck, 'r', function ($join) {
993
+            Collection::query()->joinSub($collectionsCheck, 'r', function($join) {
994 994
                 $join->on('collections.id', '=', 'r.id');
995 995
             })->update(['collections.filecheck' => self::COLLFC_COMPCOLL]);
996 996
         }, 10);
@@ -1011,25 +1011,25 @@  discard block
 block discarded – undo
1011 1011
      */
1012 1012
     private function collectionFileCheckStage2(int $groupID): void
1013 1013
     {
1014
-        DB::transaction(static function () use ($groupID) {
1014
+        DB::transaction(static function() use ($groupID) {
1015 1015
             $collectionsCheck = Collection::query()->select(['collections.id'])
1016 1016
                 ->join('binaries', 'binaries.collections_id', '=', 'collections.id')
1017 1017
                 ->where('binaries.filenumber', '=', 0)
1018 1018
                 ->where('collections.totalfiles', '>', 0)
1019 1019
                 ->where('collections.filecheck', '=', self::COLLFC_COMPCOLL);
1020
-            if (! empty($groupID)) {
1020
+            if (!empty($groupID)) {
1021 1021
                 $collectionsCheck->where('collections.groups_id', $groupID);
1022 1022
             }
1023 1023
             $collectionsCheck->groupBy('collections.id');
1024 1024
 
1025
-            Collection::query()->joinSub($collectionsCheck, 'r', function ($join) {
1025
+            Collection::query()->joinSub($collectionsCheck, 'r', function($join) {
1026 1026
                 $join->on('collections.id', '=', 'r.id');
1027 1027
             })->update(['collections.filecheck' => self::COLLFC_ZEROPART]);
1028 1028
         }, 10);
1029 1029
 
1030
-        DB::transaction(static function () use ($groupID) {
1030
+        DB::transaction(static function() use ($groupID) {
1031 1031
             $collectionQuery = Collection::query()->where('filecheck', '=', self::COLLFC_COMPCOLL);
1032
-            if (! empty($groupID)) {
1032
+            if (!empty($groupID)) {
1033 1033
                 $collectionQuery->where('groups_id', $groupID);
1034 1034
             }
1035 1035
             $collectionQuery->update(['filecheck' => self::COLLFC_TEMPCOMP]);
@@ -1047,7 +1047,7 @@  discard block
 block discarded – undo
1047 1047
      */
1048 1048
     private function collectionFileCheckStage3(string $where): void
1049 1049
     {
1050
-        DB::transaction(static function () use ($where) {
1050
+        DB::transaction(static function() use ($where) {
1051 1051
             DB::update(
1052 1052
                 sprintf(
1053 1053
                     '
@@ -1071,7 +1071,7 @@  discard block
 block discarded – undo
1071 1071
             );
1072 1072
         }, 10);
1073 1073
 
1074
-        DB::transaction(static function () use ($where) {
1074
+        DB::transaction(static function() use ($where) {
1075 1075
             DB::update(
1076 1076
                 sprintf(
1077 1077
                     '
@@ -1108,7 +1108,7 @@  discard block
 block discarded – undo
1108 1108
      */
1109 1109
     private function collectionFileCheckStage4(string &$where): void
1110 1110
     {
1111
-        DB::transaction(static function () use ($where) {
1111
+        DB::transaction(static function() use ($where) {
1112 1112
             DB::update(
1113 1113
                 sprintf(
1114 1114
                     '
@@ -1138,9 +1138,9 @@  discard block
 block discarded – undo
1138 1138
      */
1139 1139
     private function collectionFileCheckStage5(int $groupId): void
1140 1140
     {
1141
-        DB::transaction(static function () use ($groupId) {
1141
+        DB::transaction(static function() use ($groupId) {
1142 1142
             $collectionQuery = Collection::query()->whereIn('filecheck', [self::COLLFC_TEMPCOMP, self::COLLFC_ZEROPART]);
1143
-            if (! empty($groupId)) {
1143
+            if (!empty($groupId)) {
1144 1144
                 $collectionQuery->where('groups_id', $groupId);
1145 1145
             }
1146 1146
             $collectionQuery->update(['filecheck' => self::COLLFC_COMPCOLL]);
@@ -1158,7 +1158,7 @@  discard block
 block discarded – undo
1158 1158
      */
1159 1159
     private function collectionFileCheckStage6(string &$where): void
1160 1160
     {
1161
-        DB::transaction(function () use ($where) {
1161
+        DB::transaction(function() use ($where) {
1162 1162
             DB::update(
1163 1163
                 sprintf(
1164 1164
                     "
@@ -1188,10 +1188,10 @@  discard block
 block discarded – undo
1188 1188
     {
1189 1189
         $lastRun = Settings::settingValue('indexer.processing.last_run_time');
1190 1190
 
1191
-        DB::transaction(function () use ($groupID, $lastRun) {
1191
+        DB::transaction(function() use ($groupID, $lastRun) {
1192 1192
             $objQuery = Collection::query()
1193 1193
                 ->where('added', '<', Carbon::createFromFormat('Y-m-d H:i:s', $lastRun)->subHours($this->collectionTimeout));
1194
-            if (! empty($groupID)) {
1194
+            if (!empty($groupID)) {
1195 1195
                 $objQuery->where('groups_id', $groupID);
1196 1196
             }
1197 1197
             $obj = $objQuery->delete();
Please login to merge, or discard this patch.
app/Providers/AppServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
         Paginator::useBootstrapFive();
18 18
         $smarty = app('smarty.view');
19 19
         view()->share('smarty', $smarty);
20
-        Gate::define('viewPulse', function (User $user) {
20
+        Gate::define('viewPulse', function(User $user) {
21 21
             return $user->hasRole('Admin');
22 22
         });
23 23
     }
Please login to merge, or discard this patch.
app/Http/Controllers/Auth/ForgotPasswordController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
         if (empty($email) && empty($rssToken)) {
47 47
             app('smarty.view')->assign('error', 'Missing parameter (email and/or apikey) to send password reset');
48 48
         } else {
49
-            if (config('captcha.enabled') === true && (! empty(config('captcha.secret')) && ! empty(config('captcha.sitekey')))) {
49
+            if (config('captcha.enabled') === true && (!empty(config('captcha.secret')) && !empty(config('captcha.sitekey')))) {
50 50
                 $this->validate($request, [
51 51
                     'g-recaptcha-response' => 'required|captcha',
52 52
                 ]);
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
             //
55 55
             // Check users exists and send an email
56 56
             //
57
-            $ret = ! empty($rssToken) ? User::getByRssToken($rssToken) : User::getByEmail($email);
57
+            $ret = !empty($rssToken) ? User::getByRssToken($rssToken) : User::getByEmail($email);
58 58
             if ($ret === null) {
59 59
                 app('smarty.view')->assign('error', 'The email or apikey are not recognised.');
60 60
                 $sent = true;
Please login to merge, or discard this patch.
app/Extensions/helper/helpers.php 1 patch
Spacing   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
 use Symfony\Component\Process\Process;
17 17
 use Zip as ZipStream;
18 18
 
19
-if (! function_exists('getRawHtml')) {
19
+if (!function_exists('getRawHtml')) {
20 20
     /**
21 21
      * @param  bool  $cookie
22 22
      * @return bool|mixed|string
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
     }
52 52
 }
53 53
 
54
-if (! function_exists('makeFieldLinks')) {
54
+if (!function_exists('makeFieldLinks')) {
55 55
     /**
56 56
      * @return string
57 57
      *
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
     }
82 82
 }
83 83
 
84
-if (! function_exists('getUserBrowseOrder')) {
84
+if (!function_exists('getUserBrowseOrder')) {
85 85
     /**
86 86
      * @param  string  $orderBy
87 87
      */
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
     }
108 108
 }
109 109
 
110
-if (! function_exists('getUserBrowseOrdering')) {
110
+if (!function_exists('getUserBrowseOrdering')) {
111 111
     function getUserBrowseOrdering(): array
112 112
     {
113 113
         return [
@@ -137,21 +137,21 @@  discard block
 block discarded – undo
137 137
     }
138 138
 }
139 139
 
140
-if (! function_exists('createGUID')) {
140
+if (!function_exists('createGUID')) {
141 141
     /**
142 142
      * @throws Exception
143 143
      */
144 144
     function createGUID(): string
145 145
     {
146 146
         $data = random_bytes(16);
147
-        $data[6] = \chr(\ord($data[6]) & 0x0F | 0x40);    // set version to 0100
148
-        $data[8] = \chr(\ord($data[8]) & 0x3F | 0x80);    // set bits 6-7 to 10
147
+        $data[6] = \chr(\ord($data[6]) & 0x0F|0x40); // set version to 0100
148
+        $data[8] = \chr(\ord($data[8]) & 0x3F|0x80); // set bits 6-7 to 10
149 149
 
150 150
         return vsprintf('%s%s-%s-%s-%s-%s%s%s', str_split(sodium_bin2hex($data), 4));
151 151
     }
152 152
 }
153 153
 
154
-if (! function_exists('getSimilarName')) {
154
+if (!function_exists('getSimilarName')) {
155 155
     /**
156 156
      * @param  string  $name
157 157
      */
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
     }
162 162
 }
163 163
 
164
-if (! function_exists('color')) {
164
+if (!function_exists('color')) {
165 165
     /**
166 166
      * @param  string  $string
167 167
      */
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
     }
172 172
 }
173 173
 
174
-if (! function_exists('human_filesize')) {
174
+if (!function_exists('human_filesize')) {
175 175
     /**
176 176
      * @param  int  $decimals
177 177
      */
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
     }
185 185
 }
186 186
 
187
-if (! function_exists('bcdechex')) {
187
+if (!function_exists('bcdechex')) {
188 188
     /**
189 189
      * @return string
190 190
      */
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
     }
202 202
 }
203 203
 
204
-if (! function_exists('runCmd')) {
204
+if (!function_exists('runCmd')) {
205 205
     /**
206 206
      * Run CLI command.
207 207
      *
@@ -229,7 +229,7 @@  discard block
 block discarded – undo
229 229
     }
230 230
 }
231 231
 
232
-if (! function_exists('escapeString')) {
232
+if (!function_exists('escapeString')) {
233 233
     /**
234 234
      * @return string
235 235
      */
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
239 239
     }
240 240
 }
241 241
 
242
-if (! function_exists('realDuration')) {
242
+if (!function_exists('realDuration')) {
243 243
     /**
244 244
      * @return string
245 245
      */
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
     }
252 252
 }
253 253
 
254
-if (! function_exists('is_it_json')) {
254
+if (!function_exists('is_it_json')) {
255 255
     /**
256 256
      * @param  array|string  $isIt
257 257
      * @return bool
@@ -294,7 +294,7 @@  discard block
 block discarded – undo
294 294
     return $zipped;
295 295
 }
296 296
 
297
-if (! function_exists('release_flag')) {
297
+if (!function_exists('release_flag')) {
298 298
     // Function inspired by c0r3@newznabforums adds country flags on the browse page.
299 299
     /**
300 300
      * @param  string  $text  Text to match against.
@@ -430,10 +430,10 @@  discard block
 block discarded – undo
430 430
 
431 431
         return '';
432 432
     }
433
-    if (! function_exists('sanitize')) {
433
+    if (!function_exists('sanitize')) {
434 434
         function sanitize(array|string $phrases, array $doNotSanitize = []): string
435 435
         {
436
-            if (! is_array($phrases)) {
436
+            if (!is_array($phrases)) {
437 437
                 $wordArray = explode(' ', str_replace('.', ' ', $phrases));
438 438
             } else {
439 439
                 $wordArray = $phrases;
@@ -444,9 +444,9 @@  discard block
 block discarded – undo
444 444
             foreach ($wordArray as $words) {
445 445
                 $words = preg_split('/\s+/', $words);
446 446
                 foreach ($words as $st) {
447
-                    if (Str::startsWith($st, ['!', '+', '-', '?', '*']) && Str::length($st) > 1 && ! preg_match('/([!+?\-*]){2,}/', $st)) {
447
+                    if (Str::startsWith($st, ['!', '+', '-', '?', '*']) && Str::length($st) > 1 && !preg_match('/([!+?\-*]){2,}/', $st)) {
448 448
                         $str = $st;
449
-                    } elseif (Str::endsWith($st, ['+', '-', '?', '*']) && Str::length($st) > 1 && ! preg_match('/([!+?\-*]){2,}/', $st)) {
449
+                    } elseif (Str::endsWith($st, ['+', '-', '?', '*']) && Str::length($st) > 1 && !preg_match('/([!+?\-*]){2,}/', $st)) {
450 450
                         $str = $st;
451 451
                     } else {
452 452
                         $str = Sanitizer::escape($st, $doNotSanitize);
Please login to merge, or discard this patch.
misc/update/update_binaries.php 1 patch
Spacing   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
 }
20 20
 $binaries = new Binaries(['NNTP' => $nntp]);
21 21
 
22
-if (isset($argv[1]) && ! is_numeric($argv[1])) {
22
+if (isset($argv[1]) && !is_numeric($argv[1])) {
23 23
     $groupName = $argv[1];
24 24
     $colorCli->header("Updating group: $groupName");
25 25
 
@@ -36,8 +36,7 @@  discard block
 block discarded – undo
36 36
     }
37 37
 } else {
38 38
     try {
39
-        $binaries->updateAllGroups((isset($argv[1]) && is_numeric($argv[1]) && $argv[1] > 0 ? $argv[1] :
40
-            $maxHeaders));
39
+        $binaries->updateAllGroups((isset($argv[1]) && is_numeric($argv[1]) && $argv[1] > 0 ? $argv[1] : $maxHeaders));
41 40
     } catch (Throwable $e) {
42 41
         Illuminate\Support\Facades\Log::error($e->getMessage());
43 42
     }
Please login to merge, or discard this patch.