2012-06-04 16:58:40 +02:00
|
|
|
<?php
|
|
|
|
|
/*
|
|
|
|
|
FusionPBX
|
|
|
|
|
Version: MPL 1.1
|
|
|
|
|
|
|
|
|
|
The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
|
1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
|
the License. You may obtain a copy of the License at
|
|
|
|
|
http://www.mozilla.org/MPL/
|
|
|
|
|
|
|
|
|
|
Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
|
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
|
for the specific language governing rights and limitations under the
|
|
|
|
|
License.
|
|
|
|
|
|
|
|
|
|
The Original Code is FusionPBX
|
|
|
|
|
|
|
|
|
|
The Initial Developer of the Original Code is
|
|
|
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
2014-10-22 10:15:20 +02:00
|
|
|
Portions created by the Initial Developer are Copyright (C) 2008-2014
|
2012-06-04 16:58:40 +02:00
|
|
|
the Initial Developer. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
Contributor(s):
|
|
|
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
2012-11-24 04:55:16 +01:00
|
|
|
James Rose <james.o.rose@gmail.com>
|
2012-06-04 16:58:40 +02:00
|
|
|
*/
|
|
|
|
|
require_once "root.php";
|
2013-07-06 08:03:27 +02:00
|
|
|
require_once "resources/require.php";
|
2013-07-06 07:50:55 +02:00
|
|
|
require_once "resources/check_auth.php";
|
2013-09-21 23:45:35 +02:00
|
|
|
if (permission_exists('service_add') || permission_exists('service_edit')) {
|
2012-06-04 16:58:40 +02:00
|
|
|
//access granted
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
echo "access denied";
|
|
|
|
|
exit;
|
|
|
|
|
}
|
|
|
|
|
|
2012-11-24 04:55:16 +01:00
|
|
|
//add multi-lingual support
|
2015-01-18 11:06:08 +01:00
|
|
|
$language = new text;
|
|
|
|
|
$text = $language->get();
|
2012-11-24 04:55:16 +01:00
|
|
|
|
2012-06-04 16:58:40 +02:00
|
|
|
//action add or update
|
|
|
|
|
if (isset($_REQUEST["id"])) {
|
|
|
|
|
$action = "update";
|
|
|
|
|
$service_uuid = check_str($_REQUEST["id"]);
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
$action = "add";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//get http post and set it to php variables
|
|
|
|
|
if (count($_POST)>0) {
|
|
|
|
|
$service_name = check_str($_POST["service_name"]);
|
|
|
|
|
$service_type = check_str($_POST["service_type"]);
|
|
|
|
|
$service_data = check_str($_POST["service_data"]);
|
|
|
|
|
$service_cmd_start = check_str($_POST["service_cmd_start"]);
|
|
|
|
|
$service_cmd_stop = check_str($_POST["service_cmd_stop"]);
|
|
|
|
|
$service_description = check_str($_POST["service_description"]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (count($_POST)>0 && strlen($_POST["persistformvar"]) == 0) {
|
|
|
|
|
|
|
|
|
|
$msg = '';
|
|
|
|
|
if ($action == "update") {
|
|
|
|
|
$service_uuid = check_str($_POST["service_uuid"]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//check for all required data
|
|
|
|
|
//if (strlen($domain_uuid) == 0) { $msg .= "Please provide: domain_uuid<br>\n"; }
|
|
|
|
|
if (strlen($service_name) == 0) { $msg .= "Please provide: Name<br>\n"; }
|
|
|
|
|
//if (strlen($service_type) == 0) { $msg .= "Please provide: Type<br>\n"; }
|
|
|
|
|
//if (strlen($service_data) == 0) { $msg .= "Please provide: Data<br>\n"; }
|
|
|
|
|
//if (strlen($service_cmd_start) == 0) { $msg .= "Please provide: Start Command<br>\n"; }
|
|
|
|
|
//if (strlen($service_cmd_stop) == 0) { $msg .= "Please provide: Stop Command<br>\n"; }
|
|
|
|
|
//if (strlen($service_description) == 0) { $msg .= "Please provide: Description<br>\n"; }
|
|
|
|
|
if (strlen($msg) > 0 && strlen($_POST["persistformvar"]) == 0) {
|
2013-07-06 08:29:50 +02:00
|
|
|
require_once "resources/header.php";
|
2013-07-06 08:21:12 +02:00
|
|
|
require_once "resources/persist_form_var.php";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "<div align='center'>\n";
|
|
|
|
|
echo "<table><tr><td>\n";
|
|
|
|
|
echo $msg."<br />";
|
|
|
|
|
echo "</td></tr></table>\n";
|
|
|
|
|
persistformvar($_POST);
|
|
|
|
|
echo "</div>\n";
|
2013-07-06 08:29:50 +02:00
|
|
|
require_once "resources/footer.php";
|
2012-06-04 16:58:40 +02:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//add or update the database
|
|
|
|
|
if ($_POST["persistformvar"] != "true") {
|
2013-09-21 23:45:35 +02:00
|
|
|
if ($action == "add" && permission_exists('service_add')) {
|
2012-06-04 16:58:40 +02:00
|
|
|
$service_uuid = uuid();
|
|
|
|
|
$sql = "insert into v_services ";
|
|
|
|
|
$sql .= "(";
|
|
|
|
|
$sql .= "domain_uuid, ";
|
|
|
|
|
$sql .= "service_uuid, ";
|
|
|
|
|
$sql .= "service_name, ";
|
|
|
|
|
$sql .= "service_type, ";
|
|
|
|
|
$sql .= "service_data, ";
|
|
|
|
|
$sql .= "service_cmd_start, ";
|
|
|
|
|
$sql .= "service_cmd_stop, ";
|
|
|
|
|
$sql .= "service_description ";
|
|
|
|
|
$sql .= ")";
|
|
|
|
|
$sql .= "values ";
|
|
|
|
|
$sql .= "(";
|
|
|
|
|
$sql .= "'$domain_uuid', ";
|
|
|
|
|
$sql .= "'$service_uuid', ";
|
|
|
|
|
$sql .= "'$service_name', ";
|
|
|
|
|
$sql .= "'$service_type', ";
|
|
|
|
|
$sql .= "'$service_data', ";
|
|
|
|
|
$sql .= "'$service_cmd_start', ";
|
|
|
|
|
$sql .= "'$service_cmd_stop', ";
|
|
|
|
|
$sql .= "'$service_description' ";
|
|
|
|
|
$sql .= ")";
|
|
|
|
|
$db->exec(check_sql($sql));
|
|
|
|
|
unset($sql);
|
|
|
|
|
|
2014-02-23 09:24:56 +01:00
|
|
|
$_SESSION["message"] = $text['message-add'];
|
|
|
|
|
header("Location: services.php");
|
2012-06-04 16:58:40 +02:00
|
|
|
return;
|
|
|
|
|
} //if ($action == "add")
|
|
|
|
|
|
2013-09-21 23:45:35 +02:00
|
|
|
if ($action == "update" && permission_exists('service_edit')) {
|
2012-06-04 16:58:40 +02:00
|
|
|
$sql = "update v_services set ";
|
|
|
|
|
$sql .= "service_name = '$service_name', ";
|
|
|
|
|
$sql .= "service_type = '$service_type', ";
|
|
|
|
|
$sql .= "service_data = '$service_data', ";
|
|
|
|
|
$sql .= "service_cmd_start = '$service_cmd_start', ";
|
|
|
|
|
$sql .= "service_cmd_stop = '$service_cmd_stop', ";
|
|
|
|
|
$sql .= "service_description = '$service_description' ";
|
|
|
|
|
$sql .= "where domain_uuid = '$domain_uuid'";
|
|
|
|
|
$sql .= "and service_uuid = '$service_uuid'";
|
|
|
|
|
$db->exec(check_sql($sql));
|
|
|
|
|
unset($sql);
|
|
|
|
|
|
2014-02-23 09:24:56 +01:00
|
|
|
$_SESSION["message"] = $text['message-update'];
|
|
|
|
|
header("Location: services.php");
|
2012-06-04 16:58:40 +02:00
|
|
|
return;
|
|
|
|
|
} //if ($action == "update")
|
|
|
|
|
} //if ($_POST["persistformvar"] != "true")
|
|
|
|
|
} //(count($_POST)>0 && strlen($_POST["persistformvar"]) == 0)
|
|
|
|
|
|
|
|
|
|
//pre-populate the form
|
|
|
|
|
if (count($_GET)>0 && $_POST["persistformvar"] != "true") {
|
|
|
|
|
$service_uuid = $_GET["id"];
|
2012-11-24 03:28:56 +01:00
|
|
|
$sql = "select * from v_services ";
|
2012-06-04 16:58:40 +02:00
|
|
|
$sql .= "where service_uuid = '$service_uuid' ";
|
|
|
|
|
$prep_statement = $db->prepare(check_sql($sql));
|
|
|
|
|
$prep_statement->execute();
|
|
|
|
|
$result = $prep_statement->fetchAll(PDO::FETCH_NAMED);
|
|
|
|
|
foreach ($result as &$row) {
|
|
|
|
|
$domain_uuid = $row["domain_uuid"];
|
|
|
|
|
$service_name = $row["service_name"];
|
|
|
|
|
$service_type = $row["service_type"];
|
|
|
|
|
$service_data = $row["service_data"];
|
|
|
|
|
$service_cmd_start = $row["service_cmd_start"];
|
|
|
|
|
$service_cmd_stop = $row["service_cmd_stop"];
|
|
|
|
|
$service_description = $row["service_description"];
|
|
|
|
|
break; //limit to 1 row
|
|
|
|
|
}
|
|
|
|
|
unset ($prep_statement);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//show the header
|
2013-07-06 08:29:50 +02:00
|
|
|
require_once "resources/header.php";
|
2012-06-04 16:58:40 +02:00
|
|
|
|
|
|
|
|
//begin the content
|
|
|
|
|
echo "<form method='post' name='frm' action=''>\n";
|
2015-02-15 08:59:02 +01:00
|
|
|
echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "<tr>\n";
|
|
|
|
|
if ($action == "add") {
|
2012-11-24 04:55:16 +01:00
|
|
|
echo "<td align='left' width='30%' nowrap><b>".$text['title']."</b></td>\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
}
|
|
|
|
|
if ($action == "update") {
|
|
|
|
|
echo "<td align='left' width='30%' nowrap><b>Service Edit</b></td>\n";
|
|
|
|
|
}
|
2014-04-27 01:56:12 +02:00
|
|
|
echo "<td width='70%' align='right'>";
|
|
|
|
|
echo " <input type='button' class='btn' name='' alt='".$text['button-back']."' onclick=\"window.location='services.php'\" value='".$text['button-back']."'>";
|
|
|
|
|
echo " <input type='submit' name='submit' class='btn' value='".$text['button-save']."'>\n";
|
|
|
|
|
echo "</td>\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</tr>\n";
|
|
|
|
|
echo "<tr>\n";
|
|
|
|
|
echo "<td align='left' colspan='2'>\n";
|
2012-11-24 04:55:16 +01:00
|
|
|
echo $text['description']."<br /><br />\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
|
|
|
|
|
echo "<tr>\n";
|
|
|
|
|
echo "<td class='vncellreq' valign='top' align='left' nowrap>\n";
|
2012-11-24 04:55:16 +01:00
|
|
|
echo " ".$text['label-name']."\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "<td class='vtable' align='left'>\n";
|
|
|
|
|
echo " <input class='formfld' type='text' name='service_name' maxlength='255' value=\"$service_name\">\n";
|
|
|
|
|
echo "<br />\n";
|
2012-11-24 04:55:16 +01:00
|
|
|
echo $text['description-name']."\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
|
|
|
|
|
echo "<tr>\n";
|
|
|
|
|
echo "<td class='vncell' valign='top' align='left' nowrap>\n";
|
2012-11-24 04:55:16 +01:00
|
|
|
echo " ".$text['label-type']."\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "<td class='vtable' align='left'>\n";
|
|
|
|
|
echo " <select class='formfld' name='service_type'>\n";
|
|
|
|
|
echo " <option value=''></option>\n";
|
2014-10-22 10:15:20 +02:00
|
|
|
if ($service_type == "pid" || $service_type == "pid_file") {
|
|
|
|
|
echo " <option value='pid' selected='selected'>pid</option>\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
}
|
|
|
|
|
else {
|
2014-10-22 10:15:20 +02:00
|
|
|
echo " <option value='pid'>pid</option>\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
}
|
2014-10-22 10:15:20 +02:00
|
|
|
//if ($service_type == "php") {
|
|
|
|
|
// echo " <option value='php' selected='selected'>php</option>\n";
|
|
|
|
|
//}
|
|
|
|
|
//else {
|
|
|
|
|
// echo " <option value='php'>php</option>\n";
|
|
|
|
|
//}
|
|
|
|
|
if ($service_type == "file") {
|
|
|
|
|
echo " <option value='file' selected='selected'>file</option>\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
}
|
|
|
|
|
else {
|
2014-10-22 10:15:20 +02:00
|
|
|
echo " <option value='file'>file</option>\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
}
|
|
|
|
|
echo " </select>\n";
|
|
|
|
|
echo "<br />\n";
|
2012-11-24 04:55:16 +01:00
|
|
|
echo $text['description-type']."\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
|
|
|
|
|
echo "<tr>\n";
|
|
|
|
|
echo "<td class='vncell' valign='top' align='left' nowrap>\n";
|
2012-11-24 04:55:16 +01:00
|
|
|
echo " ".$text['label-data']."\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "<td class='vtable' align='left'>\n";
|
|
|
|
|
echo " <input class='formfld' type='text' name='service_data' maxlength='255' value=\"$service_data\">\n";
|
|
|
|
|
//echo " <textarea class='formfld' name='service_data' rows='4'>$service_data</textarea>\n";
|
|
|
|
|
echo "<br />\n";
|
2012-11-24 04:55:16 +01:00
|
|
|
echo $text['description-data']."\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
|
|
|
|
|
echo "<tr>\n";
|
|
|
|
|
echo "<td class='vncell' valign='top' align='left' nowrap>\n";
|
2015-02-15 10:04:54 +01:00
|
|
|
echo " ".$text['label-start_command']."\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "<td class='vtable' align='left'>\n";
|
|
|
|
|
echo " <input class='formfld' type='text' name='service_cmd_start' maxlength='255' value=\"$service_cmd_start\">\n";
|
|
|
|
|
echo "<br />\n";
|
2015-02-15 10:04:54 +01:00
|
|
|
echo $text['description-start_command']."\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
|
|
|
|
|
echo "<tr>\n";
|
|
|
|
|
echo "<td class='vncell' valign='top' align='left' nowrap>\n";
|
2015-02-15 10:04:54 +01:00
|
|
|
echo " ".$text['label-stop_command']."\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "<td class='vtable' align='left'>\n";
|
|
|
|
|
echo " <input class='formfld' type='text' name='service_cmd_stop' maxlength='255' value=\"$service_cmd_stop\">\n";
|
|
|
|
|
echo "<br />\n";
|
2015-02-15 10:04:54 +01:00
|
|
|
echo $text['description-stop_command']."\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
|
|
|
|
|
echo "<tr>\n";
|
|
|
|
|
echo "<td class='vncell' valign='top' align='left' nowrap>\n";
|
2012-11-24 04:55:16 +01:00
|
|
|
echo " ".$text['label-description']."\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "<td class='vtable' align='left'>\n";
|
|
|
|
|
echo " <textarea class='formfld' name='service_description' rows='4'>$service_description</textarea>\n";
|
|
|
|
|
echo "<br />\n";
|
2012-11-24 04:55:16 +01:00
|
|
|
echo $text['description-description']."\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
echo " <tr>\n";
|
|
|
|
|
echo " <td colspan='2' align='right'>\n";
|
|
|
|
|
if ($action == "update") {
|
2015-02-15 08:59:02 +01:00
|
|
|
echo " <input type='hidden' name='service_uuid' value='$service_uuid'>\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
}
|
2015-02-15 10:20:19 +01:00
|
|
|
echo " <br>";
|
2015-02-15 08:59:02 +01:00
|
|
|
echo " <input type='submit' name='submit' class='btn' value='".$text['button-save']."'>\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo " </td>\n";
|
|
|
|
|
echo " </tr>";
|
|
|
|
|
echo "</table>";
|
2015-02-15 12:57:14 +01:00
|
|
|
echo "<br><br>";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</form>";
|
|
|
|
|
|
|
|
|
|
//show the footer
|
2013-07-06 08:29:50 +02:00
|
|
|
require_once "resources/footer.php";
|
2012-06-04 16:58:40 +02:00
|
|
|
?>
|