]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/RequireValidatedEmail/RequireValidatedEmailPlugin.php
Merge branch '0.9.x' of gitorious.org:statusnet/mainline into 0.9.x
[quix0rs-gnu-social.git] / plugins / RequireValidatedEmail / RequireValidatedEmailPlugin.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Plugin that requires the user to have a validated email address before they
6  * can post notices
7  *
8  * PHP version 5
9  *
10  * LICENCE: 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  Plugin
24  * @package   StatusNet
25  * @author    Craig Andrews <candrews@integralblue.com>
26  * @author    Brion Vibber <brion@status.net>
27  * @author    Evan Prodromou <evan@status.net>
28  * @copyright 2011 StatusNet Inc. http://status.net/
29  * @copyright 2009 Free Software Foundation, Inc http://www.fsf.org
30  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
31  * @link      http://status.net/
32  */
33
34 if (!defined('STATUSNET') && !defined('LACONICA')) {
35     exit(1);
36 }
37
38 /**
39  * Plugin for requiring a validated email before posting.
40  *
41  * Enable this plugin using addPlugin('RequireValidatedEmail');
42  *
43  * @category  Plugin
44  * @package   StatusNet
45  * @author    Craig Andrews <candrews@integralblue.com>
46  * @author    Brion Vibber <brion@status.net>
47  * @author    Evan Prodromou <evan@status.net>
48  * @copyright 2009 Free Software Foundation, Inc http://www.fsf.org
49  * @copyright 2009-2010 StatusNet, Inc.
50  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
51  * @link      http://status.net/
52  */
53
54 class RequireValidatedEmailPlugin extends Plugin
55 {
56     /**
57      * Users created before this time will be grandfathered in
58      * without the validation requirement.
59      */
60
61     public $grandfatherCutoff = null;
62
63     /**
64      * If OpenID plugin is installed, users with a verified OpenID
65      * association whose provider URL matches one of these regexes
66      * will be considered to be sufficiently valid for our needs.
67      *
68      * For example, to trust WikiHow and Wikipedia OpenID users:
69      *
70      * addPlugin('RequireValidatedEmailPlugin', array(
71      *    'trustedOpenIDs' => array(
72      *        '!^http://\w+\.wikihow\.com/!',
73      *        '!^http://\w+\.wikipedia\.org/!',
74      *    ),
75      * ));
76      */
77
78     public $trustedOpenIDs = array();
79
80     /**
81      * Whether or not to disallow login for unvalidated users.
82      */
83
84     public $disallowLogin = false;
85
86     function onAutoload($cls)
87     {
88         $dir = dirname(__FILE__);
89
90         switch ($cls)
91         {
92         case 'ConfirmfirstemailAction':
93             include_once $dir . '/' . strtolower(mb_substr($cls, 0, -6)) . '.php';
94             return false;
95         default:
96             return true;
97         }
98     }
99
100     function onRouterInitialized($m)
101     {
102         $m->connect('main/confirmfirst/:code',
103                     array('action' => 'confirmfirstemail'));
104         return true;
105     }
106
107     /**
108      * Event handler for notice saves; rejects the notice
109      * if user's address isn't validated.
110      *
111      * @param Notice $notice The notice being saved
112      *
113      * @return bool hook result code
114      */
115
116     function onStartNoticeSave($notice)
117     {
118         $user = User::staticGet('id', $notice->profile_id);
119         if (!empty($user)) { // it's a remote notice
120             if (!$this->validated($user)) {
121                 $msg = _m("You must validate your email address before posting.");
122                 throw new ClientException($msg);
123             }
124         }
125         return true;
126     }
127
128     /**
129      * Event handler for registration attempts; rejects the registration
130      * if email field is missing.
131      *
132      * @param Action $action Action being executed
133      *
134      * @return bool hook result code
135      */
136     function onStartRegistrationTry($action)
137     {
138         $email = $action->trimmed('email');
139
140         if (empty($email)) {
141             $action->showForm(_m('You must provide an email address to register.'));
142             return false;
143         }
144
145         // Default form will run address format validation and reject if bad.
146
147         return true;
148     }
149
150     /**
151      * Check if a user has a validated email address or has been
152      * otherwise grandfathered in.
153      *
154      * @param User $user User to valide
155      *
156      * @return bool
157      */
158     protected function validated($user)
159     {
160         // The email field is only stored after validation...
161         // Until then you'll find them in confirm_address.
162         $knownGood = !empty($user->email) ||
163           $this->grandfathered($user) ||
164           $this->hasTrustedOpenID($user);
165
166         // Give other plugins a chance to override, if they can validate
167         // that somebody's ok despite a non-validated email.
168
169         // FIXME: This isn't how to do it! Use Start*/End* instead
170
171         Event::handle('RequireValidatedEmailPlugin_Override',
172                       array($user, &$knownGood));
173
174         return $knownGood;
175     }
176
177     /**
178      * Check if a user was created before the grandfathering cutoff.
179      * If so, we won't need to check for validation.
180      *
181      * @param User $user User to check
182      *
183      * @return bool true if user is grandfathered
184      */
185     protected function grandfathered($user)
186     {
187         if ($this->grandfatherCutoff) {
188             $created = strtotime($user->created . " GMT");
189             $cutoff  = strtotime($this->grandfatherCutoff);
190             if ($created < $cutoff) {
191                 return true;
192             }
193         }
194         return false;
195     }
196
197     /**
198      * Override for RequireValidatedEmail plugin. If we have a user who's
199      * not validated an e-mail, but did come from a trusted provider,
200      * we'll consider them ok.
201      *
202      * @param User $user User to check
203      *
204      * @return bool true if user has a trusted OpenID.
205      */
206
207     function hasTrustedOpenID($user)
208     {
209         if ($this->trustedOpenIDs && class_exists('User_openid')) {
210             foreach ($this->trustedOpenIDs as $regex) {
211                 $oid = new User_openid();
212
213                 $oid->user_id = $user->id;
214
215                 $oid->find();
216                 while ($oid->fetch()) {
217                     if (preg_match($regex, $oid->canonical)) {
218                         return true;
219                     }
220                 }
221             }
222         }
223         return false;
224     }
225
226     /**
227      * Add version information for this plugin.
228      *
229      * @param array &$versions Array of associative arrays of version data
230      *
231      * @return boolean hook value
232      */
233
234     function onPluginVersion(&$versions)
235     {
236         $versions[] =
237           array('name' => 'Require Validated Email',
238                 'version' => STATUSNET_VERSION,
239                 'author' => 'Craig Andrews, '.
240                 'Evan Prodromou, '.
241                 'Brion Vibber',
242                 'homepage' =>
243                 'http://status.net/wiki/Plugin:RequireValidatedEmail',
244                 'rawdescription' =>
245                 _m('Disables posting without a validated email address.'));
246         return true;
247     }
248
249     /**
250      * Hide the notice form if the user isn't able to post.
251      *
252      * @param Action $action action being shown
253      *
254      * @return boolean hook value
255      */
256
257     function onStartShowNoticeForm($action)
258     {
259         $user = common_current_user();
260         if (!empty($user)) { // it's a remote notice
261             if (!$this->validated($user)) {
262                 return false;
263             }
264         }
265         return true;
266     }
267
268     /**
269      * Prevent unvalidated folks from creating spam groups.
270      *
271      * @param Profile $profile User profile we're checking
272      * @param string $right rights key
273      * @param boolean $result if overriding, set to true/false has right
274      * @return boolean hook result value
275      */
276     function onUserRightsCheck(Profile $profile, $right, &$result)
277     {
278         if ($right == Right::CREATEGROUP ||
279             ($this->disallowLogin && ($right == Right::WEBLOGIN || $right == Right::API))) {
280             $user = User::staticGet('id', $profile->id);
281             if ($user && !$this->validated($user)) {
282                 $result = false;
283                 return false;
284             }
285         }
286         return true;
287     }
288
289     function onLoginAction($action, &$login)
290     {
291         if ($action == 'confirmfirstemail') {
292             $login = true;
293             return false;
294         }
295         return true;
296     }
297 }