X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=DataObjects%2FCore_person_signup.php;h=7b3d7e0992a0e25c2084b57389899857e1db2188;hb=17a3570ac8868f28c9a97f6d119663007fb2468a;hp=588838e9edc0d53840dc857023ef8bbbe88b089a;hpb=4b7e60e4b00639f2a4032acf51e0e81ac57f8388;p=Pman.Core diff --git a/DataObjects/Core_person_signup.php b/DataObjects/Core_person_signup.php index 588838e9..7b3d7e09 100644 --- a/DataObjects/Core_person_signup.php +++ b/DataObjects/Core_person_signup.php @@ -1,19 +1,3 @@ -CREATE TABLE core_person_signup ( - id int(11) NOT NULL auto_increment, - PRIMARY KEY (id) -) ; - - -ALTER TABLE core_person_signup ADD COLUMN name varchar(128) NOT NULL DEFAULT ''; -ALTER TABLE core_person_signup ADD COLUMN honor varchar(32) NOT NULL DEFAULT ''; -ALTER TABLE core_person_signup ADD COLUMN firstname varchar(128) NOT NULL DEFAULT ''; -ALTER TABLE core_person_signup ADD COLUMN lastname varchar(128) NOT NULL DEFAULT ''; -ALTER TABLE core_person_signup ADD COLUMN firstname_alt varchar(128) NOT NULL DEFAULT ''; -ALTER TABLE core_person_signup ADD COLUMN lastname_alt varchar(128) NOT NULL DEFAULT ''; - -ALTER TABLE core_person_signup ADD COLUMN email varchar(256) NOT NULL DEFAULT ''; -ALTER TABLE core_person_signup ADD COLUMN verify_key varchar(256) NOT NULL DEFAULT ''; -ALTER TABLE core_person_signup ADD COLUMN created_dt DATETIME NOT NULL; whereAdd("verify_key = '".$key."'"); + if(!$this->get("verify_key",$key)){ + var_dump($this); + exit(); + $p = DB_DataObject::factory('person'); + $p->honor = $this->honor; + $p->name = $this->name; + $p->email = $this->email; + $p->firstname = $this->firstname; + $p->lastname = $this->lastname; + $p->firstname_alt = $this->firstname_alt; + $p->lastname_alt = $this->lastname_alt; + $temp_pwd = $p->generatePassword(); + //$temp_pwd = mt_rand(100000,999999); + //$p->passwd = $temp_pwd; + if($p->insert()){ + + $this->delete(); + + //login + @session_start(); + + $_SESSION['Hydra']['authUser'] = $p ? serialize($p) : false; + + //mail pwd + $htmlStr = ""; + $htmlStr .= "Dear ".$p->honor.".".$p->lastname."

"; + $htmlStr .= "Congratulations on Joining HydRa.

"; + $htmlStr .= "If you need to access the system again please log in using the password "; + $htmlStr .= $temp_pwd; + + $name = "Roojs"; + $email_sender = "no-reply@roojs.com"; + $subject = "Congratulations"; + $recipient_email = $p->email; + + var_dump($p->email); + exit(); + + $headers = "MIME-Version: 1.0\r\n"; + $headers .= "Content-type: text/html; charset=utf-8\r\n"; + $headers .= "From: {$name} "; + $headers .= "<"; + $headers .= $email_sender; + $headers .= ">\r\n"; + + $body = $htmlStr; + if(!mail($recipient_email, $subject, $body, $headers)){ + error_log("Sending failed."); + } + }else{ + error_log("db insert error"); + return false; + } + } + return false; + + } } \ No newline at end of file