r972: Rebranding from Iris Studios to Blue Static
[bugdar.git] / register.php
1 <?php
2 /*=====================================================================*\
3 || ###################################################################
4 || # Bugdar [#]version[#]
5 || # Copyright ©2002-[#]year[#] Blue Static
6 || #
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 [#]gpl[#] of the License.
10 || #
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
14 || # more details.
15 || #
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 \*=====================================================================*/
21
22 $fetchtemplates = array(
23 'register'
24 );
25
26 define('SVN', '$Id$');
27
28 $focus['user'] = 'focus';
29
30 require_once('./global.php');
31 require_once('./includes/api_user.php');
32
33 require_once('./includes/class_api_error.php');
34 APIError(array(new API_Error_Handler($message), 'user_cumulative'));
35
36 // ###################################################################
37
38 if ($_POST['do'] == 'insert')
39 {
40 if ($bugsys->userinfo['userid'])
41 {
42 $message->error($lang->string('Sorry, you are already registered.'));
43 }
44
45 if (!$bugsys->options['allownewreg'])
46 {
47 $message->error($lang->string('Sorry, we don\'t allow new registrations.'));
48 }
49
50 if ($bugsys->in['email'] != $bugsys->in['confirmemail'])
51 {
52 $message->add_error($lang->string('The emails you entered do not match.'));
53 }
54
55 if ($bugsys->in['password'] != $bugsys->in['confirmpassword'])
56 {
57 $message->add_error($lang->string('The passwords you entered did not match.'));
58 }
59
60 if (!$message->items)
61 {
62 $salt = $funct->rand(15);
63
64 if ($bugsys->options['verifyemail'])
65 {
66 $usergroupid = 3;
67 }
68 else
69 {
70 if ($bugsys->options['moderatenewusers'])
71 {
72 $usergroupid = 4;
73 }
74 else
75 {
76 $usergroupid = 2;
77 }
78 }
79
80 $user = new UserAPI($bugsys);
81 $user->set('email', $bugsys->in['email']);
82 $user->set('displayname', $bugsys->in['displayname']);
83 $user->set('password', $bugsys->in['password']);
84 $user->set('showemail', $bugsys->in['showemail']);
85 $user->set('showcolours', 1);
86 $user->set('languageid', $bugsys->in['languageid']);
87 $user->set('usergroupid', $usergroupid);
88 $user->insert();
89
90 $userid = $user->insertid;
91
92 // Verify email address
93 if ($usergroupid == 3)
94 {
95 $activationid = $funct->rand(25);
96
97 $db->query("INSERT INTO " . TABLE_PREFIX . "useractivation (userid, activator, dateline, usergroupid) VALUES ($userid, '$activationid', " . TIMENOW . ", 2)");
98
99 $mail->to = $bugsys->in['email'];
100 $mail->subject = sprintf($lang->string('Welcome to %1$s'), $bugsys->options['trackertitle']);
101 $mail->body = sprintf($lang->string('Hi %1$s,
102
103 Welcome to the %2$s tracker. Before you can begin posting bug reports, you\'ll need to activae your account. To do this, please click this link:
104
105 %3$s/register.php?do=activate&userid=%4$s&activator=%5$s'),
106
107 $bugsys->in['displayname'],
108 $bugsys->options['trackertitle'],
109 $bugsys->options['trackerurl'],
110 $userid,
111 $activationid
112 );
113
114 $mail->send();
115
116 $message->message($lang->string('You now need to activate your account via email.'));
117 }
118 else if ($usergroupid == 4 OR $usergroupid == 2)
119 {
120 if ($bugsys->options['sendwelcomemail'])
121 {
122 $mail->to = $bugsys->in['email'];
123 $mail->subject = sprintf($lang->string('Welcome to %1$s'), $bugsys->options['trackertitle']);
124 $mail->body = sprintf($lang->string('Hi %1$s,
125
126 Thank you for taking the time to register at %2$s. We look forward to your contributations to making our products better.
127
128 If you have any questions, please don\'t hesitate to contact the webmaster.'),
129 $bugsys->in['displayname'],
130 $bugsys->options['trackertitle']
131 );
132
133 $mail->send();
134 }
135
136 if ($usergroupid == 4)
137 {
138 $message->message($lang->string('Your account is pending approval.'));
139 }
140 else
141 {
142 $message->message($lang->string('Thank you for registering. You may now use your account.'));
143 }
144 }
145 }
146 else
147 {
148 $_REQUEST['do'] = '';
149 $show['errors'] = true;
150 $message->error_list_process();
151 }
152 }
153
154 // ###################################################################
155
156 if (empty($_REQUEST['do']))
157 {
158 if ($bugsys->userinfo['userid'])
159 {
160 $message->error($lang->string('Sorry, you are already registered.'));
161 }
162
163 if (!$bugsys->options['allownewreg'])
164 {
165 $message->error($lang->string('Sorry, we don\'t allow new registrations.'));
166 }
167
168 foreach ($bugsys->datastore['language'] AS $value => $temp)
169 {
170 $label = $temp['title'];
171 $selected = ($value == $bugsys->in['languageid']);
172 eval('$opts .= "' . $template->fetch('selectoption') . '";');
173 }
174
175 eval('$template->flush("' . $template->fetch('register') . '");');
176 }
177
178 // ###################################################################
179
180 if ($_REQUEST['do'] == 'activate')
181 {
182 $bugsys->input_clean('userid', TYPE_UINT);
183 if ($useractivation = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "useractivation WHERE userid = " . $bugsys->in['userid'] . " AND activator = '" . $bugsys->in['activator'] . "'"))
184 {
185 $user = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "user WHERE userid = " . $bugsys->in['userid']);
186 $db->query("UPDATE " . TABLE_PREFIX . "user SET usergroupid = $useractivation[usergroupid] WHERE userid = " . $bugsys->in['userid']);
187 $db->query("DELETE FROM " . TABLE_PREFIX . "useractivation WHERE userid = " . $bugsys->in['userid']);
188
189 if ($bugsys->options['sendwelcomemail'])
190 {
191 $mail->to = $user['email'];
192 $mail->subject = sprintf($lang->string('Welcome to %1$s'), $bugsys->options['trackertitle']);
193 $mail->body = sprintf($lang->string('Hi %1$s,
194
195 Thank you for taking the time to register at %2$s. We look forward to your contributations to making our products better.
196
197 If you have any questions, please don\'t hesitate to contact the webmaster.'),
198 $user['displayname'],
199 $bugsys->options['trackertitle']
200 );
201 $mail->send();
202 }
203
204 $message->message($lang->string('Your account is now activated and you can now login.'));
205 }
206 else
207 {
208 $message->error($lang->string('Sorry, we could not match your registration string. Please make sure you entered the correct URL.'));
209 }
210 }
211
212 /*=====================================================================*\
213 || ###################################################################
214 || # $HeadURL$
215 || # $Id$
216 || ###################################################################
217 \*=====================================================================*/
218 ?>