2015-10-31 14:42:25 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Config class
|
|
|
|
*
|
|
|
|
* PHP Version 5.3.10
|
|
|
|
*
|
|
|
|
* @category Youtube-dl
|
|
|
|
* @package Youtubedl
|
|
|
|
* @author Pierre Rudloff <contact@rudloff.pro>
|
|
|
|
* @license GNU General Public License http://www.gnu.org/licenses/gpl.html
|
|
|
|
* @link http://rudloff.pro
|
|
|
|
* */
|
|
|
|
namespace Alltube;
|
|
|
|
use Symfony\Component\Yaml\Yaml;
|
|
|
|
/**
|
|
|
|
* Class to manage config parameters
|
|
|
|
*
|
|
|
|
* PHP Version 5.3.10
|
|
|
|
*
|
|
|
|
* @category Youtube-dl
|
|
|
|
* @package Youtubedl
|
|
|
|
* @author Pierre Rudloff <contact@rudloff.pro>
|
|
|
|
* @license GNU General Public License http://www.gnu.org/licenses/gpl.html
|
|
|
|
* @link http://rudloff.pro
|
|
|
|
* */
|
|
|
|
Class Config
|
|
|
|
{
|
|
|
|
private static $_instance;
|
|
|
|
|
2015-10-31 14:56:00 +00:00
|
|
|
public $youtubedl = 'vendor/rg3/youtube-dl/youtube_dl/__main__.py';
|
2015-10-31 14:42:25 +00:00
|
|
|
public $python = '/usr/bin/python';
|
|
|
|
public $params = '--no-playlist --no-warnings -f best';
|
|
|
|
public $convert = false;
|
2015-11-21 19:54:38 +00:00
|
|
|
public $avconv = 'vendor/bin/ffmpeg';
|
2015-10-31 14:42:25 +00:00
|
|
|
|
2015-10-31 14:50:32 +00:00
|
|
|
/**
|
|
|
|
* Config constructor
|
|
|
|
*/
|
|
|
|
private function __construct()
|
|
|
|
{
|
2015-10-31 14:42:25 +00:00
|
|
|
$yaml = Yaml::parse(__DIR__.'/../config.yml');
|
2015-10-31 14:57:36 +00:00
|
|
|
if (isset($yaml) && is_array($yaml)) {
|
|
|
|
foreach ($yaml as $param=>$value) {
|
|
|
|
if (isset($this->$param)) {
|
|
|
|
$this->$param = $value;
|
|
|
|
}
|
2015-10-31 14:42:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (getenv('CONVERT')) {
|
|
|
|
$this->convert = getenv('CONVERT');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-31 14:50:32 +00:00
|
|
|
/**
|
|
|
|
* Get singleton instance
|
|
|
|
* @return Config
|
|
|
|
*/
|
|
|
|
public static function getInstance()
|
|
|
|
{
|
|
|
|
if (is_null(self::$_instance)) {
|
2015-10-31 14:42:25 +00:00
|
|
|
self::$_instance = new Config();
|
|
|
|
}
|
|
|
|
return self::$_instance;
|
|
|
|
}
|
|
|
|
}
|