Subversion Repositories svnkaklik

Compare Revisions

Ignore whitespace Rev 5 → Rev 6

/web/test/gallery/cpg133/banning.php
0,0 → 1,290
<?php
/*************************
Coppermine Photo Gallery
************************
Copyright (c) 2003-2005 Coppermine Dev Team
v1.1 originaly written by Gregory DEMAR
 
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
********************************************
Coppermine version: 1.3.3
$Source: /cvsroot/coppermine/stable/banning.php,v $
$Revision: 1.7 $
$Author: gaugau $
$Date: 2005/04/19 03:17:10 $
**********************************************/
 
define('IN_COPPERMINE', true);
define('BANNING_PHP', true);
 
require('include/init.inc.php');
require('include/sql_parse.php');
 
if (!GALLERY_ADMIN_MODE) cpg_die(ERROR, $lang_errors['access_denied'], __FILE__, __LINE__);
// if (defined('UDB_INTEGRATION')) cpg_die(ERROR, $lang_errors['not_with_udb'], __FILE__, __LINE__);
function create_banlist()
{
global $CONFIG, $PHP_SELF, $lang_banning_php, $album_date_fmt;
 
$result = db_query ("SELECT * FROM {$CONFIG['TABLE_BANNED']}");
$count = mysql_num_rows($result);
if ($count > 0) {
echo <<<EOHEAD
<tr>
<th align="center" class="tableh2">{$lang_banning_php['user_name']}</th>
<th align="center" class="tableh2">{$lang_banning_php['ip_address']}</th>
<th align="center" class="tableh2">{$lang_banning_php['expiry']}</th>
<th align="center" class="tableh2"></th>
</tr>
EOHEAD;
 
$row_counter = 0;
while ($row = mysql_fetch_array($result)) {
if ($row['user_id']) {
$username = get_username($row['user_id']);
} else {
$username = '';
}
if ($row['expiry']) {
$expiry = $row['expiry'];
} else {
$expiry = '';
}
echo <<<EOROW
<tr>
<form action="$PHP_SELF" method="post" name="banlist$row_counter">
<td width="20%" class="tableb" valign="middle">
<input type="hidden" name="ban_id" value="{$row['ban_id']}">
<input type="text" class="textinput" style="width: 100%" name="edit_ban_user_name" value="$username">
</td>
<td class="tableb" valign="middle">
<input type="text" class="textinput" size="15" name="edit_ban_ip_addr" value="{$row['ip_addr']}">
</td>
<td class="tableb" valign="middle">
<input type="text" class="listbox_lang" size="20" name="edit_ban_expires" value="$expiry" readonly="readonly" onclick="return getCalendar(document.banlist$row_counter.edit_ban_expires);" style="cursor:pointer" title="select date" />
</td>
<td class="tableb" valign="middle">
<input type="submit" class="button" name="edit_ban" value="{$lang_banning_php['edit_ban']}">
&nbsp;&nbsp;
<input type="submit" class="button" name="delete_ban" value="{$lang_banning_php['delete_ban']}">
</td>
</form>
</tr>
EOROW;
$row_counter++;
}
}
mysql_free_result($result);
}
 
