diag_logs.php 3.43 KB
Newer Older
Ad Schellevis's avatar
Ad Schellevis committed
1
<?php
2

Ad Schellevis's avatar
Ad Schellevis committed
3
/*
4
	Copyright (C) 2014 Deciso B.V.
Ad Schellevis's avatar
Ad Schellevis committed
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 30
	Copyright (C) 2004-2009 Scott Ullrich
	Copyright (C) 2003-2004 Manuel Kasper <mk@neon1.net>.
	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.
*/

31
require_once("guiconfig.inc");
32
require_once("system.inc");
33
require_once("interfaces.inc");
Ad Schellevis's avatar
Ad Schellevis committed
34

35
$system_logfile = '/var/log/system.log';
Ad Schellevis's avatar
Ad Schellevis committed
36

37
if (empty($config['syslog']['nentries'])) {
Ad Schellevis's avatar
Ad Schellevis committed
38
	$nentries = 50;
39 40
} else {
	$nentries = $config['syslog']['nentries'];
41
}
Ad Schellevis's avatar
Ad Schellevis committed
42

43
if (isset($_POST['clear'])) {
Ad Schellevis's avatar
Ad Schellevis committed
44
	clear_log_file($system_logfile);
45
}
Ad Schellevis's avatar
Ad Schellevis committed
46

47
if ($_GET['filtertext']) {
Ad Schellevis's avatar
Ad Schellevis committed
48
	$filtertext = htmlspecialchars($_GET['filtertext']);
49
}
Ad Schellevis's avatar
Ad Schellevis committed
50

51
if ($_POST['filtertext']) {
Ad Schellevis's avatar
Ad Schellevis committed
52
	$filtertext = htmlspecialchars($_POST['filtertext']);
53
}
Ad Schellevis's avatar
Ad Schellevis committed
54

55 56 57
if ($filtertext) {
	$filtertextmeta = "?filtertext={$filtertext}";
}
Ad Schellevis's avatar
Ad Schellevis committed
58 59 60 61 62 63

$pgtitle = array(gettext("Status"),gettext("System logs"),gettext("General"));
include("head.inc");

?>

64 65
<body>

Ad Schellevis's avatar
Ad Schellevis committed
66
<?php include("fbegin.inc"); ?>
67 68

	<section class="page-content-main">
69
		<div class="container-fluid">
70
			<div class="row">
71

72
				<?php if (isset($input_errors) && count($input_errors) > 0) print_input_errors($input_errors); ?>
73

74
			    <section class="col-xs-12">
75

76
				<? include('diag_logs_tabs.inc'); ?>
77 78 79 80 81

					<div class="tab-content content-box col-xs-12">
				    <div class="container-fluid">


82
							<? include('diag_logs_pills.php'); ?>
83 84
				    </div>

85
							 <div class="table-responsive">
86 87
								<table class="table table-striped table-sort">
									<?php
88
										if ($filtertext) {
89
											dump_clog($system_logfile, $nentries, true, array("$filtertext"), array("ppp"));
90
										} else {
91
											dump_clog($system_logfile, $nentries, true, array(), array("ppp"));
92
										}
93
									?>
94
								</table>
95
							 </div>
96

Ad Schellevis's avatar
Ad Schellevis committed
97
							<div class="container-fluid">
98

99 100 101
							<form action="diag_logs.php" method="post">
								<input name="clear" type="submit" class="btn btn-default" value="<?= gettext("Clear log");?>" />
							</form>
102

Ad Schellevis's avatar
Ad Schellevis committed
103
							<form id="clearform" name="clearform" action="diag_logs.php" method="post" class="__mt">
104 105
					<input id="filtertext" name="filtertext" value="<?=$filtertext;?>" />
					<input id="filtersubmit" name="filtersubmit" type="submit" class="btn btn-primary" value="<?=gettext("Filter");?>" />
Ad Schellevis's avatar
Ad Schellevis committed
106
						    </form>
107

Ad Schellevis's avatar
Ad Schellevis committed
108
							</div>
109

110 111
						</div>
				    </div>
112
			</section>
113 114 115
			</div>
		</div>
	</section>
116 117

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