disallow login for users without validated email
This commit is contained in:
parent
a5154bf612
commit
bf8a3c1931
@ -24,6 +24,8 @@
|
|||||||
* @package StatusNet
|
* @package StatusNet
|
||||||
* @author Craig Andrews <candrews@integralblue.com>
|
* @author Craig Andrews <candrews@integralblue.com>
|
||||||
* @author Brion Vibber <brion@status.net>
|
* @author Brion Vibber <brion@status.net>
|
||||||
|
* @author Evan Prodromou <evan@status.net>
|
||||||
|
* @copyright 2011 StatusNet Inc. http://status.net/
|
||||||
* @copyright 2009 Free Software Foundation, Inc http://www.fsf.org
|
* @copyright 2009 Free Software Foundation, Inc http://www.fsf.org
|
||||||
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
||||||
* @link http://status.net/
|
* @link http://status.net/
|
||||||
@ -75,6 +77,12 @@ class RequireValidatedEmailPlugin extends Plugin
|
|||||||
|
|
||||||
public $trustedOpenIDs = array();
|
public $trustedOpenIDs = array();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Whether or not to disallow login for unvalidated users.
|
||||||
|
*/
|
||||||
|
|
||||||
|
public $disallowLogin = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Event handler for notice saves; rejects the notice
|
* Event handler for notice saves; rejects the notice
|
||||||
* if user's address isn't validated.
|
* if user's address isn't validated.
|
||||||
@ -246,7 +254,8 @@ class RequireValidatedEmailPlugin extends Plugin
|
|||||||
*/
|
*/
|
||||||
function onUserRightsCheck(Profile $profile, $right, &$result)
|
function onUserRightsCheck(Profile $profile, $right, &$result)
|
||||||
{
|
{
|
||||||
if ($right == Right::CREATEGROUP) {
|
if ($right == Right::CREATEGROUP ||
|
||||||
|
($this->disallowLogin && ($right == Right::WEBLOGIN || $right == Right::API))) {
|
||||||
$user = User::staticGet('id', $profile->id);
|
$user = User::staticGet('id', $profile->id);
|
||||||
if ($user && !$this->validated($user)) {
|
if ($user && !$this->validated($user)) {
|
||||||
$result = false;
|
$result = false;
|
||||||
|
Loading…
Reference in New Issue
Block a user