if (count($HTTP_POST_VARS) > 0) {
if (isset($HTTP_POST_VARS['add_ban'])) {
if ($HTTP_POST_VARS['add_ban_user_name']) {
if (!($ban_uid = get_userid($HTTP_POST_VARS['add_ban_user_name']))) {
cpg_die(CRITICAL_ERROR, $lang_banning_php['error_user']. ' '. $HTTP_POST_VARS['add_ban_user_name'], __FILE__, __LINE__);
}
// check that admin doesn't ban himself
if ($HTTP_POST_VARS['add_ban_user_name'] == USER_NAME) {
cpg_die(ERROR, $lang_banning_php['error_admin_ban'], __FILE__, __LINE__);
}
} else {
$ban_uid = 'NULL';
}
 
if ($HTTP_POST_VARS['add_ban_ip_addr']) {
$ban_ip_addr = "'" . addslashes($HTTP_POST_VARS['add_ban_ip_addr']) . "'";
//check admin ip address
if ($HTTP_POST_VARS['add_ban_ip_addr'] == $REMOTE_ADDR || $HTTP_POST_VARS['add_ban_ip_addr'] == $_SERVER["REMOTE_ADDR"] || ($HTTP_POST_VARS['add_ban_ip_addr'] == $_ENV["REMOTE_ADDR"] && $_ENV["REMOTE_ADDR"])) {
cpg_die(ERROR, $lang_banning_php['error_admin_ban'], __FILE__, __LINE__);
}
//check server ip adress
if ($HTTP_POST_VARS['add_ban_ip_addr'] == $SERVER_ADDR || $HTTP_POST_VARS['add_ban_ip_addr'] == $_SERVER["SERVER_ADDR"] || $HTTP_POST_VARS['add_ban_ip_addr'] == $_ENV["SERVER_ADDR"]) {
cpg_die(ERROR, $lang_banning_php['error_server_ban'], __FILE__, __LINE__);
}
//check illegal ip addresses
$ip_to_check = 'ip'.$HTTP_POST_VARS['add_ban_ip_addr'];
$ip_is_illegal = 0;
$illegal_ip = array('192.168.','10.','172.16.','172.17.','172.18.','172.19.','172.20.','172.21.','172.22.','172.23.','172.24.','172.25.','172.26.','172.27.','172.28.','172.29.','172.30.','172.31.','169.254.','127.', '192.0.','1.0.0.0','204.152.64.','204.152.65.');
foreach ($illegal_ip as $not_allowed_ip) {
if (strpos($ip_to_check,$not_allowed_ip) == 2){$ip_is_illegal++;}
}
//higher than 224 in first byte
for ($i = 224; $i <= 255; $i++) {
if (strpos($ip_to_check,$i.'.') == 2){$ip_is_illegal++;}
}
if ($ip_is_illegal != 0) {
cpg_die(ERROR, $lang_banning_php['error_ip_forbidden'], __FILE__, __LINE__);
}
} else {
$ban_ip_addr = 'NULL';
}
 
 
$ban_expires = $HTTP_POST_VARS['add_ban_expires'];
if ($ban_expires == '') {
$ban_expires = 'NULL';
} else {
$ban_expires = "'".$ban_expires.' 00:00:00'."'";
}
if ($ban_expires == '\' 00:00:00\'') {
$ban_expires = 'NULL';
}
 
 
if ($ban_expires < 0) { $ban_expires = 'NULL';}
// check if anything has been submit at all
if (!$HTTP_POST_VARS['add_ban_user_name'] && !$HTTP_POST_VARS['add_ban_ip_addr']) {
cpg_die(CRITICAL_ERROR, $lang_banning_php['error_specify'], __FILE__, __LINE__);
}
if ($ban_uid || $ban_ip_addr) {
db_query("INSERT INTO {$CONFIG['TABLE_BANNED']} (user_id, ip_addr, expiry) VALUES ($ban_uid, $ban_ip_addr, $ban_expires)");
} else {
cpg_die(CRITICAL_ERROR, $lang_banning_php['error_specify'], __FILE__, __LINE__);
}
} elseif (isset($HTTP_POST_VARS['delete_ban'])) {
if (isset($HTTP_POST_VARS['ban_id'])) {
$ban_id = (int)$HTTP_POST_VARS['ban_id'];
if ($ban_id) {
db_query("DELETE FROM {$CONFIG['TABLE_BANNED']} WHERE ban_id=$ban_id");
} else {
cpg_die(CRITICAL_ERROR, $lang_banning_php['error_ban_id'], __FILE__, __LINE__);
}
}
} elseif (isset($HTTP_POST_VARS['edit_ban'])) {
if (isset($HTTP_POST_VARS['ban_id'])) {
$ban_id = (int)$HTTP_POST_VARS['ban_id'];
if ($ban_id) {
if ($HTTP_POST_VARS['edit_ban_user_name']) {
if (!($ban_uid = get_userid($HTTP_POST_VARS['edit_ban_user_name']))) {
cpg_die(CRITICAL_ERROR, $lang_banning_php['error_user'] . ' ' . $HTTP_POST_VARS['edit_ban_user_name'], __FILE__, __LINE__);
}
} else {
$ban_uid = 'NULL';
}
 
if (isset($HTTP_POST_VARS['edit_ban_ip_addr'])) {
$ban_ip_addr = "'" . addslashes($HTTP_POST_VARS['edit_ban_ip_addr']) . "'";
} else {
$ban_ip_addr = 'NULL';
}
 
$ban_expires = $HTTP_POST_VARS['edit_ban_expires'];
if ($ban_expires == '') {
$ban_expires = 'NULL';
} else {
$ban_expires = "'".$ban_expires."'";
}
 
if ((int)$ban_expires < 0) $ban_expires = 'NULL';
 
if ($ban_uid || $ban_ip_addr) {
db_query("UPDATE {$CONFIG['TABLE_BANNED']} SET user_id=$ban_uid, ip_addr=$ban_ip_addr, expiry=$ban_expires where ban_id=$ban_id");
} else {
cpg_die(CRITICAL_ERROR, $lang_banning_php['error_specify'], __FILE__, __LINE__);
}
} else {
cpg_die(CRITICAL_ERROR, $lang_banning_php['error_ban_id'], __FILE__, __LINE__);
}
}
}
}
 
