3 * StatusNet - the distributed open-source microblogging tool
4 * Copyright (C) 2011, StatusNet, Inc.
6 * Email-based registration, as on the StatusNet OnDemand service
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.
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.
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/>.
23 * @category Email registration
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/
31 if (!defined('STATUSNET')) {
32 // This check helps protect against security problems;
33 // your code file can't be executed directly from the web.
38 * Email based registration plugin
40 * @category Email registration
42 * @author Brion Vibber <brionv@status.net>
43 * @author Evan Prodromou <evan@status.net>
44 * @copyright 2011 StatusNet, Inc.
45 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
46 * @link http://status.net/
48 class EmailRegistrationPlugin extends Plugin
50 const CONFIRMTYPE = 'register';
52 function onArgsInitialize(&$args)
54 if (array_key_exists('action', $args) && $args['action'] == 'register') {
56 $args['action'] = 'emailregister';
61 function onLoginAction($action, &$login)
63 if ($action == 'emailregister') {
70 function onStartLoadDoc(&$title, &$output)
72 $dir = dirname(__FILE__);
74 // @todo FIXME: i18n issue.
75 $docFile = DocFile::forTitle($title, $dir.'/doc-src/');
77 if (!empty($docFile)) {
78 $output = $docFile->toHTML();
85 static function registerEmail($email)
87 $old = User::getKV('email', $email);
90 // TRANS: Error text when trying to register with an already registered e-mail address.
91 // TRANS: %s is the URL to recover password at.
92 throw new ClientException(sprintf(_m('A user with that email address already exists. You can use the '.
93 '<a href="%s">password recovery</a> tool to recover a missing password.'),
94 common_local_url('recoverpassword')));
99 if (Event::handle('StartValidateUserEmail', array(null, $email, &$valid))) {
100 $valid = Validate::email($email, common_config('email', 'check_domain'));
101 Event::handle('EndValidateUserEmail', array(null, $email, &$valid));
105 // TRANS: Error text when trying to register with an invalid e-mail address.
106 throw new ClientException(_m('Not a valid email address.'));
109 $confirm = Confirm_address::getAddress($email, self::CONFIRMTYPE);
111 if (empty($confirm)) {
112 $confirm = Confirm_address::saveNew(null, $email, 'register');
118 static function nicknameFromEmail($email)
120 $parts = explode('@', $email);
122 $nickname = $parts[0];
124 $nickname = preg_replace('/[^A-Za-z0-9]/', '', $nickname);
126 $nickname = Nickname::normalize($nickname);
128 $original = $nickname;
132 while (User::getKV('nickname', $nickname)) {
134 $nickname = $original . $n;
140 static function sendConfirmEmail($confirm, $title=null)
142 $sitename = common_config('site', 'name');
144 $recipients = array($confirm->address);
146 $headers['From'] = mail_notify_from();
147 $headers['To'] = trim($confirm->address);
148 // TRANS: Subject for confirmation e-mail.
149 // TRANS: %s is the StatusNet sitename.
150 $headers['Subject'] = sprintf(_m('Welcome to %s'), $sitename);
151 $headers['Content-Type'] = 'text/html; charset=UTF-8';
153 $confirmUrl = common_local_url('register', array('code' => $confirm->code));
156 $title = 'confirmemailreg';
159 $confirmTemplate = DocFile::forTitle($title, DocFile::mailPaths());
161 $body = $confirmTemplate->toHTML(array('confirmurl' => $confirmUrl));
163 mail_send($recipients, $headers, $body);
166 function onEndDocFileForTitle($title, $paths, &$filename)
168 if ($title == 'confirmemailreg' && empty($filename)) {
169 $filename = dirname(__FILE__).'/mail-src/'.$title;
175 function onPluginVersion(&$versions)
177 $versions[] = array('name' => 'EmailRegistration',
178 'version' => GNUSOCIAL_VERSION,
179 'author' => 'Evan Prodromou',
180 'homepage' => 'http://status.net/wiki/Plugin:EmailRegistration',
182 // TRANS: Plugin description.
183 _m('Use email only for registration.'));