mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-31 10:18:55 +00:00
23 lines
287 B
PHP
23 lines
287 B
PHP
<?php
|
|
|
|
use nntmux\SABnzbd;
|
|
|
|
if (!$page->users->isLoggedIn())
|
|
$page->show403();
|
|
|
|
if (empty($_GET["id"]))
|
|
$page->show404();
|
|
|
|
$sab = new SABnzbd($page);
|
|
|
|
if (empty($sab->url))
|
|
$page->show404();
|
|
|
|
if (empty($sab->apikey))
|
|
$page->show404();
|
|
|
|
$guid = $_GET["id"];
|
|
|
|
$sab->sendToSab($guid);
|
|
|