alltube/classes/Config.php

168 lines
3.5 KiB
PHP
Raw Normal View History

2015-10-31 15:42:25 +01:00
<?php
/**
2016-09-08 00:28:28 +02:00
* Config class.
2016-08-01 13:29:13 +02:00
*/
2016-12-05 13:12:27 +01: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-09-08 00:28:28 +02:00
* Manage config parameters.
2016-08-01 13:29:13 +02:00
*/
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
/**
2016-09-08 00:28:28 +02:00
* Singleton instance.
*
2016-08-01 13:29:13 +02:00
* @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
/**
2016-09-08 00:28:28 +02:00
* youtube-dl binary path.
*
2016-08-01 13:29:13 +02:00
* @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
/**
2016-09-08 00:28:28 +02:00
* python binary path.
*
2016-08-01 13:29:13 +02:00
* @var string
*/
2015-10-31 15:42:25 +01:00
public $python = '/usr/bin/python';
2016-08-01 13:29:13 +02:00
/**
2016-09-08 00:28:28 +02:00
* youtube-dl parameters.
*
2016-08-01 13:29:13 +02:00
* @var array
*/
public $params = ['--no-warnings', '--ignore-errors', '--flat-playlist', '--restrict-filenames'];
2016-08-01 13:29:13 +02:00
/**
2016-09-08 00:28:28 +02:00
* Enable audio conversion.
*
2016-08-01 13:29:13 +02:00
* @var bool
*/
2015-10-31 15:42:25 +01:00
public $convert = false;
2016-08-01 13:29:13 +02:00
/**
2016-09-08 00:28:28 +02:00
* avconv or ffmpeg binary path.
*
2016-08-01 13:29:13 +02:00
* @var string
*/
2015-11-21 20:54:38 +01:00
public $avconv = 'vendor/bin/ffmpeg';
2016-08-01 13:29:13 +02:00
/**
2016-09-08 00:28:28 +02:00
* rtmpdump binary path.
*
2016-08-01 13:29:13 +02:00
* @var string
*/
2016-04-12 21:13:43 +02:00
public $rtmpdump = 'vendor/bin/rtmpdump';
2016-08-01 13:29:13 +02:00
/**
* Disable URL rewriting.
2017-01-10 23:39:58 +01:00
*
* @var bool
*/
public $uglyUrls = false;
/**
* Stream downloaded files trough server?
2017-01-16 12:11:37 +01:00
*
* @var bool
*/
public $stream = false;
2017-04-25 00:40:24 +02:00
/**
* Allow to remux video + audio?
*
* @var bool
*/
public $remux = false;
/**
* MP3 bitrate when converting (in kbit/s)
*
* @var int
*/
public $audioBitrate = 128;
2016-09-06 00:36:47 +02:00
/**
2016-09-08 00:28:28 +02:00
* YAML config file path.
*
2016-09-06 00:36:47 +02:00
* @var string
*/
private $file;
2016-08-19 01:07:51 +02:00
2015-10-31 15:50:32 +01:00
/**
2016-09-08 00:28:28 +02:00
* Config constructor.
2016-09-06 00:36:47 +02:00
*
* Available options:
* * youtubedl: youtube-dl binary path
* * python: Python binary path
* * avconv: avconv or ffmpeg binary path
* * rtmpdump: rtmpdump binary path
* * params: Array of youtube-dl parameters
* * convert: Enable conversion?
*
* @param array $options Options
2015-10-31 15:50:32 +01:00
*/
public function __construct(array $options)
2015-10-31 15:50:32 +01:00
{
if (isset($options) && is_array($options)) {
foreach ($options as $option => $value) {
if (isset($this->$option) && isset($value)) {
$this->$option = $value;
2015-10-31 15:57:36 +01:00
}
2015-10-31 15:42:25 +01:00
}
}
if (getenv('CONVERT')) {
$this->convert = (bool) getenv('CONVERT');
2015-10-31 15:42:25 +01:00
}
if (getenv('PYTHON')) {
$this->python = getenv('PYTHON');
}
2015-10-31 15:42:25 +01:00
}
2015-10-31 15:50:32 +01:00
/**
* Get Config singleton instance from YAML config file.
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
*/
2017-05-15 07:25:14 +02:00
public static function getInstance($yamlfile = 'config/config.yml')
2015-10-31 15:50:32 +01:00
{
$yamlPath = __DIR__.'/../'.$yamlfile;
2016-08-19 01:07:51 +02:00
if (is_null(self::$instance) || self::$instance->file != $yamlfile) {
if (is_file($yamlfile)) {
$options = Yaml::parse(file_get_contents($yamlPath));
2017-05-15 07:25:14 +02:00
} elseif ($yamlfile == 'config/config.yml' || empty($yamlfile)) {
/*
Allow for the default file to be missing in order to
not surprise users that did not create a config file
*/
$options = [];
} else {
throw new \Exception("Can't find config file at ".$yamlPath);
}
self::$instance = new self($options);
self::$instance->file = $yamlfile;
2015-10-31 15:42:25 +01:00
}
2016-09-08 00:28:28 +02: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
/**
2016-09-08 00:28:28 +02:00
* Destroy singleton instance.
*
2016-08-01 13:29:13 +02:00
* @return void
*/
public static function destroyInstance()
{
self::$instance = null;
}
2015-10-31 15:42:25 +01:00
}