. * * Version 0.1 * Author: Octavio Benedi Sanchez */ // Predefined variables: // $section contains the section folder name. // echo "section=".$section."
"; // $plugin contains the plugin folder name. // echo "plugin=".$plugin."
"; // $section and $plugin can be used to make a link to this plugin by just reference // echo "This plugin"."
"; // $base_plugin contains the path that must be used as start to includes for // plugin includes that need the local path. // example: include_once $base_plugin.'php/my_include.php'; // echo "base_plugin=".$base_plugin."
"; // $url_plugin contains the url base that must be used to include html items // such as images. // example: // echo "url_plugin=".$url_plugin."
"; // $API_core contains the path to the core API folder. // example: include_once $API_core.'is_active.php'; // echo "API_core=".$API_core."
"; // Plugin server produced data will returned to the ajax call that made the // request. include_once $API_core.'complex_ajax_return_functions.php'; include_once $API_core.'common_validators.php'; include_once $API_core.'json_api.php'; if ($_POST['type']=="complex") { //$mpdconf=jsondecode($_POST['form_fields']); $mpdconf_data=str_replace('\n', "\n", $_POST['mpdconf'])."\n"; $fp=fopen($base_plugin.'data/mpd.txt','w'); fwrite($fp,$mpdconf_data); //fwrite($fp,$mpdconf['mpdconf']); fclose($fp); // Uncomment following two lines on meshlium. exec('sudo cp '.$base_plugin.'data/mpd.txt /etc/mpd.conf'); exec('sudo /etc/init.d/mpd restart'); $out='alert("Data saved");'; response_additem("script", $out); response_return(); } else { if ($_POST['cmd']=="info") { exec ('mpc status', $cur_play); $html=implode("
",$cur_play); } else if ($_POST['cmd']=="play") { exec ('mpc play', $cur_play); $html=implode("
",$cur_play); } else if ($_POST['cmd']=="pause") { exec ('mpc pause', $cur_play); $html=implode("
",$cur_play); } else if ($_POST['cmd']=="stop") { exec ('mpc stop', $cur_play); $html=implode("
",$cur_play); } else if ($_POST['cmd']=="next") { exec ('mpc next', $cur_play); $html=implode("
",$cur_play); } else if ($_POST['cmd']=="prev") { exec ('mpc prev', $cur_play); $html=implode("
",$cur_play); } else if ($_POST['cmd']=="repeat") { exec ('mpc repeat', $cur_play); $html=implode("
",$cur_play); } else if ($_POST['cmd']=="shuffle") { exec ('mpc shuffle', $cur_play); $html=implode("
",$cur_play); } else if ($_POST['cmd']=="random") { exec ('mpc random', $cur_play); $html=implode("
",$cur_play); } else if ($_POST['cmd']=="louder") { exec ('mpc volume +2', $cur_play); $html=implode("
",$cur_play); } else if ($_POST['cmd']=="softer") { exec ('mpc volume -2', $cur_play); $html=implode("
",$cur_play); } else if ($_POST['cmd']=="update") { exec ('mpc update', $cur_play); $html=implode("
",$cur_play); } else if ($_POST['cmd']=="status") { exec ('sudo /etc/init.d/mpd status', $cur_play); exec ('mpc outputs', $cur_play2); $html=implode("
", $cur_play ); $html=$html . "
" . implode("
", $cur_play2); } else if ($_POST['cmd']=="mpd_start") { exec ('sudo /etc/init.d/mpd start', $cur_play); $html=implode("
", $cur_play ); } else if ($_POST['cmd']=="mpd_stop") { exec ('sudo /etc/init.d/mpd stop', $cur_play); $html=implode("
", $cur_play ); } else if ($_POST['cmd']=="mpd_restart") { exec ('sudo /etc/init.d/mpd restart', $cur_play); $html=implode("
", $cur_play ); } else { $html="
".print_r($_POST,true)."
"; $html=implode("
",$cur_play); } echo $html; } ?>