Commit eebc4bec authored by Ad Schellevis's avatar Ad Schellevis

add legacy style high availability backup status page for easy service restart/configure

parent 2c5768dc
<?php
/**
* Copyright (C) 2016 Deciso B.V.
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
* OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
*/
require_once("services.inc");
/**
* @return array
*/
function xmlrpc_publishable_service()
{
return array("list_services_xmlrpc", "stop_service_xmlrpc", "start_service_xmlrpc", "restart_service_xmlrpc",
"configd_reload_all_templates_xmlrpc");
}
/**
* list configured services
* @return string
*/
function list_services_xmlrpc()
{
$services = services_get();
if (count($services) > 0) {
uasort($services, "service_name_compare");
}
foreach ($services as &$service) {
$service['status'] = get_service_status($service);
}
return $services;
}
/**
* stop service
*/
function stop_service_xmlrpc($params)
{
$filter = array();
$name = $params["service"];
if (!empty($params["id"])) {
$filter['id'] = $params["id"];
}
return service_control_stop($name, $filter);
}
/**
* start service
*/
function start_service_xmlrpc($params)
{
$filter = array();
$name = $params["service"];
if (!empty($params["id"])) {
$filter['id'] = $params["id"];
}
return service_control_start($name, $filter);
}
/**
* restart service
*/
function restart_service_xmlrpc($params)
{
$filter = array();
$name = $params["service"];
if (!empty($params["id"])) {
$filter['id'] = $params["id"];
}
return service_control_restart($name, $filter);
}
/**
* generate all templates
*/
function configd_reload_all_templates_xmlrpc($params)
{
configd_run('template reload *');
return array("status" => "done");
}
......@@ -36,6 +36,7 @@
<HighAvailability order="50" VisibleName="High Availability" cssClass="fa fa-refresh fa-fw">
<Synchronization url="/system_hasync.php"/>
<CARPStatus order="100" VisibleName="CARP Status" url="/carp_status.php"/>
<HAStatus order="200" VisibleName="HA backup status" url="/status_habackup.php"/>
</HighAvailability>
<Routes order="40" cssClass="fa fa-map-signs fa-fw">
<All order="10" url="/system_routes.php">
......
......@@ -769,6 +769,13 @@
"carp_status.php*"
]
},
"page-status-habackup": {
"name": "WebCfg - Status: HA backup page",
"descr": "Allow access to the 'Status: HA backup' page.",
"match": [
"status_habackup.php"
]
},
"page-status-dhcpleases": {
"name": "WebCfg - Status: DHCP leases page",
"descr": "Allow access to the 'Status: DHCP leases' page.",
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment