167 lines
4.2 KiB
PHP
167 lines
4.2 KiB
PHP
<?php
|
|
|
|
exitIfNotRoot();
|
|
|
|
date_default_timezone_set("UTC");
|
|
|
|
$airtimeIni = getAirtimeConf();
|
|
$airtime_base_dir = $airtimeIni['general']['airtime_dir'];
|
|
|
|
set_include_path("$airtime_base_dir/library" . PATH_SEPARATOR . get_include_path());
|
|
//Zend framework
|
|
if (file_exists('/usr/share/php/libzend-framework-php')){
|
|
set_include_path('/usr/share/php/libzend-framework-php' . PATH_SEPARATOR . get_include_path());
|
|
}
|
|
|
|
require_once('Zend/Loader/Autoloader.php');
|
|
$autoloader = Zend_Loader_Autoloader::getInstance();
|
|
|
|
$log_files = array("media-monitor" => "/var/log/airtime/media-monitor/media-monitor.log",
|
|
"recorder" => "/var/log/airtime/pypo/show-recorder.log",
|
|
"playout" => "/var/log/airtime/pypo/pypo.log",
|
|
"liquidsoap" => "/var/log/airtime/pypo-liquidsoap/ls_script.log",
|
|
"web" => "/var/log/airtime/zendphp.log");
|
|
|
|
array_filter($log_files, "file_exists");
|
|
|
|
/**
|
|
* Ensures that the user is running this PHP script with root
|
|
* permissions. If not running with root permissions, causes the
|
|
* script to exit.
|
|
*/
|
|
function exitIfNotRoot()
|
|
{
|
|
// Need to check that we are superuser before running this.
|
|
if(posix_geteuid() != 0){
|
|
echo "Must be root user.\n";
|
|
exit(1);
|
|
}
|
|
}
|
|
|
|
function printUsage($userMsg = "")
|
|
{
|
|
global $opts;
|
|
|
|
$msg = $opts->getUsageMessage();
|
|
if (strlen($userMsg)>0)
|
|
echo $userMsg;
|
|
echo PHP_EOL."Usage: airtime-log [options]";
|
|
echo substr($msg, strpos($msg, "\n")).PHP_EOL;
|
|
}
|
|
|
|
function isKeyValid($key){
|
|
global $log_files;
|
|
return array_key_exists($key, $log_files);
|
|
}
|
|
|
|
function viewSpecificLog($key){
|
|
global $log_files;
|
|
|
|
if (isKeyValid($key)){
|
|
echo "Viewing $key log\n";
|
|
pcntl_exec(exec("which less"), array($log_files[$key]));
|
|
pcntl_wait($status);
|
|
} else printUsage();
|
|
}
|
|
|
|
function dumpAllLogs(){
|
|
$dateStr = gmdate("Y-m-d-H-i-s");
|
|
|
|
$dir = getcwd();
|
|
|
|
$filename = "$dir/airtime-log-all-$dateStr.tgz";
|
|
echo "Creating Airtime logs tgz file at $filename";
|
|
$command = "tar cfz $filename /var/log/airtime 2>/dev/null";
|
|
exec($command);
|
|
}
|
|
|
|
function dumpSpecificLog($key){
|
|
global $log_files;
|
|
|
|
if (isKeyValid($key)){
|
|
$dateStr = gmdate("Y-m-d-H-i-s");
|
|
|
|
$dir = getcwd();
|
|
|
|
$filename = "$dir/airtime-log-$key-$dateStr.tgz";
|
|
echo "Creating Airtime logs tgz file at $filename";
|
|
$dir = dirname($log_files[$key]);
|
|
$command = "tar cfz $filename $dir 2>/dev/null";
|
|
exec($command);
|
|
} else printUsage();
|
|
}
|
|
|
|
function tailAllLogs(){
|
|
global $log_files;
|
|
echo "Tail all Airtime logs";
|
|
pcntl_exec(exec("which multitail"), $log_files);
|
|
pcntl_wait($status);
|
|
}
|
|
|
|
function tailSpecificLog($key){
|
|
global $log_files;
|
|
|
|
if (isKeyValid($key)){
|
|
echo "Tail $key log";
|
|
pcntl_exec(exec("which tail"), array("-F", $log_files[$key]));
|
|
pcntl_wait($status);
|
|
} else printUsage();
|
|
}
|
|
|
|
function getAirtimeConf()
|
|
{
|
|
$ini = parse_ini_file("/etc/airtime/airtime.conf", true);
|
|
|
|
if ($ini === false){
|
|
echo "Error reading /etc/airtime/airtime.conf.".PHP_EOL;
|
|
exit;
|
|
}
|
|
|
|
return $ini;
|
|
}
|
|
|
|
try {
|
|
$keys = implode("|", array_keys($log_files));
|
|
$opts = new Zend_Console_Getopt(
|
|
array(
|
|
'view|v=s' => "Display log file\n"
|
|
."\t\t$keys",
|
|
'dump|d-s' => "Collect all log files and compress into a tarball\n"
|
|
."\t\t$keys (ALL by default)",
|
|
'tail|t-s' => "View any new entries appended to log files in real-time\n"
|
|
."\t\t$keys (ALL by default)"
|
|
)
|
|
);
|
|
$opts->parse();
|
|
}
|
|
catch (Zend_Console_Getopt_Exception $e) {
|
|
print $e->getMessage() .PHP_EOL;
|
|
printUsage();
|
|
exit(1);
|
|
}
|
|
|
|
if (isset($opts->v)){
|
|
if ($opts->v === true){
|
|
//Should never get here. Zend_Console_Getopt requires v to provide a string parameter.
|
|
} else {
|
|
viewSpecificLog($opts->v);
|
|
}
|
|
} else if (isset($opts->d)){
|
|
if ($opts->d === true){
|
|
dumpAllLogs();
|
|
} else {
|
|
dumpSpecificLog($opts->d);
|
|
}
|
|
} else if (isset($opts->t)){
|
|
if ($opts->t === true){
|
|
tailAllLogs();
|
|
} else {
|
|
tailSpecificLog($opts->t);
|
|
}
|
|
} else {
|
|
printUsage();
|
|
exit;
|
|
}
|
|
|
|
echo PHP_EOL;
|