alltube/classes/Config.php

122 lines
2.4 KiB
PHP
Raw Normal View History

2015-10-31 15:42:25 +01:00
<?php
/**
* Config class
2016-08-01 13:29:13 +02:00
*/
2015-10-31 15:42:25 +01:00
namespace Alltube;
2016-03-30 01:49:08 +02:00
2015-10-31 15:42:25 +01:00
use Symfony\Component\Yaml\Yaml;
2016-03-30 01:49:08 +02:00
2015-10-31 15:42:25 +01:00
/**
2016-08-01 13:29:13 +02:00
* Manage config parameters
*/
2016-03-30 01:49:08 +02:00
class Config
2015-10-31 15:42:25 +01:00
{
2016-08-01 13:29:13 +02:00
/**
* Singleton instance
* @var Config
*/
2016-03-30 01:49:08 +02:00
private static $instance;
2015-10-31 15:42:25 +01:00
2016-08-01 13:29:13 +02:00
/**
* youtube-dl binary path
* @var string
*/
2015-10-31 15:56:00 +01:00
public $youtubedl = 'vendor/rg3/youtube-dl/youtube_dl/__main__.py';
2016-08-01 13:29:13 +02:00
/**
* python binary path
* @var string
*/
2015-10-31 15:42:25 +01:00
public $python = '/usr/bin/python';
2016-08-01 13:29:13 +02:00
/**
* youtube-dl parameters
* @var array
*/
public $params = array('--no-playlist', '--no-warnings', '-f best[protocol^=http]', '--playlist-end', 1);
2016-08-01 13:29:13 +02:00
/**
* Enable audio conversion
* @var bool
*/
2015-10-31 15:42:25 +01:00
public $convert = false;
2016-08-01 13:29:13 +02:00
/**
* avconv or ffmpeg binary path
* @var string
*/
2015-11-21 20:54:38 +01:00
public $avconv = 'vendor/bin/ffmpeg';
2016-08-01 13:29:13 +02:00
/**
* rtmpdump binary path
* @var string
*/
2016-04-12 21:13:43 +02:00
public $rtmpdump = 'vendor/bin/rtmpdump';
2016-08-01 13:29:13 +02:00
/**
* curl binary path
* @var string
*/
2016-07-30 14:01:00 +02:00
public $curl = '/usr/bin/curl';
2016-08-01 13:29:13 +02:00
/**
* curl parameters
* @var array
*/
public $curl_params = array();
2015-10-31 15:42:25 +01:00
2016-09-06 00:36:47 +02:00
/**
* YAML config file path
* @var string
*/
private $file;
2016-08-19 01:07:51 +02:00
2015-10-31 15:50:32 +01:00
/**
* Config constructor
2016-09-06 00:36:47 +02:00
*
* @param string $yamlfile YAML config file path
2015-10-31 15:50:32 +01:00
*/
2016-08-19 01:07:51 +02:00
private function __construct($yamlfile)
2015-10-31 15:50:32 +01:00
{
2016-08-19 01:07:51 +02:00
$this->file = $yamlfile;
2015-12-19 00:58:14 +01:00
if (is_file($yamlfile)) {
$yaml = Yaml::parse(file_get_contents($yamlfile));
if (isset($yaml) && is_array($yaml)) {
2016-03-30 01:49:08 +02:00
foreach ($yaml as $param => $value) {
if (isset($this->$param) && isset($value)) {
2015-12-19 00:58:14 +01:00
$this->$param = $value;
}
2015-10-31 15:57:36 +01:00
}
2015-10-31 15:42:25 +01:00
}
}
if (getenv('CONVERT')) {
$this->convert = getenv('CONVERT');
}
}
2015-10-31 15:50:32 +01:00
/**
* Get singleton instance
2016-02-28 23:04:53 +01:00
*
2016-09-06 00:36:47 +02:00
* @param string $yamlfile YAML config file name
*
2015-10-31 15:50:32 +01:00
* @return Config
*/
public static function getInstance($yamlfile = 'config.yml')
2015-10-31 15:50:32 +01:00
{
$yamlfile = __DIR__.'/../'.$yamlfile;
2016-08-19 01:07:51 +02:00
if (is_null(self::$instance) || self::$instance->file != $yamlfile) {
self::$instance = new Config($yamlfile);
2015-10-31 15:42:25 +01:00
}
2016-03-30 01:49:08 +02:00
return self::$instance;
2015-10-31 15:42:25 +01:00
}
2016-08-01 13:29:13 +02:00
/**
* Destroy singleton instance
* @return void
*/
public static function destroyInstance()
{
self::$instance = null;
}
2015-10-31 15:42:25 +01:00
}