]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/EmailRegistration/emailregister.php
2d32b40456e891225878696012e76330e51645a3
[quix0rs-gnu-social.git] / plugins / EmailRegistration / emailregister.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2011, StatusNet, Inc.
5  *
6  * Register a user by their email address
7  *
8  * PHP version 5
9  *
10  * This program is free software: you can redistribute it and/or modify
11  * it under the terms of the GNU Affero General Public License as published by
12  * the Free Software Foundation, either version 3 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Affero General Public License for more details.
19  *
20  * You should have received a copy of the GNU Affero General Public License
21  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22  *
23  * @category  Email registration
24  * @package   StatusNet
25  * @author    Evan Prodromou <evan@status.net>
26  * @copyright 2011 StatusNet, Inc.
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
28  * @link      http://status.net/
29  */
30
31 if (!defined('STATUSNET')) {
32     // This check helps protect against security problems;
33     // your code file can't be executed directly from the web.
34     exit(1);
35 }
36
37 /**
38  * Email registration
39  *
40  * There are four cases where we're called:
41  *
42  * 1. GET, no arguments. Initial registration; ask for an email address.
43  * 2. POST, email address argument. Initial registration; send an email to confirm.
44  * 3. GET, code argument. Confirming an invitation or a registration; look them up,
45  *    create the relevant user if possible, login as that user, and
46  *    show a password-entry form.
47  * 4. POST, password argument. After confirmation, set the password for the new
48  *    user, and redirect to a registration complete action with some instructions.
49  *
50  * @category  Action
51  * @package   StatusNet
52  * @author    Evan Prodromou <evan@status.net>
53  * @copyright 2011 StatusNet, Inc.
54  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
55  * @link      http://status.net/
56  */
57 class EmailregisterAction extends Action
58 {
59     const NEWEMAIL = 1;
60     const SETPASSWORD = 2;
61     const NEWREGISTER = 3;
62     const CONFIRMINVITE = 4;
63     const CONFIRMREGISTER = 5;
64
65     const CONFIRMTYPE = 'register';
66
67     protected $user;
68     protected $email;
69     protected $code;
70     protected $invitation;
71     protected $confirmation;
72     protected $password1;
73     protected $password2;
74     protected $state;
75     protected $error;
76     protected $complete;
77
78     function prepare($argarray)
79     {
80         parent::prepare($argarray);
81
82         if ($this->isPost()) {
83
84             $this->checkSessionToken();
85
86             $this->email = $this->trimmed('email');
87
88             if (!empty($this->email)) {
89                 $this->email = common_canonical_email($this->email);
90                 $this->state = self::NEWEMAIL;
91             } else {
92                 $this->state = self::SETPASSWORD;
93
94                 $this->code = $this->trimmed('code');
95
96                 if (empty($this->code)) {
97                     // TRANS: Client exception thrown when no confirmation code was provided.
98                     throw new ClientException(_m('No confirmation code.'));
99                 }
100
101                 $this->invitation = Invitation::staticGet('code', $this->code);
102
103                 if (empty($this->invitation)) {
104
105                     $this->confirmation = Confirm_address::staticGet('code', $this->code);
106
107                     if (empty($this->confirmation)) {
108                         // TRANS: Client exception thrown when given confirmation code was not issued.
109                         throw new ClientException(_m('No such confirmation code.'), 403);
110                     }
111                 }
112
113                 $this->password1 = $this->trimmed('password1');
114                 $this->password2 = $this->trimmed('password2');
115
116                 $this->tos = $this->boolean('tos');
117             }
118         } else { // GET
119             $this->code = $this->trimmed('code');
120
121             if (empty($this->code)) {
122                 $this->state = self::NEWREGISTER;
123             } else {
124                 $this->invitation = Invitation::staticGet('code', $this->code);
125                 if (!empty($this->invitation)) {
126                     $this->state = self::CONFIRMINVITE;
127                 } else {
128                     $this->state = self::CONFIRMREGISTER;
129                     $this->confirmation = Confirm_address::staticGet('code', $this->code);
130
131                     if (empty($this->confirmation)) {
132                         // TRANS: Client exception thrown when given confirmation code was not issued.
133                         throw new ClientException(_m('No such confirmation code.'), 405);
134                     }
135                 }
136             }
137         }
138
139         return true;
140     }
141
142     function title()
143     {
144         switch ($this->state) {
145         case self::NEWREGISTER:
146         case self::NEWEMAIL:
147             // TRANS: Title for registration page.
148             return _m('TITLE','Register');
149             break;
150         case self::SETPASSWORD:
151         case self::CONFIRMINVITE:
152         case self::CONFIRMREGISTER:
153             // TRANS: Title for page where to register with a confirmation code.
154             return _m('TITLE','Complete registration');
155             break;
156         }
157     }
158
159     /**
160      * Handler method
161      *
162      * @param array $argarray is ignored since it's now passed in in prepare()
163      *
164      * @return void
165      */
166
167     function handle($argarray=null)
168     {
169         $cur = common_current_user();
170
171         if (!empty($cur)) {
172             common_redirect(common_local_url('all', array('nickname' => $cur->nickname)));
173             return;
174         }
175
176         switch ($this->state) {
177         case self::NEWREGISTER:
178             $this->showRegistrationForm();
179             break;
180         case self::NEWEMAIL:
181             $this->registerUser();
182             break;
183         case self::CONFIRMINVITE:
184             $this->confirmRegistration();
185             break;
186         case self::CONFIRMREGISTER:
187             $this->confirmRegistration();
188             break;
189         case self::SETPASSWORD:
190             $this->setPassword();
191             break;
192         }
193         return;
194     }
195
196     function showRegistrationForm()
197     {
198         $this->form = new EmailRegistrationForm($this, $this->email);
199         $this->showPage();
200     }
201
202     function registerUser()
203     {
204         try {
205             $confirm = EmailRegistrationPlugin::registerEmail($this->email);
206         } catch (ClientException $ce) {
207             $this->error = $ce->getMessage();
208             $this->showRegistrationForm();
209             return;
210         }
211
212         EmailRegistrationPlugin::sendConfirmEmail($confirm);
213
214         // TRANS: Confirmation text after initial registration.
215         // TRANS: %s an e-mail address.
216         $prompt = sprintf(_m('An email was sent to %s to confirm that address. Check your email inbox for instructions.'),
217                           $this->email);
218
219         $this->complete = $prompt;
220
221         $this->showPage();
222     }
223
224     function confirmRegistration()
225     {
226         if (!empty($this->invitation)) {
227             $email = $this->invitation->address;
228         } else if (!empty($this->confirmation)) {
229             $email = $this->confirmation->address;
230         }
231
232         $nickname = $this->nicknameFromEmail($email);
233
234         $this->form = new ConfirmRegistrationForm($this,
235                                                   $nickname,
236                                                   $email,
237                                                   $this->code);
238         $this->showPage();
239     }
240
241     function setPassword()
242     {
243         if (Event::handle('StartRegistrationTry', array($this))) {
244             if (!empty($this->invitation)) {
245                 $email = trim($this->invitation->address);
246             } else if (!empty($this->confirmation)) {
247                 $email = trim($this->confirmation->address);
248             } else {
249                 throw new Exception('No confirmation thing.');
250             }
251
252             if (!$this->tos) {
253                 // TRANS: Error text when trying to register without agreeing to the terms.
254                 $this->error = _m('You must accept the terms of service and privacy policy to register.');
255                 return;
256             } else if (empty($this->password1)) {
257                 // TRANS: Error text when trying to register without a password.
258                 $this->error = _m('You must set a password');
259             } else if (strlen($this->password1) < 6) {
260                 // TRANS: Error text when trying to register with too short a password.
261                 $this->error = _m('Password must be 6 or more characters.');
262             } else if ($this->password1 != $this->password2) {
263                 // TRANS: Error text when trying to register without providing the same password twice.
264                 $this->error = _m('Passwords do not match.');
265             }
266
267             if (!empty($this->error)) {
268                 $nickname = $this->nicknameFromEmail($email);
269                 $this->form = new ConfirmRegistrationForm($this, $nickname, $this->email, $this->code);
270                 $this->showPage();
271                 return;
272             }
273
274             $nickname = $this->nicknameFromEmail($email);
275
276             try {
277                 $this->user = User::register(array('nickname' => $nickname,
278                                                    'email' => $email,
279                                                    'password' => $this->password1,
280                                                    'email_confirmed' => true));
281             } catch (ClientException $e) {
282                 $this->error = $e->getMessage();
283                 $nickname = $this->nicknameFromEmail($email);
284                 $this->form = new ConfirmRegistrationForm($this, $nickname, $this->email, $this->code);
285                 $this->showPage();
286                 return;
287             }
288
289             if (empty($this->user)) {
290                 throw new Exception('Failed to register user.');
291             }
292
293             common_set_user($this->user);
294             // this is a real login
295             common_real_login(true);
296
297             // Re-init language env in case it changed (not yet, but soon)
298             common_init_language();
299
300             if (!empty($this->invitation)) {
301                 $inviter = User::staticGet('id', $this->invitation->user_id);
302                 if (!empty($inviter)) {
303                     Subscription::start($inviter->getProfile(),
304                                         $this->user->getProfile());
305                 }
306
307                 $this->invitation->delete();
308             } else if (!empty($this->confirmation)) {
309                 $this->confirmation->delete();
310             } else {
311                 throw new Exception('No confirmation thing.');
312             }
313
314             Event::handle('EndRegistrationTry', array($this));
315         }
316
317         if (Event::handle('StartRegisterSuccess', array($this))) {
318             common_redirect(common_local_url('doc', array('title' => 'welcome')),
319                             303);
320             Event::handle('EndRegisterSuccess', array($this));
321         }
322     }
323
324     function sendConfirmEmail($confirm)
325     {
326         $sitename = common_config('site', 'name');
327
328         $recipients = array($confirm->address);
329
330         $headers['From'] = mail_notify_from();
331         $headers['To'] = trim($confirm->address);
332          // TRANS: Subject for confirmation e-mail.
333          // TRANS: %s is the StatusNet sitename.
334         $headers['Subject'] = sprintf(_m('Confirm your registration on %s'), $sitename);
335
336         $confirmUrl = common_local_url('register', array('code' => $confirm->code));
337
338          // TRANS: Body for confirmation e-mail.
339          // TRANS: %1$s is the StatusNet sitename, %2$s is the confirmation URL.
340         $body = sprintf(_m('Someone (probably you) has requested an account on %1$s using this email address.'.
341                           "\n".
342                           'To confirm the address, click the following URL or copy it into the address bar of your browser.'.
343                           "\n".
344                           '%2$s'.
345                           "\n".
346                           'If it was not you, you can safely ignore this message.'),
347                         $sitename,
348                         $confirmUrl);
349
350         mail_send($recipients, $headers, $body);
351     }
352
353     function showContent()
354     {
355         if ($this->complete) {
356             $this->elementStart('p', 'success');
357             $this->raw($this->complete);
358             $this->elementEnd('p');
359         } else {
360             if ($this->error) {
361                 $this->elementStart('p', 'error');
362                 $this->raw($this->error);
363                 $this->elementEnd('p');
364             }
365
366             if (!empty($this->form)) {
367                 $this->form->show();
368             }
369         }
370     }
371
372     /**
373      * Return true if read only.
374      *
375      * MAY override
376      *
377      * @param array $args other arguments
378      *
379      * @return boolean is read only action?
380      */
381     function isReadOnly($args)
382     {
383         return false;
384     }
385
386     function nicknameFromEmail($email)
387     {
388         return EmailRegistrationPlugin::nicknameFromEmail($email);
389     }
390
391     /**
392      * A local menu
393      *
394      * Shows different login/register actions.
395      *
396      * @return void
397      */
398     function showLocalNav()
399     {
400         $nav = new LoginGroupNav($this);
401         $nav->show();
402     }
403 }