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