@@ -64,7 +64,7 @@ discard block |
||
| 64 | 64 | protected function trailers(): mixed |
| 65 | 65 | { |
| 66 | 66 | $ret = $this->_html->find('a[itemprop=trailer]', 0); |
| 67 | - if (! empty($ret) && preg_match('/movieId=(?<movieid>\d+)&/', trim($ret->href), $hits)) { |
|
| 67 | + if (!empty($ret) && preg_match('/movieId=(?<movieid>\d+)&/', trim($ret->href), $hits)) { |
|
| 68 | 68 | $movieid = $hits['movieid']; |
| 69 | 69 | $this->_res['trailers']['url'] = self::AEBNSURL.self::TRAILERURL.$movieid; |
| 70 | 70 | } |
@@ -100,7 +100,7 @@ discard block |
||
| 100 | 100 | $this->_res['genres'][] = trim($genre->plaintext); |
| 101 | 101 | } |
| 102 | 102 | } |
| 103 | - if (! empty($this->_res['genres'])) { |
|
| 103 | + if (!empty($this->_res['genres'])) { |
|
| 104 | 104 | $this->_res['genres'] = array_unique($this->_res['genres']); |
| 105 | 105 | } |
| 106 | 106 | |
@@ -114,13 +114,13 @@ discard block |
||
| 114 | 114 | { |
| 115 | 115 | $this->_res = []; |
| 116 | 116 | $ret = $this->_html->findOne('div.starsFull'); |
| 117 | - if (! $ret instanceof SimpleHtmlDomNodeBlank) { |
|
| 117 | + if (!$ret instanceof SimpleHtmlDomNodeBlank) { |
|
| 118 | 118 | foreach ($ret->find('span[itemprop=name]') as $star) { |
| 119 | 119 | $this->_res['cast'][] = trim($star->plaintext); |
| 120 | 120 | } |
| 121 | 121 | } else { |
| 122 | 122 | $ret = $this->_html->findOne('div.detailsLink'); |
| 123 | - if (! $ret instanceof SimpleHtmlDomNodeBlank) { |
|
| 123 | + if (!$ret instanceof SimpleHtmlDomNodeBlank) { |
|
| 124 | 124 | foreach ($ret->find('span') as $star) { |
| 125 | 125 | if (strpos($star->plaintext, '/More/') !== false && strpos($star->plaintext, '/Stars/') !== false) { |
| 126 | 126 | $this->_res['cast'][] = trim($star->plaintext); |
@@ -134,7 +134,7 @@ discard block |
||
| 134 | 134 | } |
| 135 | 135 | if ($country === true) { |
| 136 | 136 | if (stripos($e, 'addthis_config') === false) { |
| 137 | - if (! empty($e)) { |
|
| 137 | + if (!empty($e)) { |
|
| 138 | 138 | $this->_res['productinfo'][] = $e; |
| 139 | 139 | } |
| 140 | 140 | } else { |
@@ -157,7 +157,7 @@ discard block |
||
| 157 | 157 | $e = null; |
| 158 | 158 | } |
| 159 | 159 | if ($features === true) { |
| 160 | - if (! empty($e)) { |
|
| 160 | + if (!empty($e)) { |
|
| 161 | 161 | $this->_res['extras'][] = $e; |
| 162 | 162 | } |
| 163 | 163 | } |
@@ -188,13 +188,13 @@ discard block |
||
| 188 | 188 | $e = null; |
| 189 | 189 | } |
| 190 | 190 | |
| 191 | - if (($director === true) && ! empty($e)) { |
|
| 191 | + if (($director === true) && !empty($e)) { |
|
| 192 | 192 | $this->_res['director'] = $e; |
| 193 | 193 | $director = false; |
| 194 | 194 | $e = null; |
| 195 | 195 | } |
| 196 | 196 | if (stripos($e, 'Country:') === false) { |
| 197 | - if (! empty($e)) { |
|
| 197 | + if (!empty($e)) { |
|
| 198 | 198 | $er[] = $e; |
| 199 | 199 | } |
| 200 | 200 | } else { |
@@ -231,12 +231,12 @@ discard block |
||
| 231 | 231 | */ |
| 232 | 232 | public function processSite(string $movie): bool |
| 233 | 233 | { |
| 234 | - if (! empty($movie)) { |
|
| 234 | + if (!empty($movie)) { |
|
| 235 | 235 | $this->_trailUrl = self::TRAILINGSEARCH.$movie; |
| 236 | 236 | $this->_response = getRawHtml(self::POPURL.$this->_trailUrl, $this->cookie); |
| 237 | 237 | if ($this->_response !== false) { |
| 238 | 238 | if ($ret = $this->_html->loadHtml($this->_response)->find('div.product-info, div.title', 1)) { |
| 239 | - if (! empty($ret->plaintext)) { |
|
| 239 | + if (!empty($ret->plaintext)) { |
|
| 240 | 240 | $this->_title = trim($ret->plaintext); |
| 241 | 241 | $title = str_replace('XXX', '', $ret->plaintext); |
| 242 | 242 | $title = trim(preg_replace('/\(.*?\)|[._-]/i', ' ', $title)); |
@@ -125,7 +125,7 @@ discard block |
||
| 125 | 125 | foreach ($this->_html->find('h3') as $heading) { |
| 126 | 126 | if (trim($heading->plaintext) === 'Cast') { |
| 127 | 127 | foreach ($heading->nextSibling() as $next) { |
| 128 | - if (! $next instanceof SimpleHtmlDomNodeBlank && $next->nodeName !== 'h3') { |
|
| 128 | + if (!$next instanceof SimpleHtmlDomNodeBlank && $next->nodeName !== 'h3') { |
|
| 129 | 129 | $next = $next->nextSibling(); |
| 130 | 130 | } |
| 131 | 131 | if (preg_match_all('/search_performerid/', $next->href, $hits)) { |
@@ -166,7 +166,7 @@ discard block |
||
| 166 | 166 | public function processSite(string $movie): bool |
| 167 | 167 | { |
| 168 | 168 | $result = false; |
| 169 | - if (! empty($movie)) { |
|
| 169 | + if (!empty($movie)) { |
|
| 170 | 170 | $this->_trailUrl = self::TRAILINGSEARCH.urlencode($movie); |
| 171 | 171 | $this->_response = getRawHtml(self::ADMURL.$this->_trailUrl, $this->cookie); |
| 172 | 172 | if ($this->_response !== false) { |
@@ -159,7 +159,7 @@ discard block |
||
| 159 | 159 | %s %s %s %s |
| 160 | 160 | GROUP BY xxx.id |
| 161 | 161 | ORDER BY %s %s", |
| 162 | - (! empty($xxxIDs) ? implode(',', $xxxIDs) : -1), |
|
| 162 | + (!empty($xxxIDs) ? implode(',', $xxxIDs) : -1), |
|
| 163 | 163 | $this->showPasswords, |
| 164 | 164 | $this->getBrowseBy(), |
| 165 | 165 | $catSrch, |
@@ -211,7 +211,7 @@ discard block |
||
| 211 | 211 | { |
| 212 | 212 | $browseBy = ' '; |
| 213 | 213 | foreach (['title', 'director', 'actors', 'genre', 'id'] as $bb) { |
| 214 | - if (! empty($_REQUEST[$bb])) { |
|
| 214 | + if (!empty($_REQUEST[$bb])) { |
|
| 215 | 215 | $bbv = stripslashes($_REQUEST[$bb]); |
| 216 | 216 | if ($bb === 'genre') { |
| 217 | 217 | $bbv = $this->getGenreID($bbv); |
@@ -246,7 +246,7 @@ discard block |
||
| 246 | 246 | string $cover = '', |
| 247 | 247 | string $backdrop = '' |
| 248 | 248 | ): void { |
| 249 | - if (! empty($id)) { |
|
| 249 | + if (!empty($id)) { |
|
| 250 | 250 | XxxInfo::query()->where('id', $id)->update( |
| 251 | 251 | [ |
| 252 | 252 | 'title' => $title, |
@@ -288,12 +288,12 @@ discard block |
||
| 288 | 288 | public function getGenres(bool $activeOnly = false, $gid = null): mixed |
| 289 | 289 | { |
| 290 | 290 | if ($activeOnly) { |
| 291 | - return Genre::query()->where(['disabled' => 0, 'type' => Category::XXX_ROOT])->when($gid !== null, function ($query) use ($gid) { |
|
| 291 | + return Genre::query()->where(['disabled' => 0, 'type' => Category::XXX_ROOT])->when($gid !== null, function($query) use ($gid) { |
|
| 292 | 292 | return $query->where('id', $gid); |
| 293 | 293 | })->orderBy('title')->first(['title']); |
| 294 | 294 | } |
| 295 | 295 | |
| 296 | - return Genre::query()->where(['type' => Category::XXX_ROOT])->when($gid !== null, function ($query) use ($gid) { |
|
| 296 | + return Genre::query()->where(['type' => Category::XXX_ROOT])->when($gid !== null, function($query) use ($gid) { |
|
| 297 | 297 | return $query->where('id', $gid); |
| 298 | 298 | })->orderBy('title')->first(['title']); |
| 299 | 299 | } |
@@ -308,7 +308,7 @@ discard block |
||
| 308 | 308 | { |
| 309 | 309 | $ret = null; |
| 310 | 310 | |
| 311 | - if (! \is_array($arr)) { |
|
| 311 | + if (!\is_array($arr)) { |
|
| 312 | 312 | $res = Genre::query()->where('title', $arr)->first(['id']); |
| 313 | 313 | if ($res !== null) { |
| 314 | 314 | return $res['id']; |
@@ -348,7 +348,7 @@ discard block |
||
| 348 | 348 | public function insertSwf($whichClass, $res): string |
| 349 | 349 | { |
| 350 | 350 | $ret = ''; |
| 351 | - if (($whichClass === 'ade') && ! empty($res)) { |
|
| 351 | + if (($whichClass === 'ade') && !empty($res)) { |
|
| 352 | 352 | $trailers = unserialize($res, 'ade'); |
| 353 | 353 | $ret .= "<object width='360' height='240' type='application/x-shockwave-flash' id='EmpireFlashPlayer' name='EmpireFlashPlayer' data='".$trailers['url']."'>"; |
| 354 | 354 | $ret .= "<param name='flashvars' value= 'streamID=".$trailers['streamid'].'&autoPlay=false&BaseStreamingUrl='.$trailers['baseurl']."'>"; |
@@ -356,7 +356,7 @@ discard block |
||
| 356 | 356 | |
| 357 | 357 | return $ret; |
| 358 | 358 | } |
| 359 | - if (($whichClass === 'pop') && ! empty($res)) { |
|
| 359 | + if (($whichClass === 'pop') && !empty($res)) { |
|
| 360 | 360 | $trailers = unserialize($res, 'pop'); |
| 361 | 361 | $ret .= "<embed id='trailer' width='480' height='360'"; |
| 362 | 362 | $ret .= "flashvars='".$trailers['flashvars']."' allowfullscreen='true' allowscriptaccess='always' quality='high' name='trailer' style='undefined'"; |
@@ -433,22 +433,22 @@ discard block |
||
| 433 | 433 | return -2; |
| 434 | 434 | } |
| 435 | 435 | |
| 436 | - $res['cast'] = ! empty($res['cast']) ? implode(',', $res['cast']) : ''; |
|
| 437 | - $res['genres'] = ! empty($res['genres']) ? $this->getGenreID($res['genres']) : ''; |
|
| 436 | + $res['cast'] = !empty($res['cast']) ? implode(',', $res['cast']) : ''; |
|
| 437 | + $res['genres'] = !empty($res['genres']) ? $this->getGenreID($res['genres']) : ''; |
|
| 438 | 438 | |
| 439 | 439 | $mov = [ |
| 440 | - 'trailers' => ! empty($res['trailers']) ? serialize($res['trailers']) : '', |
|
| 441 | - 'extras' => ! empty($res['extras']) ? serialize($res['extras']) : '', |
|
| 442 | - 'productinfo' => ! empty($res['productinfo']) ? serialize($res['productinfo']) : '', |
|
| 443 | - 'backdrop' => ! empty($res['backcover']) ? $res['backcover'] : 0, |
|
| 444 | - 'cover' => ! empty($res['boxcover']) ? $res['boxcover'] : 0, |
|
| 445 | - 'title' => ! empty($res['title']) ? html_entity_decode($res['title'], ENT_QUOTES, 'UTF-8') : '', |
|
| 446 | - 'plot' => ! empty($res['synopsis']) ? html_entity_decode($res['synopsis'], ENT_QUOTES, 'UTF-8') : '', |
|
| 447 | - 'tagline' => ! empty($res['tagline']) ? html_entity_decode($res['tagline'], ENT_QUOTES, 'UTF-8') : '', |
|
| 448 | - 'genre' => ! empty($res['genres']) ? html_entity_decode($res['genres'], ENT_QUOTES, 'UTF-8') : '', |
|
| 449 | - 'director' => ! empty($res['director']) ? html_entity_decode($res['director'], ENT_QUOTES, 'UTF-8') : '', |
|
| 450 | - 'actors' => ! empty($res['cast']) ? html_entity_decode($res['cast'], ENT_QUOTES, 'UTF-8') : '', |
|
| 451 | - 'directurl' => ! empty($res['directurl']) ? html_entity_decode($res['directurl'], ENT_QUOTES, 'UTF-8') : '', |
|
| 440 | + 'trailers' => !empty($res['trailers']) ? serialize($res['trailers']) : '', |
|
| 441 | + 'extras' => !empty($res['extras']) ? serialize($res['extras']) : '', |
|
| 442 | + 'productinfo' => !empty($res['productinfo']) ? serialize($res['productinfo']) : '', |
|
| 443 | + 'backdrop' => !empty($res['backcover']) ? $res['backcover'] : 0, |
|
| 444 | + 'cover' => !empty($res['boxcover']) ? $res['boxcover'] : 0, |
|
| 445 | + 'title' => !empty($res['title']) ? html_entity_decode($res['title'], ENT_QUOTES, 'UTF-8') : '', |
|
| 446 | + 'plot' => !empty($res['synopsis']) ? html_entity_decode($res['synopsis'], ENT_QUOTES, 'UTF-8') : '', |
|
| 447 | + 'tagline' => !empty($res['tagline']) ? html_entity_decode($res['tagline'], ENT_QUOTES, 'UTF-8') : '', |
|
| 448 | + 'genre' => !empty($res['genres']) ? html_entity_decode($res['genres'], ENT_QUOTES, 'UTF-8') : '', |
|
| 449 | + 'director' => !empty($res['director']) ? html_entity_decode($res['director'], ENT_QUOTES, 'UTF-8') : '', |
|
| 450 | + 'actors' => !empty($res['cast']) ? html_entity_decode($res['cast'], ENT_QUOTES, 'UTF-8') : '', |
|
| 451 | + 'directurl' => !empty($res['directurl']) ? html_entity_decode($res['directurl'], ENT_QUOTES, 'UTF-8') : '', |
|
| 452 | 452 | 'classused' => $this->whichClass, |
| 453 | 453 | ]; |
| 454 | 454 | |
@@ -458,12 +458,12 @@ discard block |
||
| 458 | 458 | $xxxID = $check['id']; |
| 459 | 459 | |
| 460 | 460 | // Update BoxCover. |
| 461 | - if (! empty($mov['cover'])) { |
|
| 461 | + if (!empty($mov['cover'])) { |
|
| 462 | 462 | $cover = $this->releaseImage->saveImage($xxxID.'-cover', $mov['cover'], $this->imgSavePath); |
| 463 | 463 | } |
| 464 | 464 | |
| 465 | 465 | // BackCover. |
| 466 | - if (! empty($mov['backdrop'])) { |
|
| 466 | + if (!empty($mov['backdrop'])) { |
|
| 467 | 467 | $backdrop = $this->releaseImage->saveImage($xxxID.'-backdrop', $mov['backdrop'], $this->imgSavePath, 1920, 1024); |
| 468 | 468 | } |
| 469 | 469 | |
@@ -491,12 +491,12 @@ discard block |
||
| 491 | 491 | ] |
| 492 | 492 | ); |
| 493 | 493 | // Update BoxCover. |
| 494 | - if (! empty($mov['cover'])) { |
|
| 494 | + if (!empty($mov['cover'])) { |
|
| 495 | 495 | $cover = $this->releaseImage->saveImage($xxxID.'-cover', $mov['cover'], $this->imgSavePath); |
| 496 | 496 | } |
| 497 | 497 | |
| 498 | 498 | // BackCover. |
| 499 | - if (! empty($mov['backdrop'])) { |
|
| 499 | + if (!empty($mov['backdrop'])) { |
|
| 500 | 500 | $backdrop = $this->releaseImage->saveImage($xxxID.'-backdrop', $mov['backdrop'], $this->imgSavePath, 1920, 1024); |
| 501 | 501 | } |
| 502 | 502 | |
@@ -609,7 +609,7 @@ discard block |
||
| 609 | 609 | $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)); |
| 610 | 610 | |
| 611 | 611 | // 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.. |
| 612 | - 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)) { |
|
| 612 | + 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)) { |
|
| 613 | 613 | $this->currentTitle = $name; |
| 614 | 614 | |
| 615 | 615 | return true; |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | $nzbSplitLevel = (int) Settings::settingValue('..nzbsplitlevel'); |
| 67 | 67 | $this->nzbSplitLevel = $nzbSplitLevel ?? 1; |
| 68 | 68 | $this->siteNzbPath = (string) Settings::settingValue('..nzbpath'); |
| 69 | - if (! Str::endsWith($this->siteNzbPath, '/')) { |
|
| 69 | + if (!Str::endsWith($this->siteNzbPath, '/')) { |
|
| 70 | 70 | $this->siteNzbPath .= '/'; |
| 71 | 71 | } |
| 72 | 72 | $this->_nzbCommentString = sprintf( |
@@ -110,7 +110,7 @@ discard block |
||
| 110 | 110 | $XMLWriter->startElement('head'); |
| 111 | 111 | $XMLWriter->startElement('meta'); |
| 112 | 112 | $XMLWriter->writeAttribute('type', 'category'); |
| 113 | - $XMLWriter->text(! empty($release->category->parent) ? $release->category->parent->title.' >'.$release->category->title : 'Other > Misc'); |
|
| 113 | + $XMLWriter->text(!empty($release->category->parent) ? $release->category->parent->title.' >'.$release->category->title : 'Other > Misc'); |
|
| 114 | 114 | $XMLWriter->endElement(); |
| 115 | 115 | $XMLWriter->startElement('meta'); |
| 116 | 116 | $XMLWriter->writeAttribute('type', 'name'); |
@@ -172,20 +172,20 @@ discard block |
||
| 172 | 172 | $XMLWriter->endDocument(); |
| 173 | 173 | $path = ($this->buildNZBPath($release->guid, $this->nzbSplitLevel, true).$release->guid.'.nzb.gz'); |
| 174 | 174 | $fp = gzopen($path, 'wb7'); |
| 175 | - if (! $fp) { |
|
| 175 | + if (!$fp) { |
|
| 176 | 176 | return false; |
| 177 | 177 | } |
| 178 | 178 | gzwrite($fp, $XMLWriter->outputMemory()); |
| 179 | 179 | gzclose($fp); |
| 180 | 180 | unset($XMLWriter); |
| 181 | - if (! File::isFile($path)) { |
|
| 181 | + if (!File::isFile($path)) { |
|
| 182 | 182 | echo "ERROR: $path does not exist.\n"; |
| 183 | 183 | |
| 184 | 184 | return false; |
| 185 | 185 | } |
| 186 | 186 | // Mark release as having NZB. |
| 187 | 187 | $release->update(['nzbstatus' => self::NZB_ADDED]); |
| 188 | - if (! empty($nzb_guid)) { |
|
| 188 | + if (!empty($nzb_guid)) { |
|
| 189 | 189 | $release->update(['nzb_guid' => DB::raw('UNHEX( '.escapeString(md5($nzb_guid)).' )')]); |
| 190 | 190 | } |
| 191 | 191 | |
@@ -216,7 +216,7 @@ discard block |
||
| 216 | 216 | |
| 217 | 217 | $nzbPath = $this->siteNzbPath.$nzbPath; |
| 218 | 218 | |
| 219 | - if ($createIfNotExist && ! File::isDirectory($nzbPath) && ! File::makeDirectory($nzbPath, 0777, true) && ! File::isDirectory($nzbPath)) { |
|
| 219 | + if ($createIfNotExist && !File::isDirectory($nzbPath) && !File::makeDirectory($nzbPath, 0777, true) && !File::isDirectory($nzbPath)) { |
|
| 220 | 220 | throw new \RuntimeException(sprintf('Directory "%s" was not created', $nzbPath)); |
| 221 | 221 | } |
| 222 | 222 | |
@@ -275,12 +275,12 @@ discard block |
||
| 275 | 275 | $i = 0; |
| 276 | 276 | $result = []; |
| 277 | 277 | |
| 278 | - if (! $nzb) { |
|
| 278 | + if (!$nzb) { |
|
| 279 | 279 | return $result; |
| 280 | 280 | } |
| 281 | 281 | |
| 282 | 282 | $xml = @simplexml_load_string(str_replace("\x0F", '', $nzb)); |
| 283 | - if (! $xml || strtolower($xml->getName()) !== 'nzb') { |
|
| 283 | + if (!$xml || strtolower($xml->getName()) !== 'nzb') { |
|
| 284 | 284 | return $result; |
| 285 | 285 | } |
| 286 | 286 | |
@@ -294,9 +294,9 @@ discard block |
||
| 294 | 294 | // Strip file / part count to get proper sorting. |
| 295 | 295 | $i = preg_replace('#\d+[- ._]?(/|\||[o0]f)[- ._]?\d+?(?![- ._]\d)#i', '', $i); |
| 296 | 296 | // Change .rar and .par2 to be sorted before .part0x.rar and .volxxx+xxx.par2 |
| 297 | - if (str_contains($i, '.par2') && ! preg_match('#\.vol\d+\+\d+\.par2#i', $i)) { |
|
| 297 | + if (str_contains($i, '.par2') && !preg_match('#\.vol\d+\+\d+\.par2#i', $i)) { |
|
| 298 | 298 | $i = str_replace('.par2', '.vol0.par2', $i); |
| 299 | - } elseif (preg_match('#\.rar[^a-z0-9]#i', $i) && ! preg_match('#\.part\d+\.rar$#i', $i)) { |
|
| 299 | + } elseif (preg_match('#\.rar[^a-z0-9]#i', $i) && !preg_match('#\.part\d+\.rar$#i', $i)) { |
|
| 300 | 300 | $i = preg_replace('#\.rar(?:[^a-z0-9])#i', '.part0.rar', $i); |
| 301 | 301 | } |
| 302 | 302 | } |
@@ -329,7 +329,7 @@ discard block |
||
| 329 | 329 | $fileSize = $numSegments = 0; |
| 330 | 330 | |
| 331 | 331 | // Parts. |
| 332 | - if (! isset($result[$i]['segments'])) { |
|
| 332 | + if (!isset($result[$i]['segments'])) { |
|
| 333 | 333 | $result[$i]['segments'] = []; |
| 334 | 334 | } |
| 335 | 335 | |
@@ -348,7 +348,7 @@ discard block |
||
| 348 | 348 | $result[$i]['partsactual'] = $numSegments; |
| 349 | 349 | |
| 350 | 350 | // Groups. |
| 351 | - if (! isset($result[$i]['groups'])) { |
|
| 351 | + if (!isset($result[$i]['groups'])) { |
|
| 352 | 352 | $result[$i]['groups'] = []; |
| 353 | 353 | } |
| 354 | 354 | foreach ($file->groups->group as $g) { |
@@ -150,7 +150,7 @@ discard block |
||
| 150 | 150 | */ |
| 151 | 151 | public function setSocketTimeout(int $timeout) |
| 152 | 152 | { |
| 153 | - if (! is_numeric($timeout)) { |
|
| 153 | + if (!is_numeric($timeout)) { |
|
| 154 | 154 | echo 'ERROR: IRC socket timeout must be a number!'.PHP_EOL; |
| 155 | 155 | } else { |
| 156 | 156 | $this->_socket_timeout = $timeout; |
@@ -164,7 +164,7 @@ discard block |
||
| 164 | 164 | */ |
| 165 | 165 | public function setConnectionTimeout(int $timeout) |
| 166 | 166 | { |
| 167 | - if (! is_numeric($timeout)) { |
|
| 167 | + if (!is_numeric($timeout)) { |
|
| 168 | 168 | echo 'ERROR: IRC connection timeout must be a number!'.PHP_EOL; |
| 169 | 169 | } else { |
| 170 | 170 | $this->_remote_connection_timeout = $timeout; |
@@ -176,7 +176,7 @@ discard block |
||
| 176 | 176 | */ |
| 177 | 177 | public function setConnectionRetries(int $retries) |
| 178 | 178 | { |
| 179 | - if (! is_numeric($retries)) { |
|
| 179 | + if (!is_numeric($retries)) { |
|
| 180 | 180 | echo 'ERROR: IRC connection retries must be a number!'.PHP_EOL; |
| 181 | 181 | } else { |
| 182 | 182 | $this->_reconnectRetries = $retries; |
@@ -190,7 +190,7 @@ discard block |
||
| 190 | 190 | */ |
| 191 | 191 | public function setReConnectDelay(int $delay) |
| 192 | 192 | { |
| 193 | - if (! is_numeric($delay)) { |
|
| 193 | + if (!is_numeric($delay)) { |
|
| 194 | 194 | echo 'ERROR: IRC reconnect delay must be a number!'.PHP_EOL; |
| 195 | 195 | } else { |
| 196 | 196 | $this->_reconnectDelay = $delay; |
@@ -210,14 +210,14 @@ discard block |
||
| 210 | 210 | $transport = ($tls === true ? 'tls' : 'tcp'); |
| 211 | 211 | |
| 212 | 212 | $socket_string = $transport.'://'.$hostname.':'.$port; |
| 213 | - if ($socket_string !== $this->_remote_socket_string || ! $this->_connected()) { |
|
| 214 | - if (! \is_string($hostname) || $hostname === '') { |
|
| 213 | + if ($socket_string !== $this->_remote_socket_string || !$this->_connected()) { |
|
| 214 | + if (!\is_string($hostname) || $hostname === '') { |
|
| 215 | 215 | echo 'ERROR: IRC host name must not be empty!'.PHP_EOL; |
| 216 | 216 | |
| 217 | 217 | return false; |
| 218 | 218 | } |
| 219 | 219 | |
| 220 | - if (! is_numeric($port)) { |
|
| 220 | + if (!is_numeric($port)) { |
|
| 221 | 221 | echo 'ERROR: IRC port must be a number!'.PHP_EOL; |
| 222 | 222 | |
| 223 | 223 | return false; |
@@ -261,7 +261,7 @@ discard block |
||
| 261 | 261 | */ |
| 262 | 262 | public function login(string $nickName, string $userName, string $realName, $password = null): bool |
| 263 | 263 | { |
| 264 | - if (! $this->_connected()) { |
|
| 264 | + if (!$this->_connected()) { |
|
| 265 | 265 | echo 'ERROR: You must connect to IRC first!'.PHP_EOL; |
| 266 | 266 | |
| 267 | 267 | return false; |
@@ -278,15 +278,15 @@ discard block |
||
| 278 | 278 | $this->_realName = $realName; |
| 279 | 279 | $this->_password = $password; |
| 280 | 280 | |
| 281 | - if (($password !== null && ! empty($password)) && ! $this->_writeSocket('PASSWORD '.$password)) { |
|
| 281 | + if (($password !== null && !empty($password)) && !$this->_writeSocket('PASSWORD '.$password)) { |
|
| 282 | 282 | return false; |
| 283 | 283 | } |
| 284 | 284 | |
| 285 | - if (! $this->_writeSocket('NICK '.$nickName)) { |
|
| 285 | + if (!$this->_writeSocket('NICK '.$nickName)) { |
|
| 286 | 286 | return false; |
| 287 | 287 | } |
| 288 | 288 | |
| 289 | - if (! $this->_writeSocket('USER '.$userName.' 0 * :'.$realName)) { |
|
| 289 | + if (!$this->_writeSocket('USER '.$userName.' 0 * :'.$realName)) { |
|
| 290 | 290 | return false; |
| 291 | 291 | } |
| 292 | 292 | |
@@ -315,7 +315,7 @@ discard block |
||
| 315 | 315 | $tempPass = $password; |
| 316 | 316 | } |
| 317 | 317 | |
| 318 | - if ($password !== null && ! $this->_writeSocket('PASS '.$tempPass)) { |
|
| 318 | + if ($password !== null && !$this->_writeSocket('PASS '.$tempPass)) { |
|
| 319 | 319 | return false; |
| 320 | 320 | } |
| 321 | 321 | |
@@ -399,13 +399,13 @@ discard block |
||
| 399 | 399 | { |
| 400 | 400 | $this->_channels = $channels; |
| 401 | 401 | |
| 402 | - if (! $this->_connected()) { |
|
| 402 | + if (!$this->_connected()) { |
|
| 403 | 403 | echo 'ERROR: You must connect to IRC first!'.PHP_EOL; |
| 404 | 404 | |
| 405 | 405 | return false; |
| 406 | 406 | } |
| 407 | 407 | |
| 408 | - if (! empty($channels)) { |
|
| 408 | + if (!empty($channels)) { |
|
| 409 | 409 | foreach ($channels as $channel => $password) { |
| 410 | 410 | $this->_joinChannel($channel, $password ?? ''); |
| 411 | 411 | } |
@@ -453,7 +453,7 @@ discard block |
||
| 453 | 453 | $pong = $this->_writeSocket('PING '.$host); |
| 454 | 454 | |
| 455 | 455 | // Check if there's a connection error. |
| 456 | - if ($pong === false || ((time() - $this->_lastPing) > ($this->_socket_timeout / 2) && ! 0 === strpos($this->_buffer, 'PONG'))) { |
|
| 456 | + if ($pong === false || ((time() - $this->_lastPing) > ($this->_socket_timeout / 2) && !0 === strpos($this->_buffer, 'PONG'))) { |
|
| 457 | 457 | $this->_reconnect(); |
| 458 | 458 | } |
| 459 | 459 | |
@@ -468,12 +468,12 @@ discard block |
||
| 468 | 468 | */ |
| 469 | 469 | protected function _reconnect() |
| 470 | 470 | { |
| 471 | - if (! $this->connect($this->_remote_host, $this->_remote_port, $this->_remote_tls)) { |
|
| 471 | + if (!$this->connect($this->_remote_host, $this->_remote_port, $this->_remote_tls)) { |
|
| 472 | 472 | exit('FATAL: Could not reconnect to ('.$this->_remote_host.') after ('.$this->_reconnectRetries.') tries.'.PHP_EOL); |
| 473 | 473 | } |
| 474 | 474 | |
| 475 | 475 | if ($this->_alreadyLoggedIn === false) { |
| 476 | - if (! $this->login($this->_nickName, $this->_userName, $this->_realName, $this->_password)) { |
|
| 476 | + if (!$this->login($this->_nickName, $this->_userName, $this->_realName, $this->_password)) { |
|
| 477 | 477 | exit('FATAL: Could not log in to ('.$this->_remote_host.')!'.PHP_EOL); |
| 478 | 478 | } |
| 479 | 479 | |
@@ -490,7 +490,7 @@ discard block |
||
| 490 | 490 | do { |
| 491 | 491 | stream_set_timeout($this->_socket, $this->_socket_timeout); |
| 492 | 492 | $buffer .= fgets($this->_socket, 1024); |
| 493 | - } while (! empty($buffer) && ! preg_match('/\v+$/', $buffer)); |
|
| 493 | + } while (!empty($buffer) && !preg_match('/\v+$/', $buffer)); |
|
| 494 | 494 | $this->_buffer = trim($buffer); |
| 495 | 495 | |
| 496 | 496 | if ($this->_debug && $this->_buffer !== '') { |
@@ -576,7 +576,7 @@ discard block |
||
| 576 | 576 | */ |
| 577 | 577 | protected function _connected(): bool |
| 578 | 578 | { |
| 579 | - return \is_resource($this->_socket) && ! feof($this->_socket); |
|
| 579 | + return \is_resource($this->_socket) && !feof($this->_socket); |
|
| 580 | 580 | } |
| 581 | 581 | |
| 582 | 582 | /** |
@@ -156,7 +156,7 @@ discard block |
||
| 156 | 156 | */ |
| 157 | 157 | public function updatePreDb(array $parameters): void |
| 158 | 158 | { |
| 159 | - if (! empty($parameters)) { |
|
| 159 | + if (!empty($parameters)) { |
|
| 160 | 160 | $this->insertPredb($parameters); |
| 161 | 161 | } |
| 162 | 162 | } |
@@ -217,12 +217,12 @@ discard block |
||
| 217 | 217 | $resultData = []; |
| 218 | 218 | try { |
| 219 | 219 | $query = $this->search->setIndex($rt_index)->option('ranker', 'sph04')->option('sort_method', 'pq')->maxMatches(10000)->limit(10000)->sort('id', 'desc')->stripBadUtf8(true)->trackScores(true); |
| 220 | - if (! empty($searchArray)) { |
|
| 220 | + if (!empty($searchArray)) { |
|
| 221 | 221 | foreach ($searchArray as $key => $value) { |
| 222 | 222 | $query->search('@@relaxed @'.$key.' '.self::escapeString($value)); |
| 223 | 223 | } |
| 224 | - } elseif (! empty($searchString)) { |
|
| 225 | - $searchColumns = ! empty($column) ? '@'.implode('', $column) : ''; |
|
| 224 | + } elseif (!empty($searchString)) { |
|
| 225 | + $searchColumns = !empty($column) ? '@'.implode('', $column) : ''; |
|
| 226 | 226 | $query->search('@@relaxed'.$searchColumns.' '.self::escapeString($searchString)); |
| 227 | 227 | } else { |
| 228 | 228 | return []; |
@@ -137,7 +137,7 @@ discard block |
||
| 137 | 137 | $this->config->language = $this->lookuplanguage; |
| 138 | 138 | $this->config->throwHttpExceptions = false; |
| 139 | 139 | $cacheDir = storage_path('framework/cache/imdb_cache'); |
| 140 | - if (! File::isDirectory($cacheDir)) { |
|
| 140 | + if (!File::isDirectory($cacheDir)) { |
|
| 141 | 141 | File::makeDirectory($cacheDir, 0777, false, true); |
| 142 | 142 | } |
| 143 | 143 | $this->config->cachedir = $cacheDir; |
@@ -190,7 +190,7 @@ discard block |
||
| 190 | 190 | ORDER BY %s %s %s", |
| 191 | 191 | $this->showPasswords, |
| 192 | 192 | $this->getBrowseBy(), |
| 193 | - (! empty($catsrch) ? $catsrch : ''), |
|
| 193 | + (!empty($catsrch) ? $catsrch : ''), |
|
| 194 | 194 | ( |
| 195 | 195 | $maxAge > 0 |
| 196 | 196 | ? 'AND r.postdate > NOW() - INTERVAL '.$maxAge.'DAY ' |
@@ -210,7 +210,7 @@ discard block |
||
| 210 | 210 | Cache::put(md5($moviesSql.$page), $movies, $expiresAt); |
| 211 | 211 | } |
| 212 | 212 | $movieIDs = $releaseIDs = []; |
| 213 | - if (! empty($movies['result'])) { |
|
| 213 | + if (!empty($movies['result'])) { |
|
| 214 | 214 | foreach ($movies['result'] as $movie => $id) { |
| 215 | 215 | $movieIDs[] = $id->imdbid; |
| 216 | 216 | $releaseIDs[] = $id->grp_release_id; |
@@ -249,9 +249,9 @@ discard block |
||
| 249 | 249 | AND r.id IN (%s) %s |
| 250 | 250 | GROUP BY m.imdbid |
| 251 | 251 | ORDER BY %s %s", |
| 252 | - (\is_array($movieIDs) && ! empty($movieIDs) ? implode(',', $movieIDs) : -1), |
|
| 253 | - (\is_array($releaseIDs) && ! empty($releaseIDs) ? implode(',', $releaseIDs) : -1), |
|
| 254 | - (! empty($catsrch) ? $catsrch : ''), |
|
| 252 | + (\is_array($movieIDs) && !empty($movieIDs) ? implode(',', $movieIDs) : -1), |
|
| 253 | + (\is_array($releaseIDs) && !empty($releaseIDs) ? implode(',', $releaseIDs) : -1), |
|
| 254 | + (!empty($catsrch) ? $catsrch : ''), |
|
| 255 | 255 | $order[0], |
| 256 | 256 | $order[1] |
| 257 | 257 | ); |
@@ -297,7 +297,7 @@ discard block |
||
| 297 | 297 | $browseBy = ' '; |
| 298 | 298 | $browseByArr = ['title', 'director', 'actors', 'genre', 'rating', 'year', 'imdb']; |
| 299 | 299 | foreach ($browseByArr as $bb) { |
| 300 | - if (request()->has($bb) && ! empty(request()->input($bb))) { |
|
| 300 | + if (request()->has($bb) && !empty(request()->input($bb))) { |
|
| 301 | 301 | $bbv = stripslashes(request()->input($bb)); |
| 302 | 302 | if ($bb === 'rating') { |
| 303 | 303 | $bbv .= '.'; |
@@ -330,7 +330,7 @@ discard block |
||
| 330 | 330 | |
| 331 | 331 | if ($this->traktcheck !== null) { |
| 332 | 332 | $data = $this->traktTv->client->movieSummary('tt'.$imdbId, 'full'); |
| 333 | - if (($data !== false) && ! empty($data['trailer'])) { |
|
| 333 | + if (($data !== false) && !empty($data['trailer'])) { |
|
| 334 | 334 | return $data['trailer']; |
| 335 | 335 | } |
| 336 | 336 | } |
@@ -356,7 +356,7 @@ discard block |
||
| 356 | 356 | return false; |
| 357 | 357 | } |
| 358 | 358 | |
| 359 | - if (! empty($data['trailer'])) { |
|
| 359 | + if (!empty($data['trailer'])) { |
|
| 360 | 360 | $data['trailer'] = str_ireplace( |
| 361 | 361 | ['watch?v=', 'http://'], |
| 362 | 362 | ['embed/', 'https://'], |
@@ -390,17 +390,17 @@ discard block |
||
| 390 | 390 | */ |
| 391 | 391 | private function checkTraktValue($value) |
| 392 | 392 | { |
| 393 | - if (\is_array($value) && ! empty($value)) { |
|
| 393 | + if (\is_array($value) && !empty($value)) { |
|
| 394 | 394 | $temp = ''; |
| 395 | 395 | foreach ($value as $val) { |
| 396 | - if (! \is_array($val) && ! \is_object($val)) { |
|
| 396 | + if (!\is_array($val) && !\is_object($val)) { |
|
| 397 | 397 | $temp .= $val; |
| 398 | 398 | } |
| 399 | 399 | } |
| 400 | 400 | $value = $temp; |
| 401 | 401 | } |
| 402 | 402 | |
| 403 | - return ! empty($value) ? $value : ''; |
|
| 403 | + return !empty($value) ? $value : ''; |
|
| 404 | 404 | } |
| 405 | 405 | |
| 406 | 406 | /** |
@@ -421,7 +421,7 @@ discard block |
||
| 421 | 421 | */ |
| 422 | 422 | public function update(array $values): bool |
| 423 | 423 | { |
| 424 | - if (! \count($values)) { |
|
| 424 | + if (!\count($values)) { |
|
| 425 | 425 | return false; |
| 426 | 426 | } |
| 427 | 427 | |
@@ -429,7 +429,7 @@ discard block |
||
| 429 | 429 | $onDuplicateKey = ['created_at' => now()]; |
| 430 | 430 | $found = 0; |
| 431 | 431 | foreach ($values as $key => $value) { |
| 432 | - if (! empty($value)) { |
|
| 432 | + if (!empty($value)) { |
|
| 433 | 433 | $found++; |
| 434 | 434 | if (\in_array($key, ['genre', 'language'], false)) { |
| 435 | 435 | $value = substr($value, 0, 64); |
@@ -438,7 +438,7 @@ discard block |
||
| 438 | 438 | $onDuplicateKey += [$key => $value]; |
| 439 | 439 | } |
| 440 | 440 | } |
| 441 | - if (! $found) { |
|
| 441 | + if (!$found) { |
|
| 442 | 442 | return false; |
| 443 | 443 | } |
| 444 | 444 | foreach ($query as $key => $value) { |
@@ -455,19 +455,19 @@ discard block |
||
| 455 | 455 | */ |
| 456 | 456 | protected function setVariables(string|array $variable1, string|array $variable2, string|array $variable3, string|array $variable4, string|array $variable5) |
| 457 | 457 | { |
| 458 | - if (! empty($variable1)) { |
|
| 458 | + if (!empty($variable1)) { |
|
| 459 | 459 | return $variable1; |
| 460 | 460 | } |
| 461 | - if (! empty($variable2)) { |
|
| 461 | + if (!empty($variable2)) { |
|
| 462 | 462 | return $variable2; |
| 463 | 463 | } |
| 464 | - if (! empty($variable3)) { |
|
| 464 | + if (!empty($variable3)) { |
|
| 465 | 465 | return $variable3; |
| 466 | 466 | } |
| 467 | - if (! empty($variable4)) { |
|
| 467 | + if (!empty($variable4)) { |
|
| 468 | 468 | return $variable4; |
| 469 | 469 | } |
| 470 | - if (! empty($variable5)) { |
|
| 470 | + if (!empty($variable5)) { |
|
| 471 | 471 | return $variable5; |
| 472 | 472 | } |
| 473 | 473 | |
@@ -502,7 +502,7 @@ discard block |
||
| 502 | 502 | |
| 503 | 503 | $iTunes = $this->fetchItunesMovieProperties($this->currentTitle); |
| 504 | 504 | |
| 505 | - if (! $imdb && ! $tmdb && ! $trakt && ! $omdb && empty($iTunes)) { |
|
| 505 | + if (!$imdb && !$tmdb && !$trakt && !$omdb && empty($iTunes)) { |
|
| 506 | 506 | return false; |
| 507 | 507 | } |
| 508 | 508 | |
@@ -515,36 +515,36 @@ discard block |
||
| 515 | 515 | $mov['type'] = $mov['director'] = $mov['actors'] = $mov['language'] = ''; |
| 516 | 516 | |
| 517 | 517 | $mov['imdbid'] = $imdbId; |
| 518 | - $mov['tmdbid'] = (! isset($tmdb['tmdbid']) || $tmdb['tmdbid'] === '') ? 0 : $tmdb['tmdbid']; |
|
| 519 | - $mov['traktid'] = (! isset($trakt['id']) || $trakt['id'] === '') ? 0 : $trakt['id']; |
|
| 518 | + $mov['tmdbid'] = (!isset($tmdb['tmdbid']) || $tmdb['tmdbid'] === '') ? 0 : $tmdb['tmdbid']; |
|
| 519 | + $mov['traktid'] = (!isset($trakt['id']) || $trakt['id'] === '') ? 0 : $trakt['id']; |
|
| 520 | 520 | |
| 521 | 521 | // Prefer Fanart.tv cover over TMDB,TMDB over IMDB,IMDB over OMDB and OMDB over iTunes. |
| 522 | - if (! empty($fanart['cover'])) { |
|
| 522 | + if (!empty($fanart['cover'])) { |
|
| 523 | 523 | $mov['cover'] = $this->releaseImage->saveImage($imdbId.'-cover', $fanart['cover'], $this->imgSavePath); |
| 524 | - } elseif (! empty($tmdb['cover'])) { |
|
| 524 | + } elseif (!empty($tmdb['cover'])) { |
|
| 525 | 525 | $mov['cover'] = $this->releaseImage->saveImage($imdbId.'-cover', $tmdb['cover'], $this->imgSavePath); |
| 526 | - } elseif (! empty($imdb['cover'])) { |
|
| 526 | + } elseif (!empty($imdb['cover'])) { |
|
| 527 | 527 | $mov['cover'] = $this->releaseImage->saveImage($imdbId.'-cover', $imdb['cover'], $this->imgSavePath); |
| 528 | - } elseif (! empty($omdb['cover'])) { |
|
| 528 | + } elseif (!empty($omdb['cover'])) { |
|
| 529 | 529 | $mov['cover'] = $this->releaseImage->saveImage($imdbId.'-cover', $omdb['cover'], $this->imgSavePath); |
| 530 | - } elseif (! empty($iTunes['cover'])) { |
|
| 530 | + } elseif (!empty($iTunes['cover'])) { |
|
| 531 | 531 | $mov['cover'] = $this->releaseImage->saveImage($imdbId.'-cover', $iTunes['cover'], $this->imgSavePath); |
| 532 | 532 | } |
| 533 | 533 | |
| 534 | 534 | // Backdrops. |
| 535 | - if (! empty($fanart['backdrop'])) { |
|
| 535 | + if (!empty($fanart['backdrop'])) { |
|
| 536 | 536 | $mov['backdrop'] = $this->releaseImage->saveImage($imdbId.'-backdrop', $fanart['backdrop'], $this->imgSavePath, 1920, 1024); |
| 537 | - } elseif (! empty($tmdb['backdrop'])) { |
|
| 537 | + } elseif (!empty($tmdb['backdrop'])) { |
|
| 538 | 538 | $mov['backdrop'] = $this->releaseImage->saveImage($imdbId.'-backdrop', $tmdb['backdrop'], $this->imgSavePath, 1920, 1024); |
| 539 | 539 | } |
| 540 | 540 | |
| 541 | 541 | // Banner |
| 542 | - if (! empty($fanart['banner'])) { |
|
| 542 | + if (!empty($fanart['banner'])) { |
|
| 543 | 543 | $mov['banner'] = $this->releaseImage->saveImage($imdbId.'-banner', $fanart['banner'], $this->imgSavePath); |
| 544 | 544 | } |
| 545 | 545 | |
| 546 | 546 | // RottenTomatoes rating from OmdbAPI |
| 547 | - if ($omdb !== false && ! empty($omdb['rtRating'])) { |
|
| 547 | + if ($omdb !== false && !empty($omdb['rtRating'])) { |
|
| 548 | 548 | $mov['rtrating'] = $omdb['rtRating']; |
| 549 | 549 | } |
| 550 | 550 | |
@@ -555,29 +555,29 @@ discard block |
||
| 555 | 555 | $mov['year'] = $this->setVariables($imdb['year'] ?? '', $tmdb['year'] ?? '', $trakt['year'] ?? '', $omdb['year'] ?? '', $iTunes['year'] ?? ''); |
| 556 | 556 | $mov['genre'] = $this->setVariables($imdb['genre'] ?? '', $tmdb['genre'] ?? '', $trakt['genres'] ?? '', $omdb['genre'] ?? '', $iTunes['genre'] ?? ''); |
| 557 | 557 | |
| 558 | - if (! empty($imdb['type'])) { |
|
| 558 | + if (!empty($imdb['type'])) { |
|
| 559 | 559 | $mov['type'] = $imdb['type']; |
| 560 | 560 | } |
| 561 | 561 | |
| 562 | - if (! empty($imdb['director'])) { |
|
| 562 | + if (!empty($imdb['director'])) { |
|
| 563 | 563 | $mov['director'] = \is_array($imdb['director']) ? implode(', ', array_unique($imdb['director'])) : $imdb['director']; |
| 564 | - } elseif (! empty($omdb['director'])) { |
|
| 564 | + } elseif (!empty($omdb['director'])) { |
|
| 565 | 565 | $mov['director'] = \is_array($omdb['director']) ? implode(', ', array_unique($omdb['director'])) : $omdb['director']; |
| 566 | - } elseif (! empty($tmdb['director'])) { |
|
| 566 | + } elseif (!empty($tmdb['director'])) { |
|
| 567 | 567 | $mov['director'] = \is_array($tmdb['director']) ? implode(', ', array_unique($tmdb['director'])) : $tmdb['director']; |
| 568 | 568 | } |
| 569 | 569 | |
| 570 | - if (! empty($imdb['actors'])) { |
|
| 570 | + if (!empty($imdb['actors'])) { |
|
| 571 | 571 | $mov['actors'] = \is_array($imdb['actors']) ? implode(', ', array_unique($imdb['actors'])) : $imdb['actors']; |
| 572 | - } elseif (! empty($omdb['actors'])) { |
|
| 572 | + } elseif (!empty($omdb['actors'])) { |
|
| 573 | 573 | $mov['actors'] = \is_array($omdb['actors']) ? implode(', ', array_unique($omdb['actors'])) : $omdb['actors']; |
| 574 | - } elseif (! empty($tmdb['actors'])) { |
|
| 574 | + } elseif (!empty($tmdb['actors'])) { |
|
| 575 | 575 | $mov['actors'] = \is_array($tmdb['actors']) ? implode(', ', array_unique($tmdb['actors'])) : $tmdb['actors']; |
| 576 | 576 | } |
| 577 | 577 | |
| 578 | - if (! empty($imdb['language'])) { |
|
| 578 | + if (!empty($imdb['language'])) { |
|
| 579 | 579 | $mov['language'] = \is_array($imdb['language']) ? implode(', ', array_unique($imdb['language'])) : $imdb['language']; |
| 580 | - } elseif (! empty($omdb['language']) && ! is_bool($omdb['language'])) { |
|
| 580 | + } elseif (!empty($omdb['language']) && !is_bool($omdb['language'])) { |
|
| 581 | 581 | $mov['language'] = \is_array($omdb['language']) ? implode(', ', array_unique($omdb['language'])) : $omdb['language']; |
| 582 | 582 | } |
| 583 | 583 | |
@@ -635,20 +635,20 @@ discard block |
||
| 635 | 635 | if ($this->fanartapikey !== null) { |
| 636 | 636 | $art = $this->fanart->getMovieFanArt('tt'.$imdbId); |
| 637 | 637 | |
| 638 | - if (! empty($art)) { |
|
| 638 | + if (!empty($art)) { |
|
| 639 | 639 | if (isset($art['status']) && $art['status'] === 'error') { |
| 640 | 640 | return false; |
| 641 | 641 | } |
| 642 | 642 | $ret = []; |
| 643 | - if (! empty($art['moviebackground'][0]['url'])) { |
|
| 643 | + if (!empty($art['moviebackground'][0]['url'])) { |
|
| 644 | 644 | $ret['backdrop'] = $art['moviebackground'][0]['url']; |
| 645 | - } elseif (! empty($art['moviethumb'][0]['url'])) { |
|
| 645 | + } elseif (!empty($art['moviethumb'][0]['url'])) { |
|
| 646 | 646 | $ret['backdrop'] = $art['moviethumb'][0]['url']; |
| 647 | 647 | } |
| 648 | - if (! empty($art['movieposter'][0]['url'])) { |
|
| 648 | + if (!empty($art['movieposter'][0]['url'])) { |
|
| 649 | 649 | $ret['cover'] = $art['movieposter'][0]['url']; |
| 650 | 650 | } |
| 651 | - if (! empty($art['moviebanner'][0]['url'])) { |
|
| 651 | + if (!empty($art['moviebanner'][0]['url'])) { |
|
| 652 | 652 | $ret['banner'] = $art['moviebanner'][0]['url']; |
| 653 | 653 | } |
| 654 | 654 | |
@@ -685,7 +685,7 @@ discard block |
||
| 685 | 685 | return false; |
| 686 | 686 | } |
| 687 | 687 | |
| 688 | - if (! empty($tmdbLookup)) { |
|
| 688 | + if (!empty($tmdbLookup)) { |
|
| 689 | 689 | if ($this->currentTitle !== '') { |
| 690 | 690 | // Check the similarity. |
| 691 | 691 | similar_text($this->currentTitle, $tmdbLookup['title'], $percent); |
@@ -714,7 +714,7 @@ discard block |
||
| 714 | 714 | $ret['rating'] = ''; |
| 715 | 715 | } |
| 716 | 716 | $actors = Arr::pluck($tmdbLookup['credits']['cast'], 'name'); |
| 717 | - if (! empty($actors)) { |
|
| 717 | + if (!empty($actors)) { |
|
| 718 | 718 | $ret['actors'] = $actors; |
| 719 | 719 | } else { |
| 720 | 720 | $ret['actors'] = ''; |
@@ -725,7 +725,7 @@ discard block |
||
| 725 | 725 | } |
| 726 | 726 | } |
| 727 | 727 | $overview = $tmdbLookup['overview']; |
| 728 | - if (! empty($overview)) { |
|
| 728 | + if (!empty($overview)) { |
|
| 729 | 729 | $ret['plot'] = $overview; |
| 730 | 730 | } else { |
| 731 | 731 | $ret['plot'] = ''; |
@@ -735,13 +735,13 @@ discard block |
||
| 735 | 735 | $ret['tagline'] = $tagline ?? ''; |
| 736 | 736 | |
| 737 | 737 | $released = $tmdbLookup['release_date']; |
| 738 | - if (! empty($released)) { |
|
| 738 | + if (!empty($released)) { |
|
| 739 | 739 | $ret['year'] = Carbon::parse($released)->year; |
| 740 | 740 | } else { |
| 741 | 741 | $ret['year'] = ''; |
| 742 | 742 | } |
| 743 | 743 | $genresa = $tmdbLookup['genres']; |
| 744 | - if (! empty($genresa) && \count($genresa) > 0) { |
|
| 744 | + if (!empty($genresa) && \count($genresa) > 0) { |
|
| 745 | 745 | $genres = []; |
| 746 | 746 | foreach ($genresa as $genre) { |
| 747 | 747 | $genres[] = $genre['name']; |
@@ -751,13 +751,13 @@ discard block |
||
| 751 | 751 | $ret['genre'] = ''; |
| 752 | 752 | } |
| 753 | 753 | $posterp = $tmdbLookup['poster_path']; |
| 754 | - if (! empty($posterp)) { |
|
| 754 | + if (!empty($posterp)) { |
|
| 755 | 755 | $ret['cover'] = 'https://image.tmdb.org/t/p/original'.$posterp; |
| 756 | 756 | } else { |
| 757 | 757 | $ret['cover'] = ''; |
| 758 | 758 | } |
| 759 | 759 | $backdrop = $tmdbLookup['backdrop_path']; |
| 760 | - if (! empty($backdrop)) { |
|
| 760 | + if (!empty($backdrop)) { |
|
| 761 | 761 | $ret['backdrop'] = 'https://image.tmdb.org/t/p/original'.$backdrop; |
| 762 | 762 | } else { |
| 763 | 763 | $ret['backdrop'] = ''; |
@@ -779,9 +779,9 @@ discard block |
||
| 779 | 779 | { |
| 780 | 780 | $realId = (new Title($imdbId, $this->config))->real_id(); |
| 781 | 781 | $result = new Title($realId, $this->config); |
| 782 | - $title = ! empty($result->orig_title()) ? $result->orig_title() : $result->title(); |
|
| 783 | - if (! empty($title)) { |
|
| 784 | - if (! empty($this->currentTitle)) { |
|
| 782 | + $title = !empty($result->orig_title()) ? $result->orig_title() : $result->title(); |
|
| 783 | + if (!empty($title)) { |
|
| 784 | + if (!empty($this->currentTitle)) { |
|
| 785 | 785 | similar_text($this->currentTitle, $title, $percent); |
| 786 | 786 | if ($percent >= self::MATCH_PERCENT) { |
| 787 | 787 | similar_text($this->currentYear, $result->year(), $percent); |
@@ -790,7 +790,7 @@ discard block |
||
| 790 | 790 | 'title' => $title, |
| 791 | 791 | 'tagline' => $result->tagline() ?? '', |
| 792 | 792 | 'plot' => Arr::get($result->plot_split(), '0.plot'), |
| 793 | - 'rating' => ! empty($result->rating()) ? $result->rating() : '', |
|
| 793 | + 'rating' => !empty($result->rating()) ? $result->rating() : '', |
|
| 794 | 794 | 'year' => $result->year() ?? '', |
| 795 | 795 | 'cover' => $result->photo() ?? '', |
| 796 | 796 | 'genre' => $result->genre() ?? '', |
@@ -815,7 +815,7 @@ discard block |
||
| 815 | 815 | 'title' => $title, |
| 816 | 816 | 'tagline' => $result->tagline() ?? '', |
| 817 | 817 | 'plot' => Arr::get($result->plot_split(), '0.plot'), |
| 818 | - 'rating' => ! empty($result->rating()) ? $result->rating() : '', |
|
| 818 | + 'rating' => !empty($result->rating()) ? $result->rating() : '', |
|
| 819 | 819 | 'year' => $result->year() ?? '', |
| 820 | 820 | 'cover' => $result->photo() ?? '', |
| 821 | 821 | 'genre' => $result->genre() ?? '', |
@@ -889,7 +889,7 @@ discard block |
||
| 889 | 889 | if ($this->omdbapikey !== null) { |
| 890 | 890 | $resp = $this->omdbApi->fetch('i', 'tt'.$imdbId); |
| 891 | 891 | |
| 892 | - if (\is_object($resp) && $resp->message === 'OK' && ! Str::contains($resp->data->Response, 'Error:') && $resp->data->Response !== 'False') { |
|
| 892 | + if (\is_object($resp) && $resp->message === 'OK' && !Str::contains($resp->data->Response, 'Error:') && $resp->data->Response !== 'False') { |
|
| 893 | 893 | similar_text($this->currentTitle, $resp->data->Title, $percent); |
| 894 | 894 | if ($percent >= self::MATCH_PERCENT) { |
| 895 | 895 | similar_text($this->currentYear, $resp->data->Year, $percent); |
@@ -1055,7 +1055,7 @@ discard block |
||
| 1055 | 1055 | // Loop over releases. |
| 1056 | 1056 | foreach ($res as $arr) { |
| 1057 | 1057 | // Try to get a name/year. |
| 1058 | - if (! $this->parseMovieSearchName($arr['searchname'])) { |
|
| 1058 | + if (!$this->parseMovieSearchName($arr['searchname'])) { |
|
| 1059 | 1059 | //We didn't find a name, so set to all 0's so we don't parse again. |
| 1060 | 1060 | Release::query()->where('id', $arr['id'])->update(['imdbid' => 0000000]); |
| 1061 | 1061 | |
@@ -1089,7 +1089,7 @@ discard block |
||
| 1089 | 1089 | $imdbSearch = new TitleSearch($this->config); |
| 1090 | 1090 | foreach ($imdbSearch->search($this->currentTitle, [TitleSearch::MOVIE]) as $imdbTitle) { |
| 1091 | 1091 | try { |
| 1092 | - if (! empty($imdbTitle->orig_title())) { |
|
| 1092 | + if (!empty($imdbTitle->orig_title())) { |
|
| 1093 | 1093 | similar_text($imdbTitle->orig_title(), $this->currentTitle, $percent); |
| 1094 | 1094 | if ($percent >= self::MATCH_PERCENT) { |
| 1095 | 1095 | similar_text($this->currentYear, $imdbTitle->year(), $percent); |
@@ -1119,10 +1119,10 @@ discard block |
||
| 1119 | 1119 | $buffer = $this->omdbApi->search($omdbTitle, 'movie'); |
| 1120 | 1120 | } |
| 1121 | 1121 | |
| 1122 | - if (\is_object($buffer) && $buffer->message === 'OK' && ! Str::contains($buffer->data->Response, 'Error:') && $buffer->data->Response === 'True') { |
|
| 1122 | + if (\is_object($buffer) && $buffer->message === 'OK' && !Str::contains($buffer->data->Response, 'Error:') && $buffer->data->Response === 'True') { |
|
| 1123 | 1123 | $getIMDBid = $buffer->data->Search[0]->imdbID; |
| 1124 | 1124 | |
| 1125 | - if (! empty($getIMDBid)) { |
|
| 1125 | + if (!empty($getIMDBid)) { |
|
| 1126 | 1126 | $imdbId = $this->doMovieUpdate($getIMDBid, 'OMDbAPI', $arr['id']); |
| 1127 | 1127 | if ($imdbId !== false) { |
| 1128 | 1128 | $movieUpdated = true; |
@@ -1137,7 +1137,7 @@ discard block |
||
| 1137 | 1137 | $data = $this->traktTv->client->movieSummary($movieName, 'full'); |
| 1138 | 1138 | if ($data !== false) { |
| 1139 | 1139 | $this->parseTraktTv($data); |
| 1140 | - if (! empty($data['ids']['imdb'])) { |
|
| 1140 | + if (!empty($data['ids']['imdb'])) { |
|
| 1141 | 1141 | $imdbId = $this->doMovieUpdate($data['ids']['imdb'], 'Trakt', $arr['id']); |
| 1142 | 1142 | if ($imdbId !== false) { |
| 1143 | 1143 | $movieUpdated = true; |
@@ -1150,13 +1150,13 @@ discard block |
||
| 1150 | 1150 | if ($movieUpdated === false) { |
| 1151 | 1151 | try { |
| 1152 | 1152 | $data = Tmdb::getSearchApi()->searchMovies($this->currentTitle); |
| 1153 | - if (($data['total_results'] > 0) && ! empty($data['results'])) { |
|
| 1153 | + if (($data['total_results'] > 0) && !empty($data['results'])) { |
|
| 1154 | 1154 | foreach ($data['results'] as $result) { |
| 1155 | - if (! empty($result['id']) && ! empty($result['release_date'])) { |
|
| 1155 | + if (!empty($result['id']) && !empty($result['release_date'])) { |
|
| 1156 | 1156 | similar_text($this->currentYear, Carbon::parse($result['release_date'])->year, $percent); |
| 1157 | 1157 | if ($percent >= self::YEAR_MATCH_PERCENT) { |
| 1158 | 1158 | $ret = $this->fetchTMDBProperties($result['id'], true); |
| 1159 | - if ($ret !== false && ! empty($ret['imdbid'])) { |
|
| 1159 | + if ($ret !== false && !empty($ret['imdbid'])) { |
|
| 1160 | 1160 | $imdbId = $this->doMovieUpdate('tt'.$ret['imdbid'], 'TMDB', $arr['id']); |
| 1161 | 1161 | if ($imdbId !== false) { |
| 1162 | 1162 | $movieUpdated = true; |
@@ -1235,7 +1235,7 @@ discard block |
||
| 1235 | 1235 | // Finally remove multiple spaces and trim leading spaces. |
| 1236 | 1236 | $name = trim(preg_replace('/\s{2,}/', ' ', $name)); |
| 1237 | 1237 | // Check if the name is long enough and not just numbers. |
| 1238 | - if (\strlen($name) > 4 && ! preg_match('/^\d+$/', $name)) { |
|
| 1238 | + if (\strlen($name) > 4 && !preg_match('/^\d+$/', $name)) { |
|
| 1239 | 1239 | $this->currentTitle = $name; |
| 1240 | 1240 | $this->currentYear = $year; |
| 1241 | 1241 | |
@@ -173,7 +173,7 @@ discard block |
||
| 173 | 173 | $channels = config('irc_settings.scrape_irc_channels') ? unserialize(config('irc_settings.scrape_irc_channels'), ['allowed_classes' => ['#PreNNTmux', '#nZEDbPRE']]) : ['#PreNNTmux' => null]; |
| 174 | 174 | $this->joinChannels($channels); |
| 175 | 175 | |
| 176 | - if (! $this->_silent) { |
|
| 176 | + if (!$this->_silent) { |
|
| 177 | 177 | echo '['. |
| 178 | 178 | date('r'). |
| 179 | 179 | '] [Scraping of IRC channels for ('. |
@@ -291,34 +291,34 @@ discard block |
||
| 291 | 291 | } else { |
| 292 | 292 | $indexData = $this->manticoreSearch->searchIndexes('predb_rt', $this->_curPre['title'], ['title']); |
| 293 | 293 | } |
| 294 | - if (! empty($indexData) || empty($this->_curPre['title'])) { |
|
| 294 | + if (!empty($indexData) || empty($this->_curPre['title'])) { |
|
| 295 | 295 | return; |
| 296 | 296 | } |
| 297 | 297 | |
| 298 | 298 | $query = 'INSERT INTO predb ('; |
| 299 | 299 | |
| 300 | - $query .= (! empty($this->_curPre['size']) ? 'size, ' : ''); |
|
| 301 | - $query .= (! empty($this->_curPre['category']) ? 'category, ' : ''); |
|
| 302 | - $query .= (! empty($this->_curPre['source']) ? 'source, ' : ''); |
|
| 303 | - $query .= (! empty($this->_curPre['reason']) ? 'nukereason, ' : ''); |
|
| 304 | - $query .= (! empty($this->_curPre['files']) ? 'files, ' : ''); |
|
| 305 | - $query .= (! empty($this->_curPre['reqid']) ? 'requestid, ' : ''); |
|
| 306 | - $query .= (! empty($this->_curPre['group_id']) ? 'groups_id, ' : ''); |
|
| 307 | - $query .= (! empty($this->_curPre['nuked']) ? 'nuked, ' : ''); |
|
| 308 | - $query .= (! empty($this->_curPre['filename']) ? 'filename, ' : ''); |
|
| 300 | + $query .= (!empty($this->_curPre['size']) ? 'size, ' : ''); |
|
| 301 | + $query .= (!empty($this->_curPre['category']) ? 'category, ' : ''); |
|
| 302 | + $query .= (!empty($this->_curPre['source']) ? 'source, ' : ''); |
|
| 303 | + $query .= (!empty($this->_curPre['reason']) ? 'nukereason, ' : ''); |
|
| 304 | + $query .= (!empty($this->_curPre['files']) ? 'files, ' : ''); |
|
| 305 | + $query .= (!empty($this->_curPre['reqid']) ? 'requestid, ' : ''); |
|
| 306 | + $query .= (!empty($this->_curPre['group_id']) ? 'groups_id, ' : ''); |
|
| 307 | + $query .= (!empty($this->_curPre['nuked']) ? 'nuked, ' : ''); |
|
| 308 | + $query .= (!empty($this->_curPre['filename']) ? 'filename, ' : ''); |
|
| 309 | 309 | |
| 310 | 310 | $query .= 'predate, title) VALUES ('; |
| 311 | 311 | |
| 312 | - $query .= (! empty($this->_curPre['size']) ? escapeString($this->_curPre['size']).', ' : ''); |
|
| 313 | - $query .= (! empty($this->_curPre['category']) ? escapeString($this->_curPre['category']).', ' : ''); |
|
| 314 | - $query .= (! empty($this->_curPre['source']) ? escapeString($this->_curPre['source']).', ' : ''); |
|
| 315 | - $query .= (! empty($this->_curPre['reason']) ? escapeString($this->_curPre['reason']).', ' : ''); |
|
| 316 | - $query .= (! empty($this->_curPre['files']) ? escapeString($this->_curPre['files']).', ' : ''); |
|
| 317 | - $query .= (! empty($this->_curPre['reqid']) ? $this->_curPre['reqid'].', ' : ''); |
|
| 318 | - $query .= (! empty($this->_curPre['group_id']) ? $this->_curPre['group_id'].', ' : ''); |
|
| 319 | - $query .= (! empty($this->_curPre['nuked']) ? $this->_curPre['nuked'].', ' : ''); |
|
| 320 | - $query .= (! empty($this->_curPre['filename']) ? escapeString($this->_curPre['filename']).', ' : ''); |
|
| 321 | - $query .= (! empty($this->_curPre['predate']) ? $this->_curPre['predate'].', ' : 'NOW(), '); |
|
| 312 | + $query .= (!empty($this->_curPre['size']) ? escapeString($this->_curPre['size']).', ' : ''); |
|
| 313 | + $query .= (!empty($this->_curPre['category']) ? escapeString($this->_curPre['category']).', ' : ''); |
|
| 314 | + $query .= (!empty($this->_curPre['source']) ? escapeString($this->_curPre['source']).', ' : ''); |
|
| 315 | + $query .= (!empty($this->_curPre['reason']) ? escapeString($this->_curPre['reason']).', ' : ''); |
|
| 316 | + $query .= (!empty($this->_curPre['files']) ? escapeString($this->_curPre['files']).', ' : ''); |
|
| 317 | + $query .= (!empty($this->_curPre['reqid']) ? $this->_curPre['reqid'].', ' : ''); |
|
| 318 | + $query .= (!empty($this->_curPre['group_id']) ? $this->_curPre['group_id'].', ' : ''); |
|
| 319 | + $query .= (!empty($this->_curPre['nuked']) ? $this->_curPre['nuked'].', ' : ''); |
|
| 320 | + $query .= (!empty($this->_curPre['filename']) ? escapeString($this->_curPre['filename']).', ' : ''); |
|
| 321 | + $query .= (!empty($this->_curPre['predate']) ? $this->_curPre['predate'].', ' : 'NOW(), '); |
|
| 322 | 322 | |
| 323 | 323 | $query .= '%s)'; |
| 324 | 324 | |
@@ -359,17 +359,17 @@ discard block |
||
| 359 | 359 | |
| 360 | 360 | $query = 'UPDATE predb SET '; |
| 361 | 361 | |
| 362 | - $query .= (! empty($this->_curPre['size']) ? 'size = '.escapeString($this->_curPre['size']).', ' : ''); |
|
| 363 | - $query .= (! empty($this->_curPre['source']) ? 'source = '.escapeString($this->_curPre['source']).', ' : ''); |
|
| 364 | - $query .= (! empty($this->_curPre['files']) ? 'files = '.escapeString($this->_curPre['files']).', ' : ''); |
|
| 365 | - $query .= (! empty($this->_curPre['reason']) ? 'nukereason = '.escapeString($this->_curPre['reason']).', ' : ''); |
|
| 366 | - $query .= (! empty($this->_curPre['reqid']) ? 'requestid = '.$this->_curPre['reqid'].', ' : ''); |
|
| 367 | - $query .= (! empty($this->_curPre['group_id']) ? 'groups_id = '.$this->_curPre['group_id'].', ' : ''); |
|
| 368 | - $query .= (! empty($this->_curPre['predate']) ? 'predate = '.$this->_curPre['predate'].', ' : ''); |
|
| 369 | - $query .= (! empty($this->_curPre['nuked']) ? 'nuked = '.$this->_curPre['nuked'].', ' : ''); |
|
| 370 | - $query .= (! empty($this->_curPre['filename']) ? 'filename = '.escapeString($this->_curPre['filename']).', ' : ''); |
|
| 362 | + $query .= (!empty($this->_curPre['size']) ? 'size = '.escapeString($this->_curPre['size']).', ' : ''); |
|
| 363 | + $query .= (!empty($this->_curPre['source']) ? 'source = '.escapeString($this->_curPre['source']).', ' : ''); |
|
| 364 | + $query .= (!empty($this->_curPre['files']) ? 'files = '.escapeString($this->_curPre['files']).', ' : ''); |
|
| 365 | + $query .= (!empty($this->_curPre['reason']) ? 'nukereason = '.escapeString($this->_curPre['reason']).', ' : ''); |
|
| 366 | + $query .= (!empty($this->_curPre['reqid']) ? 'requestid = '.$this->_curPre['reqid'].', ' : ''); |
|
| 367 | + $query .= (!empty($this->_curPre['group_id']) ? 'groups_id = '.$this->_curPre['group_id'].', ' : ''); |
|
| 368 | + $query .= (!empty($this->_curPre['predate']) ? 'predate = '.$this->_curPre['predate'].', ' : ''); |
|
| 369 | + $query .= (!empty($this->_curPre['nuked']) ? 'nuked = '.$this->_curPre['nuked'].', ' : ''); |
|
| 370 | + $query .= (!empty($this->_curPre['filename']) ? 'filename = '.escapeString($this->_curPre['filename']).', ' : ''); |
|
| 371 | 371 | $query .= ( |
| 372 | - (empty($this->_oldPre['category']) && ! empty($this->_curPre['category'])) |
|
| 372 | + (empty($this->_oldPre['category']) && !empty($this->_curPre['category'])) |
|
| 373 | 373 | ? 'category = '.escapeString($this->_curPre['category']).', ' |
| 374 | 374 | : '' |
| 375 | 375 | ); |
@@ -404,7 +404,7 @@ discard block |
||
| 404 | 404 | */ |
| 405 | 405 | protected function _doEcho(bool $new = true): void |
| 406 | 406 | { |
| 407 | - if (! $this->_silent) { |
|
| 407 | + if (!$this->_silent) { |
|
| 408 | 408 | $nukeString = ''; |
| 409 | 409 | if ($this->_nuked !== false) { |
| 410 | 410 | switch ((int) $this->_curPre['nuked']) { |
@@ -439,15 +439,15 @@ discard block |
||
| 439 | 439 | $this->_curPre['title']. |
| 440 | 440 | ']'. |
| 441 | 441 | ( |
| 442 | - ! empty($this->_curPre['category']) |
|
| 442 | + !empty($this->_curPre['category']) |
|
| 443 | 443 | ? ' ['.$this->_curPre['category'].']' |
| 444 | 444 | : ( |
| 445 | - ! empty($this->_oldPre['category']) |
|
| 445 | + !empty($this->_oldPre['category']) |
|
| 446 | 446 | ? ' ['.$this->_oldPre['category'].']' |
| 447 | 447 | : '' |
| 448 | 448 | ) |
| 449 | 449 | ). |
| 450 | - (! empty($this->_curPre['size']) ? ' ['.$this->_curPre['size'].']' : ''). |
|
| 450 | + (!empty($this->_curPre['size']) ? ' ['.$this->_curPre['size'].']' : ''). |
|
| 451 | 451 | PHP_EOL; |
| 452 | 452 | } |
| 453 | 453 | } |
@@ -457,7 +457,7 @@ discard block |
||
| 457 | 457 | */ |
| 458 | 458 | protected function _getGroupID(string $groupName): mixed |
| 459 | 459 | { |
| 460 | - if (! isset($this->_groupList[$groupName])) { |
|
| 460 | + if (!isset($this->_groupList[$groupName])) { |
|
| 461 | 461 | $group = UsenetGroup::query()->where('name', $groupName)->first(['id']); |
| 462 | 462 | $this->_groupList[$groupName] = $group !== null ? $group['id'] : ''; |
| 463 | 463 | } |