Files
newznab-tmux/app/Http/Controllers/FileListController.php
T
DariusIII 0530925e8e Apply fixes from StyleCI
[ci skip] [skip ci]
2018-04-08 20:49:17 +00:00

61 lines
1.5 KiB
PHP

<?php
namespace App\Http\Controllers;
use Blacklight\NZB;
use App\Models\Release;
class FileListController extends BasePageController
{
/**
* @param $guid
* @throws \Exception
*/
public function show($guid)
{
$this->setPrefs();
$nzb = new NZB();
if ($guid !== null) {
$rel = Release::getByGuid($guid);
if (! $rel) {
$this->show404();
}
$nzbpath = $nzb->NZBPath($guid);
if (! file_exists($nzbpath)) {
$this->show404();
}
ob_start();
@readgzfile($nzbpath);
$nzbfile = ob_get_contents();
ob_end_clean();
$ret = $nzb->nzbFileList($nzbfile);
$this->smarty->assign('rel', $rel);
$this->smarty->assign('files', $ret);
$title = 'File List';
$meta_title = 'View Nzb file list';
$meta_keywords = 'view,nzb,file,list,description,details';
$meta_description = 'View Nzb File List';
$content = $this->smarty->fetch('viewfilelist.tpl');
$this->smarty->assign(
[
'title' => $title,
'content' => $content,
'meta_title' => $meta_title,
'meta_keywords' => $meta_keywords,
'meta_description' => $meta_description,
]
);
$this->pagerender();
}
}
}