mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 22:01:30 +00:00
114 lines
3.8 KiB
PHP
114 lines
3.8 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Admin;
|
|
|
|
use App\Http\Controllers\BasePageController;
|
|
use App\Models\Category;
|
|
use Blacklight\Binaries;
|
|
use Illuminate\Http\Request;
|
|
|
|
class AdminBlacklistController extends BasePageController
|
|
{
|
|
/**
|
|
* @throws \Exception
|
|
*/
|
|
public function index(): void
|
|
{
|
|
$this->setAdminPrefs();
|
|
$binaries = new Binaries();
|
|
|
|
$meta_title = $title = 'Binary Black/White List';
|
|
|
|
$binlist = $binaries->getBlacklist(false);
|
|
$this->smarty->assign('binlist', $binlist);
|
|
|
|
$content = $this->smarty->fetch('binaryblacklist-list.tpl');
|
|
$this->smarty->assign(compact('title', 'meta_title', 'content'));
|
|
$this->adminrender();
|
|
}
|
|
|
|
/**
|
|
* @param \Illuminate\Http\Request $request
|
|
* @return \Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector
|
|
*
|
|
* @throws \Exception
|
|
*/
|
|
public function edit(Request $request): \Illuminate\Routing\Redirector|\Illuminate\Http\RedirectResponse
|
|
{
|
|
$this->setAdminPrefs();
|
|
$binaries = new Binaries(['Settings' => null]);
|
|
$error = '';
|
|
$regex = ['id' => '', 'groupname' => '', 'regex' => '', 'description' => '', 'msgcol' => 1, 'status' => 1, 'optype' => 1];
|
|
$meta_title = $title = 'Binary Black/White list';
|
|
|
|
switch ($request->input('action') ?? 'view') {
|
|
case 'submit':
|
|
if ($request->input('groupname') === '') {
|
|
$error = 'Group must be a valid usenet group';
|
|
break;
|
|
}
|
|
|
|
if ($request->input('regex') === '') {
|
|
$error = 'Regex cannot be empty';
|
|
break;
|
|
}
|
|
|
|
if (empty($request->input('id'))) {
|
|
$binaries->addBlacklist($request->all());
|
|
} else {
|
|
$binaries->updateBlacklist($request->all());
|
|
}
|
|
|
|
return redirect('admin/binaryblacklist-list');
|
|
break;
|
|
|
|
case 'addtest':
|
|
if ($request->has('regex') && $request->has('groupname')) {
|
|
$regex += [
|
|
'groupname' => $request->input('groupname'),
|
|
'regex' => $request->input('regex'),
|
|
'ordinal' => 1,
|
|
'status' => 1,
|
|
];
|
|
}
|
|
break;
|
|
|
|
case 'view':
|
|
default:
|
|
if ($request->has('id')) {
|
|
$title = 'Binary Black/Whitelist Edit';
|
|
$regex = $binaries->getBlacklistByID($request->input('id'));
|
|
} else {
|
|
$title = 'Binary Black/Whitelist Add';
|
|
$regex += [
|
|
'status' => 1,
|
|
'optype' => 1,
|
|
'msgcol' => 1,
|
|
];
|
|
}
|
|
break;
|
|
}
|
|
|
|
$this->smarty->assign(
|
|
[
|
|
'error' => $error,
|
|
'regex' => $regex,
|
|
'status_ids' => [Category::STATUS_ACTIVE, Category::STATUS_INACTIVE],
|
|
'status_names' => ['Yes', 'No'],
|
|
'optype_ids' => [1, 2],
|
|
'optype_names' => ['Black', 'White'],
|
|
'msgcol_ids' => [
|
|
Binaries::BLACKLIST_FIELD_SUBJECT,
|
|
Binaries::BLACKLIST_FIELD_FROM,
|
|
Binaries::BLACKLIST_FIELD_MESSAGEID,
|
|
],
|
|
'msgcol_names' => ['Subject', 'Poster', 'MessageId'],
|
|
]
|
|
);
|
|
|
|
$content = $this->smarty->fetch('binaryblacklist-edit.tpl');
|
|
$this->smarty->assign(compact('title', 'meta_title', 'content'));
|
|
$this->adminrender();
|
|
}
|
|
}
|