@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | $this->setPreferences(); |
17 | 17 | $movie = new Movie(['Settings' => $this->settings]); |
18 | 18 | |
19 | - $moviecats = Category::getChildren(Category::MOVIE_ROOT)->map(function ($mcat) { |
|
19 | + $moviecats = Category::getChildren(Category::MOVIE_ROOT)->map(function($mcat) { |
|
20 | 20 | return ['id' => $mcat->id, 'title' => $mcat->title]; |
21 | 21 | }); |
22 | 22 | |
@@ -40,14 +40,14 @@ discard block |
||
40 | 40 | |
41 | 41 | $orderby = $request->input('ob', ''); |
42 | 42 | $ordering = $movie->getMovieOrdering(); |
43 | - if (! in_array($orderby, $ordering, false)) { |
|
43 | + if (!in_array($orderby, $ordering, false)) { |
|
44 | 44 | $orderby = ''; |
45 | 45 | } |
46 | 46 | |
47 | 47 | $rslt = $movie->getMovieRange($page, $catarray, $offset, config('nntmux.items_per_cover_page'), $orderby, -1, $this->userdata->categoryexclusions); |
48 | 48 | $results = $this->paginate($rslt ?? [], $rslt[0]->_totalcount ?? 0, config('nntmux.items_per_cover_page'), $page, $request->url(), $request->query()); |
49 | 49 | |
50 | - $movies = $results->map(function ($result) { |
|
50 | + $movies = $results->map(function($result) { |
|
51 | 51 | $result['genre'] = makeFieldLinks($result, 'genre', 'movies'); |
52 | 52 | $result['actors'] = makeFieldLinks($result, 'actors', 'movies'); |
53 | 53 | $result['director'] = makeFieldLinks($result, 'director', 'movies'); |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | if ($request->has('id') && ctype_digit($request->input('id'))) { |
97 | 97 | $mov = $movie->getMovieInfo($request->input('id')); |
98 | 98 | |
99 | - if (! $mov) { |
|
99 | + if (!$mov) { |
|
100 | 100 | return response()->json(['message' => 'There is no trailer for this movie.'], 404); |
101 | 101 | } |
102 | 102 |
@@ -27,7 +27,7 @@ |
||
27 | 27 | $meta_title = 'Browse Groups'; |
28 | 28 | $meta_keywords = 'browse,groups,description,details'; |
29 | 29 | $meta_description = 'Browse groups'; |
30 | - if (! empty($search)) { |
|
30 | + if (!empty($search)) { |
|
31 | 31 | $meta_title .= ' - Search: '.$search; |
32 | 32 | $meta_description = 'Browse groups search results for '.$search; |
33 | 33 | } |
@@ -155,7 +155,7 @@ discard block |
||
155 | 155 | public static function updateRelease($id, $name, $searchName, $fromName, $categoryId, $parts, $grabs, $size, $postedDate, $addedDate, $videoId, $episodeId, $imDbId, $aniDbId): void |
156 | 156 | { |
157 | 157 | $movieInfoId = null; |
158 | - if (! empty($imDbId)) { |
|
158 | + if (!empty($imDbId)) { |
|
159 | 159 | $movieInfoId = MovieInfo::whereImdbid($imDbId)->first(['id']); |
160 | 160 | } |
161 | 161 | self::whereId($id)->update( |
@@ -349,7 +349,7 @@ discard block |
||
349 | 349 | |
350 | 350 | $releases = $query->get(); |
351 | 351 | |
352 | - $releases->each(function ($release) { |
|
352 | + $releases->each(function($release) { |
|
353 | 353 | $release->group_name = $release->group->name ?? null; |
354 | 354 | $release->showtitle = $release->video->title ?? null; |
355 | 355 | $release->tvdb = $release->video->tvdb ?? null; |
@@ -366,7 +366,7 @@ discard block |
||
366 | 366 | $release->sub_category = $release->category->title ?? null; |
367 | 367 | $release->category_name = $release->parent_category.' > '.$release->sub_category; |
368 | 368 | $release->category_ids = $release->category->parentid.','.$release->category->id; |
369 | - $release->group_names = $release->releaseGroup->map(function ($relGroup) { |
|
369 | + $release->group_names = $release->releaseGroup->map(function($relGroup) { |
|
370 | 370 | return $relGroup->group->name; |
371 | 371 | })->implode(','); |
372 | 372 | }); |
@@ -403,12 +403,12 @@ discard block |
||
403 | 403 | |
404 | 404 | preg_match('/(^\w+[-_. ].+?\.(\d+p)).+/i', $rel['searchname'], $similar); |
405 | 405 | |
406 | - if (! empty($similar)) { |
|
406 | + if (!empty($similar)) { |
|
407 | 407 | if (config('nntmux.elasticsearch_enabled') === true) { |
408 | 408 | $searchResult = (new ElasticSearchSiteSearch)->indexSearch($similar[1], 10); |
409 | 409 | } else { |
410 | 410 | $searchResult = (new ManticoreSearch)->searchIndexes('releases_rt', $similar[1]); |
411 | - if (! empty($searchResult)) { |
|
411 | + if (!empty($searchResult)) { |
|
412 | 412 | $searchResult = Arr::wrap(Arr::get($searchResult, 'id')); |
413 | 413 | } |
414 | 414 | } |
@@ -50,8 +50,7 @@ |
||
50 | 50 | if ($method === '7' || $method === '8') { |
51 | 51 | $compressedHeaders = config('nntmux_nntp.compressed_headers'); |
52 | 52 | if ((config('nntmux_nntp.use_alternate_nntp_server') === true ? |
53 | - $nntp->doConnect($compressedHeaders, true) : |
|
54 | - $nntp->doConnect()) !== true) { |
|
53 | + $nntp->doConnect($compressedHeaders, true) : $nntp->doConnect()) !== true) { |
|
55 | 54 | $this->error('Unable to connect to usenet.'); |
56 | 55 | |
57 | 56 | return 1; |
@@ -34,7 +34,7 @@ |
||
34 | 34 | $limit = $this->argument('limit'); |
35 | 35 | |
36 | 36 | // Validate the limit argument |
37 | - if ($limit !== 'full' && ! is_numeric($limit)) { |
|
37 | + if ($limit !== 'full' && !is_numeric($limit)) { |
|
38 | 38 | $this->error('Limit must be "full" or a numeric value.'); |
39 | 39 | |
40 | 40 | return 1; |
@@ -114,7 +114,7 @@ |
||
114 | 114 | switch ($errorCode) { |
115 | 115 | case UPLOAD_ERR_INI_SIZE: |
116 | 116 | return "The file '{$fileName}' exceeds the upload_max_filesize directive (". |
117 | - ini_get('upload_max_filesize').').'; |
|
117 | + ini_get('upload_max_filesize').').'; |
|
118 | 118 | case UPLOAD_ERR_FORM_SIZE: |
119 | 119 | return "The file '{$fileName}' exceeds the MAX_FILE_SIZE directive specified in the HTML form."; |
120 | 120 | case UPLOAD_ERR_PARTIAL: |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | $deleteNZB = true; |
27 | 27 | |
28 | 28 | // Get the list of NZB files from php /tmp folder if nzb files were uploaded. |
29 | - if (isset($_FILES['uploadedfiles']) && ! empty($_FILES['uploadedfiles']['name'][0])) { |
|
29 | + if (isset($_FILES['uploadedfiles']) && !empty($_FILES['uploadedfiles']['name'][0])) { |
|
30 | 30 | $maxFileSize = min( |
31 | 31 | $this->convertToBytes(ini_get('upload_max_filesize')), |
32 | 32 | $this->convertToBytes(ini_get('post_max_size')) |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | |
55 | 55 | // Get the path the user set in the browser if he put one. |
56 | 56 | $path = ($request->has('folder') ? $request->input('folder') : ''); |
57 | - if (! Str::endsWith($path, '/')) { |
|
57 | + if (!Str::endsWith($path, '/')) { |
|
58 | 58 | $path .= '/'; |
59 | 59 | } |
60 | 60 |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | $manticore = new ManticoreSearch; |
64 | 64 | $manticore->truncateRTIndex(Arr::wrap('releases_rt')); |
65 | 65 | $total = Release::count(); |
66 | - if (! $total) { |
|
66 | + if (!$total) { |
|
67 | 67 | $this->warn('Releases table is empty. Nothing to do.'); |
68 | 68 | exit(); |
69 | 69 | } |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | ->select(['releases.id', 'releases.name', 'releases.searchname', 'releases.fromname', 'releases.categories_id']) |
84 | 84 | ->selectRaw('IFNULL(GROUP_CONCAT(release_files.name SEPARATOR " "),"") filename') |
85 | 85 | ->groupBy('id') |
86 | - ->chunk($max, function ($releases) use ($manticore, $bar) { |
|
86 | + ->chunk($max, function($releases) use ($manticore, $bar) { |
|
87 | 87 | $data = []; |
88 | 88 | foreach ($releases as $r) { |
89 | 89 | $data[] = [ |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | ]; |
98 | 98 | $bar->advance(); |
99 | 99 | } |
100 | - if (! empty($data)) { |
|
100 | + if (!empty($data)) { |
|
101 | 101 | $manticore->manticoreSearch->table('releases_rt')->replaceDocuments($data); |
102 | 102 | } |
103 | 103 | }); |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | $manticore->truncateRTIndex(['predb_rt']); |
115 | 115 | |
116 | 116 | $total = Predb::count(); |
117 | - if (! $total) { |
|
117 | + if (!$total) { |
|
118 | 118 | $this->warn('PreDB table is empty. Nothing to do.'); |
119 | 119 | exit(); |
120 | 120 | } |
@@ -131,7 +131,7 @@ discard block |
||
131 | 131 | ->select(['id', 'title', 'filename', 'source']) |
132 | 132 | ->groupBy('id') |
133 | 133 | ->orderBy('id') |
134 | - ->chunk($max, function ($pre) use ($manticore, $bar) { |
|
134 | + ->chunk($max, function($pre) use ($manticore, $bar) { |
|
135 | 135 | $data = []; |
136 | 136 | foreach ($pre as $p) { |
137 | 137 | $data[] = [ |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | ]; |
144 | 144 | $bar->advance(); |
145 | 145 | } |
146 | - if (! empty($data)) { |
|
146 | + if (!empty($data)) { |
|
147 | 147 | $manticore->manticoreSearch->table('predb_rt')->replaceDocuments($data); |
148 | 148 | } |
149 | 149 | }); |
@@ -157,7 +157,7 @@ discard block |
||
157 | 157 | $data = ['body' => []]; |
158 | 158 | $elastic = new ElasticSearchSiteSearch; |
159 | 159 | $total = Release::count(); |
160 | - if (! $total) { |
|
160 | + if (!$total) { |
|
161 | 161 | $this->warn('Could not get database information for releases table.'); |
162 | 162 | exit(); |
163 | 163 | } |
@@ -175,7 +175,7 @@ discard block |
||
175 | 175 | ->select(['releases.id', 'releases.name', 'releases.searchname', 'releases.fromname', 'releases.categories_id', 'releases.postdate']) |
176 | 176 | ->selectRaw('IFNULL(GROUP_CONCAT(release_files.name SEPARATOR " "),"") filename') |
177 | 177 | ->groupBy('id') |
178 | - ->chunk($max, function ($releases) use ($bar, $data) { |
|
178 | + ->chunk($max, function($releases) use ($bar, $data) { |
|
179 | 179 | foreach ($releases as $r) { |
180 | 180 | $searchName = str_replace(['.', '-'], ' ', $r->searchname); |
181 | 181 | $data['body'][] = [ |
@@ -208,7 +208,7 @@ discard block |
||
208 | 208 | $data = ['body' => []]; |
209 | 209 | $elastic = new ElasticSearchSiteSearch; |
210 | 210 | $total = Predb::count(); |
211 | - if (! $total) { |
|
211 | + if (!$total) { |
|
212 | 212 | $this->warn('Could not get database information for predb table.'); |
213 | 213 | exit(); |
214 | 214 | } |
@@ -225,7 +225,7 @@ discard block |
||
225 | 225 | ->select(['id', 'title', 'filename', 'source']) |
226 | 226 | ->groupBy('id') |
227 | 227 | ->orderBy('id') |
228 | - ->chunk($max, function ($pre) use ($bar, $data) { |
|
228 | + ->chunk($max, function($pre) use ($bar, $data) { |
|
229 | 229 | foreach ($pre as $p) { |
230 | 230 | $data['body'][] = [ |
231 | 231 | 'index' => [ |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | |
96 | 96 | // Create each index |
97 | 97 | foreach ($indexes as $indexName => $schema) { |
98 | - if (! $this->createIndex($indexName, $schema, $dropExisting)) { |
|
98 | + if (!$this->createIndex($indexName, $schema, $dropExisting)) { |
|
99 | 99 | $hasErrors = true; |
100 | 100 | } |
101 | 101 | } |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | $indices->drop(['index' => $indexName, 'body' => ['silent' => true]]); |
128 | 128 | $this->info("Successfully dropped {$indexName} index."); |
129 | 129 | } catch (ResponseException $e) { |
130 | - if (! str_contains($e->getMessage(), 'unknown index')) { |
|
130 | + if (!str_contains($e->getMessage(), 'unknown index')) { |
|
131 | 131 | $this->warn("Warning when dropping {$indexName} index: ".$e->getMessage()); |
132 | 132 | } |
133 | 133 | } |
@@ -30,11 +30,11 @@ |
||
30 | 30 | { |
31 | 31 | $purgeDays = config('nntmux.purge_inactive_users_days'); |
32 | 32 | User::query()->where('roles_id', '=', 1) |
33 | - ->where(function ($query) use ($purgeDays) { |
|
33 | + ->where(function($query) use ($purgeDays) { |
|
34 | 34 | $query->where('lastlogin', '<', now()->subDays($purgeDays)) |
35 | 35 | ->orWhereNull('lastlogin'); |
36 | 36 | }) |
37 | - ->where(function ($query) use ($purgeDays) { |
|
37 | + ->where(function($query) use ($purgeDays) { |
|
38 | 38 | $query->where('apiaccess', '<', now()->subDays($purgeDays)) |
39 | 39 | ->orWhereNull('apiaccess'); |
40 | 40 | }) |