diag_logs_resolver.php 3.04 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 31
	Copyright (C) 2004-2009 Scott Ullrich
	Copyright (C) 2012 Seth Mos
	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.
*/

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

37
$system_logfile = '/var/log/resolver.log';
38 39
$filtertext = '';
$nentries = 50;
Ad Schellevis's avatar
Ad Schellevis committed
40

41
if (isset($config['syslog']['nentries'])) {
42
        $nentries = $config['syslog']['nentries'];
43
}
Ad Schellevis's avatar
Ad Schellevis committed
44

45
if ($_POST['clear']) {
46
	clear_clog($system_logfile);
47
}
Ad Schellevis's avatar
Ad Schellevis committed
48

Franco Fichtner's avatar
Franco Fichtner committed
49
if (isset($_POST['filtertext'])) {
Ad Schellevis's avatar
Ad Schellevis committed
50
	$filtertext = htmlspecialchars($_POST['filtertext']);
51
}
Ad Schellevis's avatar
Ad Schellevis committed
52 53 54 55 56

include("head.inc");

?>

57 58
<body>

Ad Schellevis's avatar
Ad Schellevis committed
59
<?php include("fbegin.inc"); ?>
60 61

	<section class="page-content-main">
62
		<div class="container-fluid">
63
			<div class="row">
64

65
				<?php if (isset($input_errors) && count($input_errors) > 0) print_input_errors($input_errors); ?>
66

67
			    <section class="col-xs-12">
68 69
					<div class="tab-content content-box col-xs-12">

70
							 <div class="table-responsive">
71
								<table class="table table-striped table-sort">
Franco Fichtner's avatar
Franco Fichtner committed
72 73 74 75 76 77
									<tr><td colspan="2">
							<form id="clearform" name="clearform" action="diag_logs_resolver.php" method="post" class="__mt">
                                <input id="filtertext" name="filtertext" value="<?=$filtertext;?>" />
                                <input id="filtersubmit" name="filtersubmit" type="submit" class="btn btn-primary" value="<?=gettext("Filter");?>" />
						    </form>
									</td></tr>
78
									<?php dump_clog($system_logfile, $nentries, $filtertext); ?>
Franco Fichtner's avatar
Franco Fichtner committed
79
									<tr><td colspan="2">
80 81 82
							<form action="diag_logs_resolver.php" method="post">
								<input name="clear" type="submit" class="btn" value="<?= gettext("Clear log");?>" />
							</form>
Franco Fichtner's avatar
Franco Fichtner committed
83 84 85
									</td></tr>
								</table>
							 </div>
86

87
				    </div>
88
			</section>
89 90 91
			</div>
		</div>
	</section>
92 93

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