From cab2a0f8f485929071a0a156a47497691c21b82f Mon Sep 17 00:00:00 2001 From: James Date: Mon, 29 Aug 2011 17:44:28 -0400 Subject: [PATCH] CC-2661: Upgrade script for steam config feature - done --- airtime_mvc/build/sql/defaultdata.sql | 3 + .../Version20110829143306.php | 27 ++ .../DoctrineMigrations/migrations.xml | 2 +- .../airtime-2.0.0/airtime-monit.cfg.200 | 24 ++ .../airtime-2.0.0/airtime-upgrade.php | 288 +++++++++++++++++- .../upgrades/airtime-2.0.0/airtime.conf.200 | 23 ++ .../upgrades/airtime-2.0.0/api_client.cfg.200 | 110 +++++++ .../upgrades/airtime-2.0.0/liquidsoap.cfg.200 | 64 ++++ .../airtime-2.0.0/media-monitor.cfg.200 | 21 ++ .../upgrades/airtime-2.0.0/pypo.cfg.200 | 72 +++++ .../upgrades/airtime-2.0.0/recorder.cfg.200 | 26 ++ .../pypo/liquidsoap_scripts/liquidsoap.cfg | 6 +- python_apps/pypo/pypofetch.py | 8 +- 13 files changed, 668 insertions(+), 6 deletions(-) create mode 100644 install_minimal/DoctrineMigrations/Version20110829143306.php create mode 100644 install_minimal/upgrades/airtime-2.0.0/airtime-monit.cfg.200 create mode 100644 install_minimal/upgrades/airtime-2.0.0/airtime.conf.200 create mode 100644 install_minimal/upgrades/airtime-2.0.0/api_client.cfg.200 create mode 100644 install_minimal/upgrades/airtime-2.0.0/liquidsoap.cfg.200 create mode 100644 install_minimal/upgrades/airtime-2.0.0/media-monitor.cfg.200 create mode 100644 install_minimal/upgrades/airtime-2.0.0/pypo.cfg.200 create mode 100644 install_minimal/upgrades/airtime-2.0.0/recorder.cfg.200 diff --git a/airtime_mvc/build/sql/defaultdata.sql b/airtime_mvc/build/sql/defaultdata.sql index 03f9a811a..eea302d89 100644 --- a/airtime_mvc/build/sql/defaultdata.sql +++ b/airtime_mvc/build/sql/defaultdata.sql @@ -1,5 +1,6 @@ INSERT INTO cc_subjs ("login", "type", "pass") VALUES ('admin', 'A', md5('admin')); +-- added in 2.0.0 INSERT INTO cc_pref("keystr", "valstr") VALUES('stream_type', 'ogg, mp3'); INSERT INTO cc_pref("keystr", "valstr") VALUES('stream_bitrate', '24, 32, 48, 64, 96, 128, 160, 192, 224, 256, 320'); INSERT INTO cc_pref("keystr", "valstr") VALUES('num_of_streams', '3'); @@ -42,6 +43,8 @@ INSERT INTO cc_stream_setting ("keyname", "value", "type") VALUES ('s3_mount', ' INSERT INTO cc_stream_setting ("keyname", "value", "type") VALUES ('s3_url', '', 'string'); INSERT INTO cc_stream_setting ("keyname", "value", "type") VALUES ('s3_description', '', 'string'); INSERT INTO cc_stream_setting ("keyname", "value", "type") VALUES ('s3_genre', '', 'string'); +-- end of added in 2.0.0 + INSERT INTO cc_country (isocode, name) VALUES ('AFG', 'Afghanistan '); INSERT INTO cc_country (isocode, name) VALUES ('ALA', 'Ă…land Islands'); diff --git a/install_minimal/DoctrineMigrations/Version20110829143306.php b/install_minimal/DoctrineMigrations/Version20110829143306.php new file mode 100644 index 000000000..477df6a39 --- /dev/null +++ b/install_minimal/DoctrineMigrations/Version20110829143306.php @@ -0,0 +1,27 @@ +createTable('cc_stream_setting'); + + $cc_stream_setting->addColumn('keyname', 'string', array('length' => 64)); + $cc_stream_setting->addColumn('value', 'string', array('length' => 255)); + $cc_stream_setting->addColumn('type', 'string', array('length' => 16)); + + $cc_stream_setting->setPrimaryKey(array('keyname')); + //end create cc_stream_setting table + } + + public function down(Schema $schema) + { + $schema->dropTable('cc_stream_setting'); + } +} \ No newline at end of file diff --git a/install_minimal/DoctrineMigrations/migrations.xml b/install_minimal/DoctrineMigrations/migrations.xml index c38c5ec4d..c78b0c499 100644 --- a/install_minimal/DoctrineMigrations/migrations.xml +++ b/install_minimal/DoctrineMigrations/migrations.xml @@ -4,7 +4,7 @@ xsi:schemaLocation="http://doctrine-project.org/schemas/migrations/configuration http://doctrine-project.org/schemas/migrations/configuration.xsd"> - Airtime 1.9.0 Database Upgrade + Airtime 2.0.0 Database Upgrade DoctrineMigrations diff --git a/install_minimal/upgrades/airtime-2.0.0/airtime-monit.cfg.200 b/install_minimal/upgrades/airtime-2.0.0/airtime-monit.cfg.200 new file mode 100644 index 000000000..ba4f0878d --- /dev/null +++ b/install_minimal/upgrades/airtime-2.0.0/airtime-monit.cfg.200 @@ -0,0 +1,24 @@ + set daemon 10 # Poll at 10 second intervals + #set logfile syslog facility log_daemon + set logfile /var/log/monit.log + + set httpd port 2812 and use address 127.0.0.1 + allow localhost + allow admin:monit + + check process airtime-playout + with pidfile "/var/run/airtime-playout.pid" + start program = "/etc/init.d/airtime-playout monit-restart" with timeout 5 seconds + stop program = "/etc/init.d/airtime-playout stop" + check process airtime-liquidsoap + with pidfile "/var/run/airtime-liquidsoap.pid" + start program = "/etc/init.d/airtime-playout monit-restart" with timeout 5 seconds + stop program = "/etc/init.d/airtime-playout stop" + check process airtime-media-monitor + with pidfile "/var/run/airtime-media-monitor.pid" + start program = "/etc/init.d/airtime-media-monitor start" with timeout 10 seconds + stop program = "/etc/init.d/airtime-media-monitor stop" + check process airtime-show-recorder + with pidfile "/var/run/airtime-show-recorder.pid" + start program = "/etc/init.d/airtime-show-recorder start" with timeout 10 seconds + stop program = "/etc/init.d/airtime-show-recorder stop" diff --git a/install_minimal/upgrades/airtime-2.0.0/airtime-upgrade.php b/install_minimal/upgrades/airtime-2.0.0/airtime-upgrade.php index 3ce3247d8..cb3dbb510 100644 --- a/install_minimal/upgrades/airtime-2.0.0/airtime-upgrade.php +++ b/install_minimal/upgrades/airtime-2.0.0/airtime-upgrade.php @@ -31,6 +31,95 @@ class AirtimeInstall{ } return true; } + + public static function SetDefaultStreamSetting() + { + global $CC_DBC; + + $sql = "INSERT INTO cc_pref(keystr, valstr) VALUES('stream_type', 'ogg, mp3'); + INSERT INTO cc_pref(keystr, valstr) VALUES('stream_bitrate', '24, 32, 48, 64, 96, 128, 160, 192, 224, 256, 320'); + INSERT INTO cc_pref(keystr, valstr) VALUES('num_of_streams', '3'); + INSERT INTO cc_pref(keystr, valstr) VALUES('max_bitrate', '128'); + + INSERT INTO cc_stream_setting (keyname, value, type) VALUES ('output_sound_device', 'false', 'boolean'); + + INSERT INTO cc_stream_setting (keyname, value, type) VALUES ('s1_output', 'icecast', 'string'); + INSERT INTO cc_stream_setting (keyname, value, type) VALUES ('s1_type', 'ogg', 'string'); + INSERT INTO cc_stream_setting (keyname, value, type) VALUES ('s1_bitrate', '128', 'integer'); + INSERT INTO cc_stream_setting (keyname, value, type) VALUES ('s1_host', '127.0.0.1', 'string'); + INSERT INTO cc_stream_setting (keyname, value, type) VALUES ('s1_port', '8000', 'integer'); + INSERT INTO cc_stream_setting (keyname, value, type) VALUES ('s1_user', '', 'string'); + INSERT INTO cc_stream_setting (keyname, value, type) VALUES ('s1_pass', 'hackme', 'string'); + INSERT INTO cc_stream_setting (keyname, value, type) VALUES ('s1_mount', 'airtime_128', 'string'); + INSERT INTO cc_stream_setting (keyname, value, type) VALUES ('s1_url', 'http://airtime.sourcefabric.org', 'string'); + INSERT INTO cc_stream_setting (keyname, value, type) VALUES ('s1_description', 'Airtime Radio! Stream #1', 'string'); + INSERT INTO cc_stream_setting (keyname, value, type) VALUES ('s1_genre', 'genre', 'string'); + + INSERT INTO cc_stream_setting (keyname, value, type) VALUES ('s2_output', 'disabled', 'string'); + INSERT INTO cc_stream_setting (keyname, value, type) VALUES ('s2_type', '', 'string'); + INSERT INTO cc_stream_setting (keyname, value, type) VALUES ('s2_bitrate', '', 'integer'); + INSERT INTO cc_stream_setting (keyname, value, type) VALUES ('s2_host', '', 'string'); + INSERT INTO cc_stream_setting (keyname, value, type) VALUES ('s2_port', '', 'integer'); + INSERT INTO cc_stream_setting (keyname, value, type) VALUES ('s2_user', '', 'string'); + INSERT INTO cc_stream_setting (keyname, value, type) VALUES ('s2_pass', '', 'string'); + INSERT INTO cc_stream_setting (keyname, value, type) VALUES ('s2_mount', '', 'string'); + INSERT INTO cc_stream_setting (keyname, value, type) VALUES ('s2_url', '', 'string'); + INSERT INTO cc_stream_setting (keyname, value, type) VALUES ('s2_description', '', 'string'); + INSERT INTO cc_stream_setting (keyname, value, type) VALUES ('s2_genre', '', 'string'); + + INSERT INTO cc_stream_setting (keyname, value, type) VALUES ('s3_output', 'disabled', 'string'); + INSERT INTO cc_stream_setting (keyname, value, type) VALUES ('s3_type', '', 'string'); + INSERT INTO cc_stream_setting (keyname, value, type) VALUES ('s3_bitrate', '', 'integer'); + INSERT INTO cc_stream_setting (keyname, value, type) VALUES ('s3_host', '', 'string'); + INSERT INTO cc_stream_setting (keyname, value, type) VALUES ('s3_port', '', 'integer'); + INSERT INTO cc_stream_setting (keyname, value, type) VALUES ('s3_user', '', 'string'); + INSERT INTO cc_stream_setting (keyname, value, type) VALUES ('s3_pass', '', 'string'); + INSERT INTO cc_stream_setting (keyname, value, type) VALUES ('s3_mount', '', 'string'); + INSERT INTO cc_stream_setting (keyname, value, type) VALUES ('s3_url', '', 'string'); + INSERT INTO cc_stream_setting (keyname, value, type) VALUES ('s3_description', '', 'string'); + INSERT INTO cc_stream_setting (keyname, value, type) VALUES ('s3_genre', '', 'string');"; + $result = $CC_DBC->query($sql); + if (PEAR::isError($result)) { + return false; + } + return true; + } + + public static function BypassMigrations($dir, $version) + { + $appDir = AirtimeInstall::GetAirtimeSrcDir(); + $command = "php $appDir/library/doctrine/migrations/doctrine-migrations.phar ". + "--configuration=$dir/../../DoctrineMigrations/migrations.xml ". + "--db-configuration=$appDir/library/doctrine/migrations/migrations-db.php ". + "--no-interaction --add migrations:version $version"; + system($command); + } + + public static function MigrateTablesToVersion($dir, $version) + { + $appDir = AirtimeInstall::GetAirtimeSrcDir(); + $command = "php $appDir/library/doctrine/migrations/doctrine-migrations.phar ". + "--configuration=$dir/../../DoctrineMigrations/migrations.xml ". + "--db-configuration=$appDir/library/doctrine/migrations/migrations-db.php ". + "--no-interaction migrations:migrate $version"; + system($command); + } + + public static function GetAirtimeSrcDir() + { + return __DIR__."/../../../airtime_mvc"; + } + + public static function DbTableExists($p_name) + { + global $CC_DBC; + $sql = "SELECT * FROM ".$p_name; + $result = $CC_DBC->GetOne($sql); + if (PEAR::isError($result)) { + return false; + } + return true; + } } class Airtime200Upgrade{ @@ -49,6 +138,16 @@ class Airtime200Upgrade{ $CC_DBC = DB::connect($CC_CONFIG['dsn'], FALSE); } + + public static function InstallAirtimePhpServerCode($phpDir) + { + + $AIRTIME_SRC = realpath(__DIR__.'/../../../airtime_mvc'); + + echo "* Installing PHP code to ".$phpDir.PHP_EOL; + exec("mkdir -p ".$phpDir); + exec("cp -R ".$AIRTIME_SRC."/* ".$phpDir); + } } class ConvertToUtc{ @@ -119,10 +218,173 @@ class ConvertToUtc{ } } +class AirtimeIni200{ + + const CONF_FILE_AIRTIME = "/etc/airtime/airtime.conf"; + const CONF_FILE_PYPO = "/etc/airtime/pypo.cfg"; + const CONF_FILE_RECORDER = "/etc/airtime/recorder.cfg"; + const CONF_FILE_LIQUIDSOAP = "/etc/airtime/liquidsoap.cfg"; + const CONF_FILE_MEDIAMONITOR = "/etc/airtime/media-monitor.cfg"; + const CONF_FILE_API_CLIENT = "/etc/airtime/api_client.cfg"; + const CONF_FILE_MONIT = "/etc/monit/conf.d/airtime-monit.cfg"; + + /** + * This function updates an INI style config file. + * + * A property and the value the property should be changed to are + * supplied. If the property is not found, then no changes are made. + * + * @param string $p_filename + * The path the to the file. + * @param string $p_property + * The property to look for in order to change its value. + * @param string $p_value + * The value the property should be changed to. + * + */ + public static function UpdateIniValue($p_filename, $p_property, $p_value) + { + $lines = file($p_filename); + $n=count($lines); + foreach ($lines as &$line) { + if ($line[0] != "#"){ + $key_value = explode("=", $line); + $key = trim($key_value[0]); + + if ($key == $p_property){ + $line = "$p_property = $p_value".PHP_EOL; + } + } + } + + $fp=fopen($p_filename, 'w'); + for($i=0; $i<$n; $i++){ + fwrite($fp, $lines[$i]); + } + fclose($fp); + } + + public static function ReadPythonConfig($p_filename) + { + $values = array(); + + $lines = file($p_filename); + $n=count($lines); + for ($i=0; $i<$n; $i++) { + if (strlen($lines[$i]) && !in_array(substr($lines[$i], 0, 1), array('#', PHP_EOL))){ + $info = explode("=", $lines[$i]); + $values[trim($info[0])] = trim($info[1]); + } + } + + return $values; + } + + public static function MergeConfigFiles($configFiles, $suffix) { + foreach ($configFiles as $conf) { + // we want to use new liquidsoap.cfg so don't merge + // also for monit + if( $conf == AirtimeIni200::CONF_FILE_LIQUIDSOAP || $conf == AirtimeIni200::CONF_FILE_MONIT){ + continue; + } + if (file_exists("$conf$suffix.bak")) { + + if($conf === AirtimeIni200::CONF_FILE_AIRTIME) { + // Parse with sections + $newSettings = parse_ini_file($conf, true); + $oldSettings = parse_ini_file("$conf$suffix.bak", true); + } + else { + $newSettings = AirtimeIni200::ReadPythonConfig($conf); + $oldSettings = AirtimeIni200::ReadPythonConfig("$conf$suffix.bak"); + } + + $settings = array_keys($newSettings); + + foreach($settings as $section) { + if(isset($oldSettings[$section])) { + if(is_array($oldSettings[$section])) { + $sectionKeys = array_keys($newSettings[$section]); + foreach($sectionKeys as $sectionKey) { + // skip airtim_dir as we want to use new value + if($sectionKey != "airtime_dir"){ + if(isset($oldSettings[$section][$sectionKey])) { + AirtimeIni200::UpdateIniValue($conf, $sectionKey, $oldSettings[$section][$sectionKey]); + } + } + } + } + else { + AirtimeIni200::UpdateIniValue($conf, $section, $oldSettings[$section]); + } + } + } + } + } + } + + public static function upgradeConfigFiles(){ + + $configFiles = array(AirtimeIni200::CONF_FILE_AIRTIME, + AirtimeIni200::CONF_FILE_PYPO, + AirtimeIni200::CONF_FILE_RECORDER, + AirtimeIni200::CONF_FILE_LIQUIDSOAP, + AirtimeIni200::CONF_FILE_MONIT); + + // Backup the config files + $suffix = date("Ymdhis")."-1.9.3"; + foreach ($configFiles as $conf) { + // do not back up monit cfg + if (file_exists($conf) && $conf != AirtimeIni200::CONF_FILE_MONIT) { + echo "Backing up $conf to $conf$suffix.bak".PHP_EOL; + copy($conf, $conf.$suffix.".bak"); + } + } + + $default_suffix = "200"; + AirtimeIni200::CreateIniFiles($default_suffix); + AirtimeIni200::MergeConfigFiles($configFiles, $suffix); + } + + /** + * This function creates the /etc/airtime configuration folder + * and copies the default config files to it. + */ + public static function CreateIniFiles($suffix) + { + if (!file_exists("/etc/airtime/")){ + if (!mkdir("/etc/airtime/", 0755, true)){ + echo "Could not create /etc/airtime/ directory. Exiting."; + exit(1); + } + } + + if (!copy(__DIR__."/airtime.conf.$suffix", AirtimeIni200::CONF_FILE_AIRTIME)){ + echo "Could not copy airtime.conf to /etc/airtime/. Exiting."; + exit(1); + } + if (!copy(__DIR__."/pypo.cfg.$suffix", AirtimeIni200::CONF_FILE_PYPO)){ + echo "Could not copy pypo.cfg to /etc/airtime/. Exiting."; + exit(1); + } + if (!copy(__DIR__."/recorder.cfg.$suffix", AirtimeIni200::CONF_FILE_RECORDER)){ + echo "Could not copy recorder.cfg to /etc/airtime/. Exiting."; + exit(1); + } + if (!copy(__DIR__."/liquidsoap.cfg.$suffix", AirtimeIni200::CONF_FILE_LIQUIDSOAP)){ + echo "Could not copy liquidsoap.cfg to /etc/airtime/. Exiting."; + exit(1); + } + if (!copy(__DIR__."/airtime-monit.cfg.$suffix", AirtimeIni200::CONF_FILE_MONIT)){ + echo "Could not copy airtime-monit.cfg to /etc/monit/conf.d/. Exiting."; + exit(1); + } + } +} + Airtime200Upgrade::connectToDatabase(); AirtimeInstall::SetDefaultTimezone(); - /* Airtime 2.0.0 starts interpreting all database times in UTC format. Prior to this, all the times * were stored using the local time zone. Let's convert to UTC time. */ ConvertToUtc::convert_cc_playlist(); @@ -130,4 +392,28 @@ ConvertToUtc::convert_cc_schedule(); ConvertToUtc::convert_cc_show_days(); ConvertToUtc::convert_cc_show_instances(); +// merging/updating config files +echo "* Updating configFiles\n"; +AirtimeIni200::upgradeConfigFiles(); + +$values = parse_ini_file(AirtimeIni200::CONF_FILE_AIRTIME, true); +$phpDir = $values['general']['airtime_dir']; +Airtime200Upgrade::InstallAirtimePhpServerCode($phpDir); + +if(AirtimeInstall::DbTableExists('doctrine_migration_versions') === false) { + $migrations = array('20110312121200', '20110331111708', '20110402164819', '20110406182005', '20110629143017', '20110711161043', '20110713161043'); + foreach($migrations as $migration) { + AirtimeInstall::BypassMigrations(__DIR__, $migration); + } +} + +AirtimeInstall::MigrateTablesToVersion(__DIR__, '20110829143306'); + +AirtimeInstall::SetDefaultStreamSetting(); + +// restart monit +exec("service monit restart"); + + + diff --git a/install_minimal/upgrades/airtime-2.0.0/airtime.conf.200 b/install_minimal/upgrades/airtime-2.0.0/airtime.conf.200 new file mode 100644 index 000000000..b9729ac97 --- /dev/null +++ b/install_minimal/upgrades/airtime-2.0.0/airtime.conf.200 @@ -0,0 +1,23 @@ +[database] +host = localhost +dbname = airtime +dbuser = airtime +dbpass = airtime + +[rabbitmq] +host = 127.0.0.1 +port = 5672 +user = guest +password = guest +vhost = / + +[general] +api_key = AAA +web_server_user = www-data +airtime_dir = /usr/share/airtime/ +base_url = localhost +base_port = 80 + +[soundcloud] +connection_retries = 3 +time_between_retries = 60 diff --git a/install_minimal/upgrades/airtime-2.0.0/api_client.cfg.200 b/install_minimal/upgrades/airtime-2.0.0/api_client.cfg.200 new file mode 100644 index 000000000..7c94e34c2 --- /dev/null +++ b/install_minimal/upgrades/airtime-2.0.0/api_client.cfg.200 @@ -0,0 +1,110 @@ +bin_dir = "/usr/lib/airtime/api_clients" + +############################# +## Common +############################# + +# Value needed to access the API +api_key = 'AAA' + +# Path to the base of the API +api_base = 'api' + +# URL to get the version number of the server API +version_url = 'version/api_key/%%api_key%%' + +# Hostname +base_url = 'localhost' +base_port = 80 + +############################# +## Config for Media Monitor +############################# + +# URL to setup the media monitor +media_setup_url = 'media-monitor-setup/format/json/api_key/%%api_key%%' + +# Tell Airtime the file id associated with a show instance. +upload_recorded = 'upload-recorded/format/json/api_key/%%api_key%%/fileid/%%fileid%%/showinstanceid/%%showinstanceid%%' + +# URL to tell Airtime to update file's meta data +update_media_url = 'reload-metadata/format/json/api_key/%%api_key%%/mode/%%mode%%' + +# URL to tell Airtime we want a listing of all files it knows about +list_all_db_files = 'list-all-files/format/json/api_key/%%api_key%%/dir_id/%%dir_id%%' + +# URL to tell Airtime we want a listing of all dirs its watching (including the stor dir) +list_all_watched_dirs = 'list-all-watched-dirs/format/json/api_key/%%api_key%%' + +# URL to tell Airtime we want to add watched directory +add_watched_dir = 'add-watched-dir/format/json/api_key/%%api_key%%/path/%%path%%' + +# URL to tell Airtime we want to add watched directory +remove_watched_dir = 'remove-watched-dir/format/json/api_key/%%api_key%%/path/%%path%%' + +# URL to tell Airtime we want to add watched directory +set_storage_dir = 'set-storage-dir/format/json/api_key/%%api_key%%/path/%%path%%' + + +############################# +## Config for Recorder +############################# + +# URL to get the schedule of shows set to record +show_schedule_url = 'recorded-shows/format/json/api_key/%%api_key%%' + +# URL to upload the recorded show's file to Airtime +upload_file_url = 'upload-file/format/json/api_key/%%api_key%%' + +#number of retries to upload file if connection problem +upload_retries = 3 + +#time to wait between attempts to upload file if connection problem (in seconds) +upload_wait = 60 + +################################################################################ +# Uncomment *one of the sets* of values from the API clients below, and comment +# out all the others. +################################################################################ + +############################# +## Config for Pypo +############################# + +# Schedule export path. +# %%from%% - starting date/time in the form YYYY-MM-DD-hh-mm +# %%to%% - starting date/time in the form YYYY-MM-DD-hh-mm +export_url = 'schedule/api_key/%%api_key%%' + +get_media_url = 'get-media/file/%%file%%/api_key/%%api_key%%' + +# Update whether a schedule group has begun playing. +update_item_url = 'notify-schedule-group-play/api_key/%%api_key%%/schedule_id/%%schedule_id%%' + +# Update whether an audio clip is currently playing. +update_start_playing_url = 'notify-media-item-start-play/api_key/%%api_key%%/media_id/%%media_id%%/schedule_id/%%schedule_id%%' + +# ??? +generate_range_url = 'generate_range_dp.php' + + +############## +# OBP config # +############## + +# URL to get the version number of the server API +#version_url = 'api/pypo/status/json' + +# Schedule export path. +# %%from%% - starting date/time in the form YYYY-MM-DD-hh-mm +# %%to%% - starting date/time in the form YYYY-MM-DD-hh-mm + +# Update whether an item has been played. +#update_item_url = 'api/pypo/update_shedueled_item/$$item_id%%?played=%%played%%' + +# Update whether an item is currently playing. +#update_start_playing_url = 'api/pypo/mod/medialibrary/?playlist_type=%%playlist_type%%&export_source=%%export_source%%&media_id=%%media_id%%&playlist_id=%%playlist_id%%&transmission_id=%%transmission_id%%' + +# ??? +#generate_range_url = 'api/pypo/generate_range_dp/' + diff --git a/install_minimal/upgrades/airtime-2.0.0/liquidsoap.cfg.200 b/install_minimal/upgrades/airtime-2.0.0/liquidsoap.cfg.200 new file mode 100644 index 000000000..35edc3659 --- /dev/null +++ b/install_minimal/upgrades/airtime-2.0.0/liquidsoap.cfg.200 @@ -0,0 +1,64 @@ +########################################### +# Liquidsoap config file # +########################################### + +########################################### +# Output settings # +########################################### +output_sound_device = false +s1_output = "icecast" +s2_output = "disabled" +s3_output = "disabled" + +s1_type = "ogg" +s2_type = "ogg" +s3_type = "mp3" + +s1_bitrate = 128 +s2_bitrate = 128 +s3_bitrate = 160 + +########################################### +# Logging settings # +########################################### +log_file = "/var/log/airtime/pypo-liquidsoap/