2 /*=====================================================================*\
3 || ###################################################################
5 || # Copyright ©2002-2007 Blue Static
7 || # This program is free software; you can redistribute it and/or modify
8 || # it under the terms of the GNU General Public License as published by
9 || # the Free Software Foundation; version 2 of the License.
11 || # This program is distributed in the hope that it will be useful, but
12 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 || # You should have received a copy of the GNU General Public License along
17 || # with this program; if not, write to the Free Software Foundation, Inc.,
18 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 || ###################################################################
20 \*=====================================================================*/
22 $fetchtemplates = array(
26 define('SVN', '$Id$');
28 $focus['user
'] = 'focus
';
30 require_once('./global.php
');
31 require_once('./includes
/api_user
.php
');
33 require_once('./includes
/class_api_error
.php
');
34 APIError(array(new API_Error_Handler($message), 'user_cumulative
'));
36 // ###################################################################
38 if ($_POST['do'] == 'insert
')
40 if (bugdar::$userinfo['userid
'])
42 $message->error(T('Sorry
, you are already registered
.'));
45 if (!bugdar::$options['allownewreg
'])
47 $message->error(T('Sorry
, we don\'t allow
new registrations
.'));
50 if ($bugsys->in['email
'] != $bugsys->in['confirmemail
'])
52 $message->addError(T('The emails you entered
do not match
.'));
55 if ($bugsys->in['password
'] != $bugsys->in['confirmpassword
'])
57 $message->addError(T('The passwords you entered did not match
.'));
60 if (bugdar::$options['verifyemail
'])
66 if (bugdar::$options['moderatenewusers
'])
76 $user = new UserAPI($bugsys);
77 $user->set('email
', $bugsys->in['email
']);
78 $user->set('displayname
', $bugsys->in['displayname
']);
79 $user->set('password
', $bugsys->in['password
']);
80 $user->set('showemail
', $bugsys->in['showemail
']);
81 $user->set('showcolors
', 1);
82 $user->set('languageid
', $bugsys->in['languageid
']);
83 $user->set('timezone
', bugdar::$options['defaulttimezone
']);
84 $user->set('usergroupid
', $usergroupid);
86 if (!$message->hasErrors())
90 $userid = $user->insertid;
92 // Verify email address
93 if ($usergroupid == 3)
95 $activationid = BSFunctions::random(25);
97 $db->query("INSERT INTO " . TABLE_PREFIX . "useractivation (userid, activator, dateline, usergroupid) VALUES ($userid, '$activationid', " . TIMENOW . ", 2)");
99 eval('$email = "' . $template->fetch(FetchEmailPath('activateaccount
.xml
', bugdar::$datastore['language
'][$bugsys->in['languageid
']]['langcode
'])) . '";');
100 $email = $bugsys->xml->parse($email);
101 $mail->setSubject($email['email']['subject']['value']);
102 $mail->setBodyText($email['email']['bodyText']['value']);
104 $mail->send($bugsys->in['email'], $bugsys->in['displayname']);
106 $message->message(T('You now need to activate your account via email.'));
108 else if ($usergroupid == 4 OR $usergroupid == 2)
110 if (bugdar::$options['sendwelcomemail'])
112 $displayName = $bugsys->in['displayname'];
113 eval('$email = "' . $template->fetch(FetchEmailPath('welcome
.xml
', bugdar::$datastore['language
'][$bugsys->in['languageid
']]['langcode
'])) . '";');
114 $email = $bugsys->xml->parse($email);
115 $mail->setSubject($email['email']['subject']['value']);
116 $mail->setBodyText($email['email']['bodyText']['value']);
117 $mail->send($bugsys->in['email'], $bugsys->in['displayname']);
120 if ($usergroupid == 4)
122 $message->message(T('Your account is pending approval.'));
126 $message->message(T('Thank you for registering. You may now use your account.'));
132 $_REQUEST['do'] = '';
133 $show['errors'] = true;
137 // ###################################################################
139 if (empty($_REQUEST['do']))
141 if (bugdar::$userinfo['userid'])
143 $message->error(T('Sorry, you are already registered.'));
146 if (!bugdar::$options['allownewreg'])
148 $message->error(T('Sorry, we don\'t allow new registrations.'));
151 foreach (bugdar::$datastore['language'] AS $value => $temp)
153 $label = $temp['title'];
154 $selected = ($value == $bugsys->in['languageid']);
155 eval('$opts .= "' . $template->fetch('selectoption
') . '";');
158 eval('$template->flush("' . $template->fetch('register
') . '");');
161 // ###################################################################
163 if ($_REQUEST['do'] == 'activate')
165 $bugsys->input_clean('userid', TYPE_UINT);
166 if ($useractivation = $db->query_first("SELECT
* FROM
" . TABLE_PREFIX . "useractivation WHERE userid
= " . $bugsys->in['userid'] . " AND activator
= '" . $bugsys->input_escape('activator
') . "'"))
168 $user = $db->query_first("SELECT
* FROM
" . TABLE_PREFIX . "user WHERE userid
= " . $bugsys->in['userid']);
169 $db->query("UPDATE
" . TABLE_PREFIX . "user SET usergroupid
= $useractivation[usergroupid
] WHERE userid
= " . $bugsys->in['userid']);
170 $db->query("DELETE FROM
" . TABLE_PREFIX . "useractivation WHERE userid
= " . $bugsys->in['userid']);
172 if (bugdar::$options['sendwelcomemail'])
174 $displayName = $user['displayname'];
175 eval('$email = "' . $template->fetch(FetchEmailPath('welcome
.xml
', bugdar::$datastore['language
'][$user['languageid
']]['langcode
'])) . '";');
176 $email = $bugsys->xml->parse($email);
177 $mail->setSubject($email['email']['subject']['value']);
178 $mail->setBodyText($email['email']['bodyText']['value']);
179 $mail->send($user['email'], $user['displayname']);
182 $message->message(T('Your account is now activated and you can now login.'));
186 $message->error(T('Sorry, we could not match your registration string. Please make sure you entered the correct URL.'));
190 /*=====================================================================*\
191 || ###################################################################
194 || ###################################################################
195 \*=====================================================================*/