status_services.php 3.96 KB
Newer Older
Ad Schellevis's avatar
Ad Schellevis committed
1 2
<?php
/*
3
    Copyright (C) 2014-2015 Deciso B.V.
Ad Schellevis's avatar
Ad Schellevis committed
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
    Copyright (C) 2004, 2005 Scott Ullrich
    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("guiconfig.inc");
30
require_once("service-utils.inc");
Ad Schellevis's avatar
Ad Schellevis committed
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
require_once("shortcuts.inc");

$service_name = '';
if (isset($_GET['service']))
	$service_name = htmlspecialchars($_GET['service']);

if (!empty($service_name)) {
	switch ($_GET['mode']) {
		case "restartservice":
			$savemsg = service_control_restart($service_name, $_GET);
			break;
		case "startservice":
			$savemsg = service_control_start($service_name, $_GET);
			break;
		case "stopservice":
			$savemsg = service_control_stop($service_name, $_GET);
			break;
	}
	sleep(5);
}

/* batch mode, allow other scripts to call this script */
if($_GET['batch'])
	exit;

$pgtitle = array(gettext("Status"),gettext("Services"));
include("head.inc");

?>

61
<body>
Ad Schellevis's avatar
Ad Schellevis committed
62 63 64 65
<?php
include("fbegin.inc");
?>

66
	<section class="page-content-main">
67
		<div class="container-fluid">
68
			<div class="row">
69

70
				<?php if ($savemsg) print_info_box($savemsg); ?>
71

72
			    <section class="col-xs-12">
73

74 75
					<div class="content-box">
						<form action="status_services.php" method="post">
76

77 78 79 80 81 82 83 84 85 86 87
						<div class="table-responsive">
							<table class="table table-striped table-sort">
							<thead>
							<tr>
								<td><?=gettext("Service");?></td>
								<td><?=gettext("Description");?></td>
								<td><?=gettext("Status");?></td>
							</tr>
							</thead>
							<tbody>
						<?php
88

89
						$services = get_services();
90

91 92 93 94 95
						if (count($services) > 0) {
							uasort($services, "service_name_compare");
							foreach($services as $service) {
								if (empty($service['name']))
									continue;
Ad Schellevis's avatar
Ad Schellevis committed
96 97
								echo "<tr><td class=\"listlr\" >" . $service['name'] . "</td>\n";
								echo "<td class=\"listr\">" . $service['description'] . "</td>\n";
98 99 100 101 102 103
								// if service is running then listr else listbg
								$bgclass = null;
								if (get_service_status($service))
									$bgclass = "listr";
								else
									$bgclass = "listbg";
Ad Schellevis's avatar
Ad Schellevis committed
104
								echo "<td class=\"" . $bgclass . "\">" . get_service_status_icon($service, true, true) . "</td>\n";
105 106 107 108 109 110 111 112 113 114
								echo "<td valign=\"middle\" class=\"list nowrap\">" . get_service_control_links($service);
								$scut = get_shortcut_by_service_name($service['name']);
								if (!empty($scut)) {
									echo get_shortcut_main_link($scut, true, $service);
									echo get_shortcut_status_link($scut, true, $service);
									echo get_shortcut_log_link($scut, true);
								}
								echo "</td></tr>\n";
							}
						} else {
Ad Schellevis's avatar
Ad Schellevis committed
115
							echo "<tr><td colspan=\"3\">" . gettext("No services found") . " . </td></tr>\n";
116
						}
117

118 119 120 121 122 123 124 125 126 127
						?>
						</tbody>
						</table>
						</div>
						</form>
					</div>
			    </section>
			</div>
		</div>
	</section>
128 129

<?php include("foot.inc"); ?>