git.schokokeks.org
Repositories
Help
Report an Issue
webinterface.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
f12aba6
Branches
Tags
master
ticket
webinterface.git
modules
vhosts
stats.php
Updated copyright notice (2012 => 2013)
Bernd Wurst
commited
f12aba6
at 2013-01-19 10:49:50
stats.php
Blame
History
Raw
<?php /* This file belongs to the Webinterface of schokokeks.org Hosting Written 2008-2013 by schokokeks.org Hosting, namely Bernd Wurst <bernd@schokokeks.org> Hanno Böck <hanno@schokokeks.org> To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see http://creativecommons.org/publicdomain/zero/1.0/ Nevertheless, in case you use a significant part of this code, we ask (but not require, see the license) that you keep the authors' names in place and return your changes to the public. We would be especially happy if you tell us what you're going to do with this code. */ require_once("inc/icons.php"); require_once("vhosts.php"); require_role(ROLE_SYSTEMUSER); title("Zugriffs-Statistiken"); if (isset($_REQUEST['vhost'])) { $v = get_vhost_details($_REQUEST['vhost']); if (isset($_REQUEST['public'])) { $v['stats'] = ($_REQUEST['public'] == 1) ? 'public' : 'private'; } if (isset($_REQUEST['action'])) { if ($_REQUEST['action'] == 'delete') $v['stats'] = NULL; elseif ($_REQUEST['action'] == 'new') check_form_token('stats_new'); } save_vhost($v); redirect('stats'); } else { $all_vhosts = list_vhosts(); $stats_vhosts = array(); foreach ($all_vhosts AS $v) if ($v['stats']) $stats_vhosts[] = $v; output('<p>Um die Reichweite und das Publikum Ihrer Internet-Seiten besser einschätzen zu können, besteht die Möglichkeit aus den ggf. vorhandenen Webserver-Logfiles grafisch aufbereitete Statistiken erstellen zu lassen.</p> <h3>Statistiken für Ihre Seiten</h3> '); if (count($stats_vhosts) > 0) { output(' <table><tr><th>Für Website</th><th>Öffentlich abrufbar?</th><th>Operationen</th></tr> '); foreach ($stats_vhosts AS $v) { output("<tr>"); output("<td>".internal_link('showstats', $v['fqdn'], "vhost={$v['id']}")."</td>"); if ($v['stats'] == 'public') output("<td><a href=\"http://".config('stats_hostname')."/{$v['fqdn']}\">".icon_enabled("Diese Statistiken können von jedermann aufgerufen werden. Klicken Sie hier um die öffentliche Version zu sehen.")."</a></td>"); else output("<td>".icon_disabled("Diese Statistiken können nur hier im Webinterface betrachtet werden.")."</td>"); output("<td>"); if ($v['stats'] == 'public') output(internal_link("", other_icon("lock.png", "Statistiken nicht mehr öffentlich anzeigen"), "vhost={$v['id']}&public=0")); else output(internal_link("", other_icon("world.png", "Statistiken veröffentlichen"), "vhost={$v['id']}&public=1")); output("   ".internal_link("", icon_delete("Diese Statistiken löschen"), "vhost={$v['id']}&action=delete")."</td>"); output("</tr>"); } output('</table>'); } else output('<em>Für Ihre Seiten werden bisher keine Statistiken erzeugt</em>'); output("<h3>Weitere Statistiken</h3>"); $sel = array(); foreach ($all_vhosts AS $v) { if ($v['logtype']) { $found = False; foreach ($stats_vhosts AS $s) if ($s['id'] == $v['id']) $found = True; if (! $found) $sel[$v['id']] = $v['fqdn']; } } if (count($sel) > 0) { output(html_form('stats_new', '', 'action=new', "<p>".html_select("vhost", $sel).'<br/> <input type="radio" name="public" id="public_0" value="0" checked="checked" /><label for="public_0"> Statistiken hier im Webinterface anzeigen</label><br /> <input type="radio" name="public" id="public_1" value="1" /><label for="public_1"> Statistiken unter '.config('stats_hostname').' veröffentlichen (Ohne Passwortschutz)</label><br /> <input type="submit" value="Neue Statistiken erzeugen" /></p> ')); output(' <p><strong>Hinweis:</strong> Die Statistiken werden mindestens täglich erzeugt. Bis zum ersten Durchlauf nach der Aktivierung der Statistik wird der obige Link eine Fehlermeldung erzeugen. Bitte warten Sie mindestens einen Tag ab bevor Sie die Statistik zum ersten Mal aufrufen.</p> '); } else { # keine VHosts mehr verfügbar output('<p><em>Sie haben aktuell keine Domains/Subdomains, für die Protokolle erstellt aber noch nicht ausgewertet werden.</em></p>'); } }