Youtube-dl-WebUI/class/Downloader.php
2015-03-12 23:28:17 +01:00

144 lines
No EOL
2.8 KiB
PHP

<?php
class Downloader
{
private $urls = [];
private $config = [];
private $audio_only = false;
private $errors = [];
private $download_path = "";
public function __construct($post, $audio_only)
{
$this->config = require dirname(__DIR__).'/config/config.php';
$this->download_path = dirname(__DIR__).'/'.$this->config["outputFolder"];
$this->audio_only = $audio_only;
$this->urls = explode(",", $post);
if(!$this->check_requirements($audio_only))
{
return;
}
if($this->config["max_dl"] == 0)
{
$this->do_download();
}
elseif($this->config["max_dl"] > 0)
{
if($this->background_jobs() >= 0 && $this->background_jobs() < $this->config["max_dl"])
{
$this->do_download();
}
else
{
$this->errors[] = "Simultaneous downloads limit reached !";
}
}
if(isset($this->errors) && count($this->errors) > 0)
{
$_SESSION['errors'] = $this->errors;
return;
}
}
public static function background_jobs()
{
return shell_exec("ps aux | grep -v grep | grep youtube-dl | wc -l");
}
public static function max_jobs()
{
$config = require dirname(__DIR__).'/config/config.php';
return $config["max_dl"];
}
private function check_requirements($audio_only)
{
if($this->is_installed() != 0)
{
$this->errors[] = "Youtube-dl is not installed, see <a>https://rg3.github.io/youtube-dl/download.html</a> !";
}
$this->check_outuput_folder();
if($audio_only)
{
if($this->is_extracter_installed() != 0)
{
$this->errors[] = "Install an audio extracter (ex: avconv) !";
}
}
if(isset($this->errors) && count($this->errors) > 0)
{
$_SESSION['errors'] = $this->errors;
return false;
}
return true;
}
private function is_installed()
{
exec("which youtube-dl", $out, $r);
return $r;
}
private function is_extracter_installed()
{
exec("which ".$this->config["extracter"], $out, $r);
return $r;
}
private function is_valid_url($url)
{
return filter_var($url, FILTER_VALIDATE_URL);
}
private function check_outuput_folder()
{
if(!is_dir($this->download_path))
{
//Folder doesn't exist
if(!mkdir($this->download_path, 0775))
{
$this->errors[] = "Output folder doesn't exist and creation failed !";
}
}
else
{
//Exists but can I write ?
if(!is_writable($this->download_path))
{
$this->errors[] = "Output folder isn't writable !";
}
}
}
private function do_download()
{
$cmd = "youtube-dl";
$cmd .= " -o ".$this->config["outputFolder"]."/";
$cmd .= escapeshellarg("%(title)s-%(uploader)s.%(ext)s");
if($this->audio_only)
{
$cmd .= " -x ";
}
foreach($this->urls as $url)
{
$cmd .= " ".$url;
}
$cmd .= " --restrict-filenames"; // --restrict-filenames is for specials chars
$cmd .= " > /dev/null & echo $!";
shell_exec($cmd);
}
}
?>