X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=DataObjects%2FCore_person_signup.php;h=9e2f81bbdf142e2ddfbf9c60401fcbecdb62fe72;hb=0114e951620e728902457a35a2e75e85e76752ab;hp=4ecc42352e483b5b6206cb6e25e6695435cecca3;hpb=8526fdd221ee7fe2b3a7ad558e05d36d6e4babd9;p=Pman.Core diff --git a/DataObjects/Core_person_signup.php b/DataObjects/Core_person_signup.php index 4ecc4235..9e2f81bb 100644 --- a/DataObjects/Core_person_signup.php +++ b/DataObjects/Core_person_signup.php @@ -1,10 +1,10 @@ page; + $old = clone($this); + // this shold not really happen... + if($target->get('email', $this->email)){ + return false; + } + + $target->setFrom($this->toArray()); + + $target->insert(); + + $this->person_id = $target->id; + $this->person_table = $target->tableName(); + $this->update($old); + + if(!empty($this->inviter_id) && method_exists($target, 'createFriend')){ + $target->createFriend($this->inviter_id); + } + + return $target; + } - function verify($key) + function sendVerification($template, $roo) { - // if key matches verify_key - // copy into person or other entity... - // and delete.... + $admin = array(); + + $group = DB_DataObject::factory('groups'); + if($group->get('name', 'core-person-signup-bcc')){ + $member = DB_DataObject::factory('group_members'); + $member->group_id = $group->id; + $mids = $member->fetchAll('user_id'); + + $p = DB_DataObject::factory('Person'); + $p->whereAddIn('id', $mids, 'int'); + $admin = $p->fetchAll('email'); + } + + if(empty($admin)){ + $this->jerr("Please contact our administrators - system setting problem"); + } + + $content = array( + 'template' => $template, + 'person' => $this, + 'bcc' => $admin, + 'serverName' => $_SERVER['SERVER_NAME'], + 'baseURL' => $roo->baseURL + ); + + $sent = DB_DataObject::factory('core_email')->send($content); + if(!is_object($sent)){ + return true; + } + return $sent; + } + + function getEmailFrom() + { + if (empty($this->name)) { + return $this->email; + } + return '"' . addslashes($this->name) . '" <' . $this->email . '>'; } } - \ No newline at end of file