DataObjects/Core_person_signup.php
[Pman.Core] / DataObjects / Core_person_signup.php
index c13b74c..3e24f91 100644 (file)
@@ -1,4 +1,4 @@
- <?php
+<?php
 /**
  * Table Definition for Person
  */
@@ -23,7 +23,7 @@ class Pman_Core_DataObjects_Core_person_signup extends DB_DataObject
     
     public $honor;                            // string(128)  not_null
     public $verify_key;                      // int(11)
-
+    public $verified;
     
 
     public $created_dt;                      // datetime(19)  binary
@@ -31,6 +31,56 @@ class Pman_Core_DataObjects_Core_person_signup extends DB_DataObject
     
     
     
+    
+    function verify($key)
+    {
+        // if key matches verify_key
+        // copy into person or other entity...
+        // and delete....
+        if($this->get("verify_key",$key)){
+            $p = DB_DataObject::factory('person');
+            $p->setFrom(array(
+                'honor'=>$this->honor,
+                'name'=>$this->name,
+                'email'=>$this->email,
+                'firstname'=>$this->firstname,
+                'lastname'=>$this->lastname,
+                'firstname_alt'=>$this->firstname_alt,
+                'lastname_alt'=>$this->lastname_alt));
+
+            if($p->insert()){
+                
+                $temp_pwd = $p->generatePassword();
+
+                $this->delete();
+
+                //login
+                @session_start();
+        
+                $_SESSION['Hydra']['authUser'] = $p ? serialize($p) : false;
+
+                //mail pwd
+                $c = DB_DataObject::factory('core_email');
+                if (!$c->get('name', 'CORE_PERSON_SIGNUP_CONGRATULATION')) {
+                    $this->jerr("can not find template");
+                }
+                $ret = $c->send(array(
+                   'rcpts' => $this->email,
+                   'honor' => $this->honor.". ".$this->lastname,
+                   'password' => $temp_pwd
+                ), true);
+         
+                if (is_object($ret)) {
+                    return false;
+                }
+                return true;
+            }else{
+                return false;
+            }   
+        }
+        return false;
+        
+    }
 }
 
     
\ No newline at end of file