OSDN Git Service

preparation for 4.0 trunk: move whole scripts just under trunk directory
[nucleus-jp/nucleus-jp-ancient.git] / utf8 / nucleus / libs / BAN.php
diff --git a/utf8/nucleus/libs/BAN.php b/utf8/nucleus/libs/BAN.php
deleted file mode 100755 (executable)
index 7449f41..0000000
+++ /dev/null
@@ -1,107 +0,0 @@
-<?php
-/*
- * Nucleus: PHP/MySQL Weblog CMS (http://nucleuscms.org/)
- * Copyright (C) 2002-2011 The Nucleus Group
- *
- * 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.
- * (see nucleus/documentation/index.html#license for more info)
- */
-/**
- * PHP class responsible for ban-management.
- *
- * @license http://nucleuscms.org/license.txt GNU General Public License
- * @copyright Copyright (C) 2002-2011 The Nucleus Group
- * @version $Id$
- * $NucleusJP: BAN.php,v 1.6 2006/07/20 08:01:52 kimitake Exp $
- */
-
-class BAN {
-
-       /**
-         * Checks if a given IP is banned from commenting/voting
-         *
-         * Returns 0 when not banned, or a BANINFO object containing the
-         * message and other information of the ban
-         */
-       function isBanned($blogid, $ip) {
-               $blogid = intval($blogid);
-               $query = 'SELECT * FROM '.sql_table('ban').' WHERE blogid='.$blogid;
-               $res = sql_query($query);
-               while ($obj = sql_fetch_object($res)) {
-                       $found = strpos ($ip, $obj->iprange);
-                       if (!($found === false))
-                               // found a match!
-                                       return new BANINFO($obj->iprange, $obj->reason);
-               }
-               return 0;
-       }
-
-       /**
-         * Adds a new ban to the banlist. Returns 1 on success, 0 on error
-         */
-       function addBan($blogid, $iprange, $reason) {
-               global $manager;
-
-               $blogid = intval($blogid);
-
-               $manager->notify(
-                       'PreAddBan',
-                       array(
-                               'blogid' => $blogid,
-                               'iprange' => &$iprange,
-                               'reason' => &$reason
-                       )
-               );
-
-               $query = 'INSERT INTO '.sql_table('ban')." (blogid, iprange, reason) VALUES "
-                          . "($blogid,'".sql_real_escape_string($iprange)."','".sql_real_escape_string($reason)."')";
-               $res = sql_query($query);
-
-               $manager->notify(
-                       'PostAddBan',
-                       array(
-                               'blogid' => $blogid,
-                               'iprange' => $iprange,
-                               'reason' => $reason
-                       )
-               );
-
-               return $res ? 1 : 0;
-       }
-
-       /**
-         * Removes a ban from the banlist (correct iprange is needed as argument)
-         * Returns 1 on success, 0 on error
-         */
-       function removeBan($blogid, $iprange) {
-               global $manager;
-               $blogid = intval($blogid);
-
-               $manager->notify('PreDeleteBan', array('blogid' => $blogid, 'range' => $iprange));
-
-               $query = 'DELETE FROM '.sql_table('ban')." WHERE blogid=$blogid and iprange='" .sql_real_escape_string($iprange). "'";
-               sql_query($query);
-
-               $result = (sql_affected_rows() > 0);
-
-               $manager->notify('PostDeleteBan', array('blogid' => $blogid, 'range' => $iprange));
-
-               return $result;
-       }
-}
-
-class BANINFO {
-       var $iprange;
-       var $message;
-
-       function BANINFO($iprange, $message) {
-               $this->iprange = $iprange;
-               $this->message = $message;
-       }
-}
-
-
-?>
\ No newline at end of file