pageheader($lang_banning_php['title']);
 
$signature = 'Coppermine Photo Gallery ' . COPPERMINE_VERSION;
 
starttable('100%', "{$lang_banning_php['title']} - $signature", 4);
create_banlist();
endtable();
$calendar_link_new = 'calendar.php?action=banning&month='.ltrim(strftime('%m'),'0').'&year='.strftime('%Y');
print <<<EOT
<script language="Javascript">
var calendarWindow = null;
var calendarFormat = 'y-m-d';
 
function getCalendar(in_dateField)
{
if (calendarWindow && !calendarWindow.closed) {
alert('Calendar window already open. Attempting focus...');
try {
calendarWindow.focus();
}
catch(e) {}
 
return false;
}
 
var cal_width = 300;
var cal_height = 200;
 
// IE needs less space to make this thing
if ((document.all) && (navigator.userAgent.indexOf("Konqueror") == -1)) {
cal_width = 290;
}
 
calendarTarget = in_dateField;
calendarWindow = window.open('{$calendar_link_new}', 'dateSelectorPopup','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=1,dependent=no,width='+cal_width+',height='+cal_height);
return false;
}
 
function killCalendar()
{
if (calendarWindow && !calendarWindow.closed) {
calendarWindow.close();
}
}
</script>
EOT;
print "<br />\n";
starttable('100%', $lang_banning_php['add_new'], 4);
echo <<<EOT
<tr>
<th class="tableh2">{$lang_banning_php['user_name']}</th>
<th class="tableh2">{$lang_banning_php['ip_address']}</th>
<th class="tableh2">{$lang_banning_php['expiry']}</th>
<th class="tableh2"></th>
</tr>
 
<tr>
<form action="$PHP_SELF" method="post" name="list">
<td class="tableb" valign="middle">
<input type="text" class="textinput" style="width: 100%" name="add_ban_user_name" value="">
</td>
<td class="tableb" valign="middle">
<input type="text" class="textinput" name="add_ban_ip_addr" value="" size="15" maxlength="15" />
</td>
<td class="tableb" valign="middle">
<input type="text" class="listbox_lang" name="add_ban_expires" value="" size="20" readonly="readonly" onclick="return getCalendar(document.list.add_ban_expires);" style="cursor:pointer" title="select date" />
</td>
<td class="tableb" valign="top">
<input type="submit" class="button" name="add_ban" value="{$lang_banning_php['add_ban']}" />
</td>
</form>
</tr>
EOT;
endtable();
print "<form action=\"http://ws.arin.net/cgi-bin/whois.pl\" method=\"post\" name=\"lookup\" target=\"_blank\">\n";
 
//starttable('-2', $lang_banning_php['lookup_ip'], 2);
starttable('-2');
print "<tr>\n";
print "<td class=\"tablef\">\n";
print "<b>".$lang_banning_php['lookup_ip']."</b>\n";
print "</td>\n";
print "<td class=\"tableb\">\n";
print "<input type=\"text\" class=\"textinput\" size=\"20\" name=\"queryinput\" value=\"\" maxlength=\"15\" />\n";
print "</td>\n";
print "<td class=\"tableb\">\n";
print "<input type=\"submit\" class=\"button\" name=\"submit\" value=\"{$lang_banning_php['submit']}\" >\n";
print "</td>\n";
print "</tr>\n";
endtable();
print "</form>\n";
 
pagefooter();
ob_end_flush();
 
?>