mirror of
				https://github.com/Frooodle/Stirling-PDF.git
				synced 2025-10-25 11:17:28 +02:00 
			
		
		
		
	Prohibit the registration of unauthorized usernames (#2240)
This commit is contained in:
		
							parent
							
								
									4a70d680a4
								
							
						
					
					
						commit
						d3ae9f9a81
					
				| @ -304,7 +304,13 @@ public class UserService implements UserServiceInterface { | |||||||
|         boolean isValidEmail = |         boolean isValidEmail = | ||||||
|                 username.matches( |                 username.matches( | ||||||
|                         "^(?=.{1,64}@)[A-Za-z0-9]+(\\.[A-Za-z0-9_+.-]+)*@[^-][A-Za-z0-9-]+(\\.[A-Za-z0-9-]+)*(\\.[A-Za-z]{2,})$"); |                         "^(?=.{1,64}@)[A-Za-z0-9]+(\\.[A-Za-z0-9_+.-]+)*@[^-][A-Za-z0-9-]+(\\.[A-Za-z0-9-]+)*(\\.[A-Za-z]{2,})$"); | ||||||
|         return isValidSimpleUsername || isValidEmail; | 
 | ||||||
|  |         List<String> notAllowedUserList = new ArrayList<>(); | ||||||
|  |         notAllowedUserList.add("ALL_USERS".toLowerCase()); | ||||||
|  | 
 | ||||||
|  |         boolean notAllowedUser = notAllowedUserList.contains(username.toLowerCase()); | ||||||
|  | 
 | ||||||
|  |         return (isValidSimpleUsername || isValidEmail) && !notAllowedUser; | ||||||
|     } |     } | ||||||
| 
 | 
 | ||||||
|     private String getInvalidUsernameMessage() { |     private String getInvalidUsernameMessage() { | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user