mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
35 lines
783 B
PHP
35 lines
783 B
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
use App\Models\Settings;
|
|
use Blacklight\Nfo;
|
|
use Blacklight\NNTP;
|
|
|
|
class NfoProcessor
|
|
{
|
|
private Nfo $nfo;
|
|
|
|
public function __construct(Nfo $nfo, bool $echooutput)
|
|
{
|
|
$this->nfo = $nfo;
|
|
// echooutput kept for signature parity
|
|
}
|
|
|
|
/**
|
|
* Process NFO files if enabled by settings.
|
|
*/
|
|
public function process(NNTP $nntp, string $groupID = '', string $guidChar = ''): void
|
|
{
|
|
if ((int) Settings::settingValue('lookupnfo') === 1) {
|
|
$this->nfo->processNfoFiles(
|
|
$nntp,
|
|
$groupID,
|
|
$guidChar,
|
|
(int) Settings::settingValue('lookupimdb'),
|
|
(int) Settings::settingValue('lookuptv')
|
|
);
|
|
}
|
|
}
|
|
}
|