X-Git-Url: https://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2FObj%2Fdbase_file.phh;h=9461f1e99da381d267da84dfc4e06dcb5fc8d72b;hb=9878243b4e002b50ee444cf906b9e13faba4fe01;hp=d09f5df5a221c271e2cb8e07ead59fd56d2bc9af;hpb=9b4aaeb974e7f92e6e124bde29c78a1f5f8fb2b0;p=brisk.git diff --git a/web/Obj/dbase_file.phh b/web/Obj/dbase_file.phh index d09f5df..9461f1e 100644 --- a/web/Obj/dbase_file.phh +++ b/web/Obj/dbase_file.phh @@ -2,7 +2,7 @@ /* * brisk - dbase_file.phh * - * Copyright (C) 2006-2011 Matteo Nastasi + * Copyright (C) 2006-2012 Matteo Nastasi * mailto: nastasi@alternativeoutput.it * matteo.nastasi@milug.org * web: http://www.alternativeoutput.it @@ -26,15 +26,28 @@ require_once("${G_base}Obj/dbase_base.phh"); define(BRISK_AUTH_CONF, "brisk_auth.conf.pho"); -class LoginDB { +class BriskDB { var $item; var $item_n; - function LoginDB() + function BriskDB() + { + log_main("BriskDB create:start"); + + log_main("BriskDB create:end"); + } + + static function create() + { + $ret = new BriskDB(); + + return ($ret); + } + + function users_load() { GLOBAL $DOCUMENT_ROOT; - log_main("LoginDB create:start"); if (file_exists("$DOCUMENT_ROOT/Etc/".BRISK_AUTH_CONF)) { require("$DOCUMENT_ROOT/Etc/".BRISK_AUTH_CONF); @@ -46,7 +59,6 @@ class LoginDB { new LoginDBItem(4, "tre", md5("three"), "pippo@pluto.com", USER_FLAG_TY_NORM) ); } $this->item_n = count($this->item); - log_main("LoginDB create:end"); } function count() @@ -58,7 +70,7 @@ class LoginDB { { log_main("login_exists: ".$login); - /* check the existence of the nick in the LoginDB */ + /* check the existence of the nick in the BriskDB */ for ($i = 0 ; $i < $this->item_n ; $i++) { if (strcasecmp($this->item[$i]->login, $login) == 0) { log_main("login[".$i."]: ".$this->item[$i]->login); @@ -75,13 +87,11 @@ class LoginDB { return ($this->item[$idx]->login); } - function &getitem_bylogin($login, &$id) + function getitem_bylogin($login, &$id) { - GLOBAL $G_false; - log_main("login_exists: ".$login); - /* check the existence of the nick in the LoginDB */ + /* check the existence of the nick in the BriskDB */ for ($i = 0 ; $i < $this->item_n ; $i++) { if (strcasecmp($this->item[$i]->login, $login) == 0) { log_main("login[".$i."]: ".$this->item[$i]->login); @@ -91,14 +101,14 @@ class LoginDB { } } $id = -1; - return ($G_false); + return (FALSE); } function getmail($login) { log_main("getmail"); - /* check the existence of the nick in the LoginDB */ + /* check the existence of the nick in the BriskDB */ for ($i = 0 ; $i < $this->item_n ; $i++) { if (strcasecmp($this->item[$i]->login, $login) == 0) { log_main("login[".$i."]: ".$this->item[$i]->login); @@ -112,7 +122,7 @@ class LoginDB { { log_main("getmail"); - /* check the existence of the nick in the LoginDB */ + /* check the existence of the nick in the BriskDB */ for ($i = 0 ; $i < $this->item_n ; $i++) { if (strcasecmp($this->item[$i]->login, $login) == 0) { log_main("login[".$i."]: ".$this->item[$i]->login); @@ -122,22 +132,20 @@ class LoginDB { return (FALSE); } - function &login_verify($login, $pass) + function login_verify($login, $pass) { - GLOBAL $G_false; - - $ret = &$G_false; + $ret = FALSE; log_main("login_verify: ".$login); - /* check the existence of the nick in the LoginDB */ + /* check the existence of the nick in the BriskDB */ for ($i = 0 ; $i < $this->item_n ; $i++) { log_main("login_verify: LOOP"); if (strcasecmp($this->item[$i]->login, $login) == 0) { log_main("login[".$i."]: ".$this->item[$i]->login); /* if it exists check for a valid challenge */ - if (($a_sem = Challenges::lock_data()) != FALSE) { + if (($a_sem = Challenges::lock_data(TRUE)) != FALSE) { if (($chals = &Challenges::load_data()) != FALSE) { for ($e = 0 ; $e < $chals->item_n ; $e++) { @@ -158,7 +166,7 @@ class LoginDB { } if ($chals->ismod()) { - Challenges::save_data(&$chals); + Challenges::save_data($chals); } Challenges::unlock_data($a_sem); @@ -169,7 +177,11 @@ class LoginDB { return ($ret); } - -} // End class LoginDB + + function bin5_points_save($date, $table, $tidx, $action, $ucodes, $pts) + { + return TRUE; + } +} // End class BriskDB ?> \ No newline at end of file