X-Git-Url: https://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2FObj%2Fauth.phh;h=f822bef4ec4a1e210494da326916410ec922a07c;hb=c4e9a616f01a3c7ec5069f0e7ddfea3e915925de;hp=a52bc7859aec2af04dc25348cb48cc1a155bec62;hpb=eaa164b2f8408a510d7780c15614dfa6993f7817;p=brisk.git diff --git a/web/Obj/auth.phh b/web/Obj/auth.phh index a52bc78..f822bef 100644 --- a/web/Obj/auth.phh +++ b/web/Obj/auth.phh @@ -2,7 +2,7 @@ /* * brisk - auth.phh * - * Copyright (C) 2006-2008 Matteo Nastasi + * Copyright (C) 2006-2009 Matteo Nastasi * mailto: nastasi@alternativeoutput.it * matteo.nastasi@milug.org * web: http://www.alternativeoutput.it @@ -274,11 +274,13 @@ class Challenges { class LoginDBItem { var $login; var $pass; + var $email; - function LoginDBItem($login, $pass) + function LoginDBItem($login, $pass, $email) { $this->login = $login; $this->pass = $pass; + $this->email = $email; } } @@ -296,10 +298,10 @@ class LoginDB { require("$DOCUMENT_ROOT/Etc/brisk_auth.conf.pho"); } else { - $this->item = array( new LoginDBItem("uno", md5("one")), - new LoginDBItem("due", md5("two")), - new LoginDBItem("a_b", md5("abb")), - new LoginDBItem("tre", md5("three")) ); + $this->item = array( new LoginDBItem("uno", md5("one"), "pippo@pluto.com"), + new LoginDBItem("due", md5("two"), "pippo@pluto.com"), + new LoginDBItem("a_b", md5("abb"), "pippo@pluto.com"), + new LoginDBItem("tre", md5("three"), "pippo@pluto.com") ); } $this->item_n = count($this->item); log_main("LoginDB create:end"); @@ -307,7 +309,7 @@ class LoginDB { function login_exists($login) { - log_main("login_verify"); + log_main("login_exists: ".$login); /* check the existence of the nick in the LoginDB */ for ($i = 0 ; $i < $this->item_n ; $i++) { @@ -319,14 +321,29 @@ class LoginDB { return (FALSE); } + function getmail($login) + { + log_main("getmail"); + + /* check the existence of the nick in the LoginDB */ + for ($i = 0 ; $i < $this->item_n ; $i++) { + if (strcasecmp($this->item[$i]->login, $login) == 0) { + log_main("login[".$i."]: ".$this->item[$i]->login); + return ($this->item[$i]->email); + } + } + return (FALSE); + } + function login_verify($login, $pass) { $ret = FALSE; - log_main("login_verify"); + log_main("login_verify: ".$login); /* check the existence of the nick in the LoginDB */ 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);