2012-02-12 02:55:42 -03:00
|
|
|
/*
|
2012-10-04 20:48:01 -03:00
|
|
|
* Copyright [2012] [wisemapping]
|
2012-02-12 02:55:42 -03:00
|
|
|
*
|
|
|
|
* Licensed under WiseMapping Public License, Version 1.0 (the "License").
|
|
|
|
* It is basically the Apache License, Version 2.0 (the "License") plus the
|
|
|
|
* "powered by wisemapping" text requirement on every single page;
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the license at
|
|
|
|
*
|
|
|
|
* http://www.wisemapping.org/license
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package com.wisemapping.security;
|
|
|
|
|
2013-02-17 21:00:08 -03:00
|
|
|
|
2012-06-23 16:15:59 -03:00
|
|
|
import com.wisemapping.model.User;
|
|
|
|
import com.wisemapping.service.UserService;
|
2012-02-12 02:55:42 -03:00
|
|
|
import org.jetbrains.annotations.NotNull;
|
2012-02-21 16:36:19 -03:00
|
|
|
import org.jetbrains.annotations.Nullable;
|
2013-02-17 21:00:08 -03:00
|
|
|
|
2012-02-12 02:55:42 -03:00
|
|
|
import org.springframework.dao.DataAccessException;
|
|
|
|
import org.springframework.security.core.userdetails.UsernameNotFoundException;
|
|
|
|
|
2012-02-12 21:57:11 -03:00
|
|
|
|
2012-02-21 16:36:19 -03:00
|
|
|
public class UserDetailsService
|
2012-02-12 21:57:11 -03:00
|
|
|
implements org.springframework.security.core.userdetails.UserDetailsService {
|
2012-06-23 16:15:59 -03:00
|
|
|
private UserService userService;
|
2012-02-21 16:36:19 -03:00
|
|
|
private String adminUser;
|
2012-02-12 02:55:42 -03:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public UserDetails loadUserByUsername(@NotNull String email) throws UsernameNotFoundException, DataAccessException {
|
2012-06-23 16:15:59 -03:00
|
|
|
final User user = userService.getUserBy(email);
|
2013-02-17 21:00:08 -03:00
|
|
|
|
2012-06-23 16:15:59 -03:00
|
|
|
if (user != null) {
|
|
|
|
return new UserDetails(user, isAdmin(email));
|
2012-02-12 02:55:42 -03:00
|
|
|
} else {
|
|
|
|
throw new UsernameNotFoundException(email);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-21 16:36:19 -03:00
|
|
|
private boolean isAdmin(@Nullable String email) {
|
|
|
|
return email != null && adminUser != null && email.trim().endsWith(adminUser);
|
|
|
|
}
|
|
|
|
|
2012-06-23 16:15:59 -03:00
|
|
|
public UserService getUserService() {
|
|
|
|
return userService;
|
2012-02-12 02:55:42 -03:00
|
|
|
}
|
|
|
|
|
2012-06-23 16:15:59 -03:00
|
|
|
public void setUserService(UserService userManager) {
|
|
|
|
this.userService = userManager;
|
2012-02-12 02:55:42 -03:00
|
|
|
}
|
|
|
|
|
2012-02-21 16:36:19 -03:00
|
|
|
public String getAdminUser() {
|
|
|
|
return adminUser;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setAdminUser(String adminUser) {
|
|
|
|
this.adminUser = adminUser;
|
|
|
|
}
|
2012-02-12 02:55:42 -03:00
|
|
|
}
|