2015-10-31 14:42:25 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2016-09-07 22:28:28 +00:00
|
|
|
* Config class.
|
2016-08-01 11:29:13 +00:00
|
|
|
*/
|
2016-12-05 12:12:27 +00:00
|
|
|
|
2015-10-31 14:42:25 +00:00
|
|
|
namespace Alltube;
|
2016-03-29 23:49:08 +00:00
|
|
|
|
2018-02-05 15:48:58 +00:00
|
|
|
use Exception;
|
2015-10-31 14:42:25 +00:00
|
|
|
use Symfony\Component\Yaml\Yaml;
|
2016-03-29 23:49:08 +00:00
|
|
|
|
2015-10-31 14:42:25 +00:00
|
|
|
/**
|
2016-09-07 22:28:28 +00:00
|
|
|
* Manage config parameters.
|
2016-08-01 11:29:13 +00:00
|
|
|
*/
|
2016-03-29 23:49:08 +00:00
|
|
|
class Config
|
2015-10-31 14:42:25 +00:00
|
|
|
{
|
2016-08-01 11:29:13 +00:00
|
|
|
/**
|
2016-09-07 22:28:28 +00:00
|
|
|
* Singleton instance.
|
|
|
|
*
|
2019-03-30 17:21:45 +00:00
|
|
|
* @var Config|null
|
2016-08-01 11:29:13 +00:00
|
|
|
*/
|
2016-03-29 23:49:08 +00:00
|
|
|
private static $instance;
|
2015-10-31 14:42:25 +00:00
|
|
|
|
2016-08-01 11:29:13 +00:00
|
|
|
/**
|
2016-09-07 22:28:28 +00:00
|
|
|
* youtube-dl binary path.
|
|
|
|
*
|
2016-08-01 11:29:13 +00:00
|
|
|
* @var string
|
|
|
|
*/
|
2015-10-31 14:56:00 +00:00
|
|
|
public $youtubedl = 'vendor/rg3/youtube-dl/youtube_dl/__main__.py';
|
2016-08-01 11:29:13 +00:00
|
|
|
|
|
|
|
/**
|
2016-09-07 22:28:28 +00:00
|
|
|
* python binary path.
|
|
|
|
*
|
2016-08-01 11:29:13 +00:00
|
|
|
* @var string
|
|
|
|
*/
|
2015-10-31 14:42:25 +00:00
|
|
|
public $python = '/usr/bin/python';
|
2016-08-01 11:29:13 +00:00
|
|
|
|
|
|
|
/**
|
2016-09-07 22:28:28 +00:00
|
|
|
* youtube-dl parameters.
|
|
|
|
*
|
2016-08-01 11:29:13 +00:00
|
|
|
* @var array
|
|
|
|
*/
|
2018-05-23 19:43:34 +00:00
|
|
|
public $params = ['--no-warnings', '--ignore-errors', '--flat-playlist', '--restrict-filenames', '--no-playlist'];
|
2016-08-01 11:29:13 +00:00
|
|
|
|
|
|
|
/**
|
2016-09-07 22:28:28 +00:00
|
|
|
* Enable audio conversion.
|
|
|
|
*
|
2016-08-01 11:29:13 +00:00
|
|
|
* @var bool
|
|
|
|
*/
|
2015-10-31 14:42:25 +00:00
|
|
|
public $convert = false;
|
2016-08-01 11:29:13 +00:00
|
|
|
|
2018-01-24 22:30:24 +00:00
|
|
|
/**
|
|
|
|
* Enable advanced conversion mode.
|
|
|
|
*
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
public $convertAdvanced = false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* List of formats available in advanced conversion mode.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
public $convertAdvancedFormats = ['mp3', 'avi', 'flv', 'wav'];
|
|
|
|
|
2016-08-01 11:29:13 +00:00
|
|
|
/**
|
2016-09-07 22:28:28 +00:00
|
|
|
* avconv or ffmpeg binary path.
|
|
|
|
*
|
2016-08-01 11:29:13 +00:00
|
|
|
* @var string
|
|
|
|
*/
|
2015-11-21 19:54:38 +00:00
|
|
|
public $avconv = 'vendor/bin/ffmpeg';
|
2016-08-01 11:29:13 +00:00
|
|
|
|
2018-01-25 14:10:11 +00:00
|
|
|
/**
|
|
|
|
* Path to the directory that contains the phantomjs binary.
|
2018-01-25 14:13:13 +00:00
|
|
|
*
|
2018-01-25 14:10:11 +00:00
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
public $phantomjsDir = 'vendor/bin/';
|
|
|
|
|
2017-01-10 22:37:29 +00:00
|
|
|
/**
|
|
|
|
* Disable URL rewriting.
|
2017-01-10 22:39:58 +00:00
|
|
|
*
|
|
|
|
* @var bool
|
2017-01-10 22:37:29 +00:00
|
|
|
*/
|
|
|
|
public $uglyUrls = false;
|
|
|
|
|
2017-01-16 10:29:56 +00:00
|
|
|
/**
|
|
|
|
* Stream downloaded files trough server?
|
2017-01-16 11:11:37 +00:00
|
|
|
*
|
|
|
|
* @var bool
|
2017-01-16 10:29:56 +00:00
|
|
|
*/
|
|
|
|
public $stream = false;
|
|
|
|
|
2017-04-24 22:40:24 +00:00
|
|
|
/**
|
|
|
|
* Allow to remux video + audio?
|
|
|
|
*
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
public $remux = false;
|
|
|
|
|
2017-11-10 22:50:17 +00:00
|
|
|
/**
|
2017-11-10 22:52:04 +00:00
|
|
|
* MP3 bitrate when converting (in kbit/s).
|
2017-11-10 22:50:17 +00:00
|
|
|
*
|
|
|
|
* @var int
|
|
|
|
*/
|
|
|
|
public $audioBitrate = 128;
|
|
|
|
|
2017-12-09 22:16:48 +00:00
|
|
|
/**
|
|
|
|
* avconv/ffmpeg logging level.
|
2017-12-09 22:57:21 +00:00
|
|
|
* Must be one of these: quiet, panic, fatal, error, warning, info, verbose, debug.
|
2017-12-09 22:16:48 +00:00
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
public $avconvVerbosity = 'error';
|
|
|
|
|
2019-01-06 15:59:16 +00:00
|
|
|
/**
|
2019-01-06 16:00:12 +00:00
|
|
|
* App name.
|
2019-01-06 15:59:16 +00:00
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
public $appName = 'AllTube Download';
|
|
|
|
|
2016-09-05 22:36:47 +00:00
|
|
|
/**
|
2016-09-07 22:28:28 +00:00
|
|
|
* YAML config file path.
|
|
|
|
*
|
2016-09-05 22:36:47 +00:00
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
private $file;
|
2016-08-18 23:07:51 +00:00
|
|
|
|
2015-10-31 14:50:32 +00:00
|
|
|
/**
|
2016-09-07 22:28:28 +00:00
|
|
|
* Config constructor.
|
2016-09-05 22:36:47 +00:00
|
|
|
*
|
2018-01-06 16:46:49 +00:00
|
|
|
* @param array $options Options (see `config/config.example.yml` for available options)
|
2015-10-31 14:50:32 +00:00
|
|
|
*/
|
2016-10-18 07:54:08 +00:00
|
|
|
public function __construct(array $options)
|
2015-10-31 14:50:32 +00:00
|
|
|
{
|
2019-03-30 17:21:45 +00:00
|
|
|
foreach ($options as $option => $value) {
|
|
|
|
if (isset($this->$option) && isset($value)) {
|
|
|
|
$this->$option = $value;
|
2015-10-31 14:42:25 +00:00
|
|
|
}
|
|
|
|
}
|
2018-01-06 17:03:06 +00:00
|
|
|
$this->getEnv();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Override options from environement variables.
|
|
|
|
* Supported environment variables: CONVERT, PYTHON, AUDIO_BITRATE.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
private function getEnv()
|
|
|
|
{
|
2018-07-06 08:36:53 +00:00
|
|
|
foreach (['CONVERT', 'PYTHON', 'AUDIO_BITRATE', 'STREAM'] as $var) {
|
2018-01-06 17:03:06 +00:00
|
|
|
$env = getenv($var);
|
|
|
|
if ($env) {
|
|
|
|
$prop = lcfirst(str_replace('_', '', ucwords(strtolower($var), '_')));
|
|
|
|
$this->$prop = $env;
|
|
|
|
}
|
2016-12-22 12:46:31 +00:00
|
|
|
}
|
2015-10-31 14:42:25 +00:00
|
|
|
}
|
|
|
|
|
2015-10-31 14:50:32 +00:00
|
|
|
/**
|
2016-10-18 07:54:08 +00:00
|
|
|
* Get Config singleton instance from YAML config file.
|
2016-02-28 22:04:53 +00:00
|
|
|
*
|
2016-09-05 22:36:47 +00:00
|
|
|
* @param string $yamlfile YAML config file name
|
|
|
|
*
|
2015-10-31 14:50:32 +00:00
|
|
|
* @return Config
|
|
|
|
*/
|
2017-05-15 05:25:14 +00:00
|
|
|
public static function getInstance($yamlfile = 'config/config.yml')
|
2015-10-31 14:50:32 +00:00
|
|
|
{
|
2016-10-18 07:54:08 +00:00
|
|
|
$yamlPath = __DIR__.'/../'.$yamlfile;
|
2016-08-18 23:07:51 +00:00
|
|
|
if (is_null(self::$instance) || self::$instance->file != $yamlfile) {
|
2016-10-18 07:54:08 +00:00
|
|
|
if (is_file($yamlfile)) {
|
|
|
|
$options = Yaml::parse(file_get_contents($yamlPath));
|
2017-05-15 05:25:14 +00:00
|
|
|
} elseif ($yamlfile == 'config/config.yml' || empty($yamlfile)) {
|
2016-10-18 07:54:08 +00:00
|
|
|
/*
|
|
|
|
Allow for the default file to be missing in order to
|
|
|
|
not surprise users that did not create a config file
|
|
|
|
*/
|
|
|
|
$options = [];
|
|
|
|
} else {
|
2018-02-05 15:48:58 +00:00
|
|
|
throw new Exception("Can't find config file at ".$yamlPath);
|
2016-10-18 07:54:08 +00:00
|
|
|
}
|
|
|
|
self::$instance = new self($options);
|
|
|
|
self::$instance->file = $yamlfile;
|
2015-10-31 14:42:25 +00:00
|
|
|
}
|
2016-09-07 22:28:28 +00:00
|
|
|
|
2016-03-29 23:49:08 +00:00
|
|
|
return self::$instance;
|
2015-10-31 14:42:25 +00:00
|
|
|
}
|
2016-07-30 10:40:49 +00:00
|
|
|
|
2016-08-01 11:29:13 +00:00
|
|
|
/**
|
2016-09-07 22:28:28 +00:00
|
|
|
* Destroy singleton instance.
|
|
|
|
*
|
2016-08-01 11:29:13 +00:00
|
|
|
* @return void
|
|
|
|
*/
|
2016-07-30 10:40:49 +00:00
|
|
|
public static function destroyInstance()
|
|
|
|
{
|
|
|
|
self::$instance = null;
|
|
|
|
}
|
2015-10-31 14:42:25 +00:00
|
|
|
}
|