diff options
author | Marcello Coutinho <marcellocoutinho@gmail.com> | 2012-03-30 19:15:10 -0300 |
---|---|---|
committer | marcelloc <marcellocoutinho@gmail.com> | 2012-03-30 19:15:10 -0300 |
commit | 7852acc1ede90c850669e6d94568c53c5fb807d4 (patch) | |
tree | 69f7080a5545158c8f081369f23440bee1416e20 /config/sarg/sarg_frame.php | |
parent | 3998c049f38f3dc0d0e27bdc39631264b3d1f6d8 (diff) | |
download | pfsense-packages-7852acc1ede90c850669e6d94568c53c5fb807d4.tar.gz pfsense-packages-7852acc1ede90c850669e6d94568c53c5fb807d4.tar.bz2 pfsense-packages-7852acc1ede90c850669e6d94568c53c5fb807d4.zip |
sarg - version 0.2.1 with report tab cache fix
Diffstat (limited to 'config/sarg/sarg_frame.php')
-rwxr-xr-x | config/sarg/sarg_frame.php | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/config/sarg/sarg_frame.php b/config/sarg/sarg_frame.php new file mode 100755 index 00000000..96b8c92f --- /dev/null +++ b/config/sarg/sarg_frame.php @@ -0,0 +1,59 @@ +<?php +/* + sarg_frame.php + part of pfSense (http://www.pfsense.com/) + Copyright (C) 2012 Marcello Coutinho <marcellocoutinho@gmail.com> + based on varnish_view_config. + 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. +*/ + +if(preg_match("/(\S+)\W(\w+.html)/",$_REQUEST['file'],$matches)){ + #https://192.168.1.1/sarg_reports.php?file=2012Mar30-2012Mar30/index.html + $url=$matches[2]; + $prefix=$matches[1]; + } +else{ + $url="index.html"; + $prefix=""; + } +$url=($_REQUEST['file'] == ""?"index.html":$_REQUEST['file']); +$report=file_get_contents("/usr/local/www/sarg-reports/".$url); +/*$pattern[0]="/header_\w/"; +$replace[0]="listtopic"; +$pattern[1]="/class=.data./"; +$replace[1]='class="listlr"'; +$pattern[2]="/cellpadding=.\d./"; +$replace[2]='cellpadding="0"'; +$pattern[3]="/cellspacing=.\d./"; +$replace[3]='cellspacing="0"'; +$pattern[4]="/sarg/"; +$replace[4]='cellspacing="0"'; +*/ +$pattern[0]="/href=\W(\S+html)\W/"; +$replace[0]="href=/sarg_frame.php?file=$prefix/$1"; +$pattern[1]='/img src="(\w+\.\w+)/'; +$replace[1]='img src="/sarg-reports'.$prefix.'/$1'; + +print preg_replace($pattern,$replace,$report); +?>
\ No newline at end of file |