FOG Login with spaces in username
-
Spaces aren’t allowed for usernames.
Underscores do work I believe, if that’s an option for you.
-
Moved to bug reports as it sounds like this is one.
@Fernando-Gietz Would you find some time to look into this?
-
@Quazz said in FOG Login with spaces in username:
Spaces aren’t allowed for usernames.
As far as I know LDAP allows spaces in
CN=User Name,...
notation. What do you think? Not sure if we are able to allow for this in the FOG user management as well. -
@Quazz said in FOG Login with spaces in username:
Underscores do work I believe, if that’s an option for you.
Because we have only spaces in usernames in our infrastructure we can only get that to work with spaces supported.
I tried already another User Name Attribute like wWWHomePage but it does also not work. -
@Sebastian-Roth Yeah, I meant in FOG; spaces can be quite difficult to control correctly I think.
-
@kek said in FOG Login with spaces in username:
I tried already another User Name Attribute like wWWHomePage but it does also not work.
Also because of spaces??
-
@Sebastian-Roth said in FOG Login with spaces in username:
@kek said in FOG Login with spaces in username:
I tried already another User Name Attribute like wWWHomePage but it does also not work.
Also because of spaces??
Yes i put the username in that field with a dot instead of a space but it is also not working.
-
@kek said in FOG Login with spaces in username:
Yes i put the username in that field with a dot instead of a space but it is also not working.
What do you mean by that?
-
Set the username manually in the database? That’s what I’d think about doing for this very rare one-off. I can help you try that.
-
@Wayne-Workman Which database? If I get this right the OP want to use LDAP auth.
-
@Sebastian-Roth said in FOG Login with spaces in username:
@kek said in FOG Login with spaces in username:
Yes i put the username in that field with a dot instead of a space but it is also not working.
What do you mean by that?
I thought i could put the username separated with a dot in the Web Page field in the AD user properties page because only some persons need access to the FOG Server, but it is also is not working because the LDAP Plugin looks if this username exists in the AD but this name does only exists in the web page field in some users.
-
@kek said in FOG Login with spaces in username:
but it is also is not working because the LDAP Plugin looks if this username exists in the AD but this name does only exists in the web page field in some users.
Can you be more specific on how you know this? You seem to have a lot of detail knowledge about how this works but you don’t post any of the details. Please share more of the information here. Reading between the lines I guess you have looked through the FOG (LDAP plugin) code already. Please let us know where you see it’s doing the wrong thing.
-
@Sebastian-Roth said in FOG Login with spaces in username:
@kek said in FOG Login with spaces in username:
but it is also is not working because the LDAP Plugin looks if this username exists in the AD but this name does only exists in the web page field in some users.
Can you be more specific on how you know this? You seem to have a lot of detail knowledge about how this works but you don’t post any of the details. Please share more of the information here.
I made a lot of error_logs to see what the Plugin is searching for, but then i saw the Plugin is not the problem.
I know that because the user got put in the Database after i tried to login a user, but it is not logging in.Reading between the lines I guess you have looked through the FOG (LDAP plugin) code already.
Yes i looked in the LAP Plugin code to see what is the problem, but as already said the Plugin does it’s Job right.
I error_log ged the search thats is executed when you try to Login.Please let us know where you see it’s doing the wrong thing.
The problem lies by the FOG Login, and because i dont see in the Code why spaces aren’t allowed i made that post.
I think this PHP Class is for the login: processlogin.class.php
-
@kek said in FOG Login with spaces in username:
I error_log ged the search thats is executed when you try to Login.
Can you share this?
-
https://github.com/FOGProject/fogproject/blob/master/packages/web/lib/fog/user.class.php#L214
This function is where it validates the username.
It uses the same regex as the javascript that checks when you try and manually create an account.
@kek can you share some examples that failed so we could potentially modify it?
It doesn’t seem difficult, but we need to know if it’s valid for your case.
-
Didn’t read enough - carry on.
-
I just want to understand the use case for a requirement to have spaces in the Username?
The regex doesn’t allow for spaces, and creating usernames with spaces isn’t allowed as well.
How is this a bug if this is intended? Too my knowledge, you cannot create an active directory | ldap user name (userprincipalname) with spaces.
-
@Quazz @Sebastian-Roth @Wayne-Workman @kek
This isn’t a normal situation in my eyes. That’s not to say you can’t get spaces in your usernames.
Change the relevant regex from:
(?=^.{3,40}$)^[\w][\w0-9]*[._-]?[\w0-9]*[._-]?[\w0-9]+$
to:
(?=^.{3,40}$)^[\w][\w0-9]*[ ._-]?[\w0-9]*[ ._-]?[\w0-9]+$
And you should be able to create and use usernames with spaces. But again, this isn’t very common, especially when paired with AD logins. The userPrincipalName will still be without spaces.
Probably a better method would be:
(?=^.{3,40}$)^(?!.*[_\s-\.]{2,})[a-zA-Z0-9][a-zA-Z0-9_\s\-\.]*[a-zA-Z0-9]$
as it allows multiple spacesIf you need the username to be longer or shorter than 40, 3 respectively just remove the first part of the line, or make the relevant numerical changes.
the
(?=^.{3,40}$)
means Must be at least 3 characters and cannot exceed 40 characters (this includes spaces, dots, dashes, and underscores.Seeing as our schema for Usernames is set to 50 characters, you can’t have anything more than 50. So you could adjust the first part to simply be:
(?=^.{1,50}$)
.It won’t show as invalid if you remove the line, but the database won’t be able to store the field.
-
@Tom-Elliott When reading the topic at first I though this ought to be a bug. But learning more about it I don’t see it as a bug anymore. Moved it back to problems. I think you instructions will help the OP to make this work for his situation. Thanks!
-
@Tom-Elliott I agree that it’s not a bug (everything is working as designed).
I don’t have a lot of experience with AD; I was unsure what is and isn’t allowed. It seems that spaces in AD names are bad practice and cause more problems than they’re worth. (though it doesn’t seem impossible, just breaks half your stuff)