mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
34 lines
798 B
PHP
34 lines
798 B
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
use App\Models\Settings;
|
|
use App\Services\NNTP\NNTPService;
|
|
|
|
class NfoProcessor
|
|
{
|
|
private NfoService $nfo;
|
|
|
|
public function __construct(NfoService $nfo, bool $echooutput)
|
|
{
|
|
$this->nfo = $nfo;
|
|
// echooutput kept for signature parity
|
|
}
|
|
|
|
/**
|
|
* Process NFO files if enabled by settings.
|
|
*/
|
|
public function process(NNTPService $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')
|
|
);
|
|
}
|
|
}
|
|
}
|