mirror of
https://github.com/friendica/friendica
synced 2024-11-10 01:42:53 +00:00
allow login by username and multiple unique email addresses on system - this will provide support for group/celebrity pages (coming soon).
This commit is contained in:
parent
6d646e9df5
commit
36e1afa6ae
5 changed files with 11 additions and 26 deletions
3
README
3
README
|
@ -52,6 +52,3 @@ repository on github -- http://github.com/macgirvin/mistpark
|
|||
|
||||
It's your network now. If social networking isn't what you thought it would
|
||||
be, help us to make it better.
|
||||
|
||||
Please support mistpark with a donation.
|
||||
|
||||
|
|
|
@ -66,7 +66,8 @@ else {
|
|||
// process login request
|
||||
|
||||
$r = q("SELECT * FROM `user`
|
||||
WHERE `email` = '%s' AND `password` = '%s' AND `blocked` = 0 AND `verified` = 1 LIMIT 1",
|
||||
WHERE ( `email` = '%s' OR `nickname` = '%s' ) AND `password` = '%s' AND `blocked` = 0 AND `verified` = 1 LIMIT 1",
|
||||
dbesc(trim($_POST['login-name'])),
|
||||
dbesc(trim($_POST['login-name'])),
|
||||
dbesc($encrypted));
|
||||
if(($r === false) || (! count($r))) {
|
||||
|
|
|
@ -59,21 +59,12 @@ function register_post(&$a) {
|
|||
if(! preg_match("/^[a-zA-Z]* [a-zA-Z]*$/",$username))
|
||||
$err .= t(' That doesn\'t appear to be your full name.');
|
||||
|
||||
|
||||
$r = q("SELECT `uid` FROM `user`
|
||||
WHERE `email` = '%s' LIMIT 1",
|
||||
dbesc($email)
|
||||
);
|
||||
|
||||
if(!eregi('[A-Za-z0-9._%-]+@[A-Za-z0-9._%-]+\.[A-Za-z]{2,6}',$email))
|
||||
$err .= t(' Not valid email.');
|
||||
|
||||
if(! allowed_email($email))
|
||||
$err .= t(' Your email domain is not among those allowed on this site.');
|
||||
|
||||
if($r !== false && count($r))
|
||||
$err .= t(' Your email address is already registered on this system.') ;
|
||||
|
||||
$nickname = strtolower($nickname);
|
||||
if(! preg_match("/^[a-z][a-z0-9\-\_]*$/",$nickname))
|
||||
$err .= t(' Nickname <strong>must</strong> start with a letter and contain only letters, numbers, dashes, or underscore.') ;
|
||||
|
|
|
@ -81,28 +81,23 @@ function settings_post(&$a) {
|
|||
if(strlen($username) < 3)
|
||||
$err .= t(' Name too short.');
|
||||
}
|
||||
|
||||
if($email != $a->user['email']) {
|
||||
$email_changed = true;
|
||||
if(!eregi('[A-Za-z0-9._%-]+@[A-Za-z0-9._%-]+\.[A-Za-z]{2,6}',$email))
|
||||
$err .= t(' Not valid email.');
|
||||
$r = q("SELECT `uid` FROM `user`
|
||||
WHERE `email` = '%s' LIMIT 1",
|
||||
dbesc($email)
|
||||
);
|
||||
if($r !== NULL && count($r))
|
||||
$err .= t(' This email address is already registered.');
|
||||
}
|
||||
|
||||
if(strlen($err)) {
|
||||
notice($err . EOL);
|
||||
return;
|
||||
}
|
||||
|
||||
if($timezone != $a->user['timezone']) {
|
||||
if(strlen($timezone))
|
||||
date_default_timezone_set($timezone);
|
||||
}
|
||||
|
||||
|
||||
$str_group_allow = perms2str($_POST['group_allow']);
|
||||
$str_contact_allow = perms2str($_POST['contact_allow']);
|
||||
$str_group_deny = perms2str($_POST['group_deny']);
|
||||
|
@ -155,6 +150,7 @@ function settings_post(&$a) {
|
|||
|
||||
if(! function_exists('settings_content')) {
|
||||
function settings_content(&$a) {
|
||||
|
||||
$o .= '<script> $(document).ready(function() { $(\'#nav-settings-link\').addClass(\'nav-selected\'); });</script>';
|
||||
|
||||
if(! local_user()) {
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<form action="" method="post" >
|
||||
<input type="hidden" name="auth-params" value="login" />
|
||||
<div id="login-name-wrapper">
|
||||
<label for="login-name" id="label-login-name">Email address: </label>
|
||||
<label for="login-name" id="label-login-name">Username or Email: </label>
|
||||
<input type="text" maxlength="60" name="login-name" id="login-name" value="" />
|
||||
</div>
|
||||
<div id="login-name-end" ></div>
|
||||
|
|
Loading…
Reference in a new issue