Merge branch '2.3.x' into 2.3.x-saas

This commit is contained in:
Martin Konecny 2013-03-05 16:21:47 -05:00
commit 1c80701488
10 changed files with 27 additions and 24 deletions

View file

@ -229,7 +229,7 @@ class Application_Common_DateHelper
public static function calculateLengthInSeconds($p_time){ public static function calculateLengthInSeconds($p_time){
if (2 !== substr_count($p_time, ":")){ if (2 !== substr_count($p_time, ":")){
return FALSE; return false;
} }
if (1 === substr_count($p_time, ".")){ if (1 === substr_count($p_time, ".")){
@ -241,12 +241,8 @@ class Application_Common_DateHelper
list($hours, $minutes, $seconds) = explode(":", $hhmmss); list($hours, $minutes, $seconds) = explode(":", $hhmmss);
// keep ms in 3 digits $totalSeconds = ($hours*3600 + $minutes*60 + $seconds).".$ms";
$ms = substr($ms, 0, 3); return round($totalSeconds, 3);
$totalSeconds = $hours*3600 + $minutes*60 + $seconds + $ms/1000;
return $totalSeconds;
} }
public static function ConvertToUtcDateTime($p_dateString, $timezone=null){ public static function ConvertToUtcDateTime($p_dateString, $timezone=null){

View file

@ -22,6 +22,11 @@ class Application_Model_RabbitMq
$CC_CONFIG["rabbitmq"]["user"], $CC_CONFIG["rabbitmq"]["user"],
$CC_CONFIG["rabbitmq"]["password"], $CC_CONFIG["rabbitmq"]["password"],
$CC_CONFIG["rabbitmq"]["vhost"]); $CC_CONFIG["rabbitmq"]["vhost"]);
if (!isset($conn)) {
throw new Exception("Cannot connect to RabbitMQ server");
}
$channel = $conn->channel(); $channel = $conn->channel();
$channel->access_request($CC_CONFIG["rabbitmq"]["vhost"], false, false, $channel->access_request($CC_CONFIG["rabbitmq"]["vhost"], false, false,
true, true); true, true);

View file

@ -368,7 +368,12 @@ SQL;
if (file_exists($filepath) && $type == "stor") { if (file_exists($filepath) && $type == "stor") {
$data = array("filepath" => $filepath, "delete" => 1); $data = array("filepath" => $filepath, "delete" => 1);
Application_Model_RabbitMq::SendMessageToMediaMonitor("file_delete", $data); try {
Application_Model_RabbitMq::SendMessageToMediaMonitor("file_delete", $data);
} catch (Exception $e) {
Logging::error($e->getMessage());
return;
}
} }

2
debian/control vendored
View file

@ -49,7 +49,7 @@ Depends: apache2,
vorbis-tools, vorbis-tools,
zendframework | libzend-framework-php, zendframework | libzend-framework-php,
${misc:Depends} ${misc:Depends}
Recommends: icecast2 Recommends: icecast2, php-apc
Suggests: airtime-audio-samples, Suggests: airtime-audio-samples,
alsa-utils alsa-utils
Description: open radio software for scheduling and remote station management. Description: open radio software for scheduling and remote station management.

View file

@ -217,7 +217,9 @@ if [ "$python_service" -eq "0" ]; then
echo -e "\n*** Verifying your system environment, running airtime-check-system ***" echo -e "\n*** Verifying your system environment, running airtime-check-system ***"
sleep 15 sleep 15
set +e
airtime-check-system --no-color airtime-check-system --no-color
set -e
fi fi
echo -e "\n******************************* Install Complete *******************************" echo -e "\n******************************* Install Complete *******************************"

View file

@ -45,7 +45,6 @@ chmod 600 /etc/monit/conf.d/monit-airtime-liquidsoap.cfg
chmod 600 /etc/monit/conf.d/monit-airtime-media-monitor.cfg chmod 600 /etc/monit/conf.d/monit-airtime-media-monitor.cfg
chmod 600 /etc/monit/conf.d/monit-airtime-playout.cfg chmod 600 /etc/monit/conf.d/monit-airtime-playout.cfg
chmod 600 /etc/monit/conf.d/monit-airtime-liquidsoap.cfg chmod 600 /etc/monit/conf.d/monit-airtime-liquidsoap.cfg
chmod 600 /etc/monit/conf.d/monit-airtime-rabbitmq-server.cfg
# Start monit if it is not running, or restart if it is. # Start monit if it is not running, or restart if it is.
# Need to ensure monit is running before Airtime daemons are run. This is # Need to ensure monit is running before Airtime daemons are run. This is

View file

@ -171,17 +171,16 @@ def normalize_mutagen(path):
md['path'] = normpath(path) md['path'] = normpath(path)
# silence detect(set default cue in and out) # silence detect(set default cue in and out)
try: #try:
command = ['silan', "-b", '-f', 'JSON', md['path']] #command = ['silan', '-b', '-f', 'JSON', md['path']]
proc = subprocess.Popen(command, stdout=subprocess.PIPE) #proc = subprocess.Popen(command, stdout=subprocess.PIPE)
out = proc.communicate()[0].strip('\r\n') #out = proc.communicate()[0].strip('\r\n')
info = json.loads(out) #info = json.loads(out)
md['cuein'] = info['sound'][0][0] #md['cuein'] = info['sound'][0][0]
md['cueout'] = info['sound'][0][1] #md['cueout'] = info['sound'][0][1]
except Exception: #except Exception:
logger = logging.getLogger() #self.logger.debug('silan is missing')
logger.info('silan is missing')
if 'title' not in md: md['title'] = u'' if 'title' not in md: md['title'] = u''
return md return md

View file

@ -88,7 +88,6 @@ try:
#copy monit files #copy monit files
shutil.copy('%s/../../monit/monit-airtime-generic.cfg'%current_script_dir, '/etc/monit/conf.d/') shutil.copy('%s/../../monit/monit-airtime-generic.cfg'%current_script_dir, '/etc/monit/conf.d/')
subprocess.call('sed -i "s/\$admin_pass/%s/g" /etc/monit/conf.d/monit-airtime-generic.cfg' % get_rand_string(), shell=True) subprocess.call('sed -i "s/\$admin_pass/%s/g" /etc/monit/conf.d/monit-airtime-generic.cfg' % get_rand_string(), shell=True)
shutil.copy('%s/../../monit/monit-airtime-rabbitmq-server.cfg'%current_script_dir, '/etc/monit/conf.d/')
monit_version = get_monit_version() monit_version = get_monit_version()
if version_compare(monit_version, "5.3.0") >= 0: if version_compare(monit_version, "5.3.0") >= 0:

View file

@ -49,7 +49,6 @@ try:
remove_file("/etc/monit/conf.d/monit-airtime-playout.cfg") remove_file("/etc/monit/conf.d/monit-airtime-playout.cfg")
remove_file("/etc/monit/conf.d/monit-airtime-liquidsoap.cfg") remove_file("/etc/monit/conf.d/monit-airtime-liquidsoap.cfg")
remove_file("/etc/monit/conf.d/monit-airtime-generic.cfg") remove_file("/etc/monit/conf.d/monit-airtime-generic.cfg")
remove_file("/etc/monit/conf.d/monit-airtime-rabbitmq-server.cfg")
except Exception, e: except Exception, e:
print e print e

View file

@ -50,7 +50,7 @@ try:
full_path = f['fp'] full_path = f['fp']
# silence detect(set default queue in and out) # silence detect(set default queue in and out)
try: try:
command = ['silan', '-f', 'JSON', full_path] command = ['silan', '-b' '-f', 'JSON', full_path]
proc = subprocess.Popen(command, stdout=subprocess.PIPE) proc = subprocess.Popen(command, stdout=subprocess.PIPE)
out = proc.communicate()[0].strip('\r\n') out = proc.communicate()[0].strip('\r\n')
info = json.loads(out) info = json.loads(out)
@ -64,7 +64,6 @@ try:
except Exception, e: except Exception, e:
print e print e
print traceback.format_exc() print traceback.format_exc()
break
print "Processed: %d songs" % total print "Processed: %d songs" % total
subtotal += total subtotal += total