2012-02-12 02:55:42 -03:00
|
|
|
/*
|
2015-04-12 00:15:12 -03:00
|
|
|
* Copyright [2015] [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;
|
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
|
2020-11-28 15:27:46 -08: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-03-10 19:07:52 -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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-28 15:27:46 -08:00
|
|
|
// @Override
|
|
|
|
// @NotNull
|
|
|
|
// public UserDetails loadUserDetails(@NotNull OpenIDAuthenticationToken token) throws UsernameNotFoundException {
|
|
|
|
//
|
|
|
|
// final User tUser = buildUserFromToken(token);
|
|
|
|
// final User dbUser = userService.getUserBy(tUser.getEmail());
|
|
|
|
//
|
|
|
|
// final User result;
|
|
|
|
// if (dbUser != null) {
|
|
|
|
// if (!token.getIdentityUrl().equals(dbUser.getAuthenticatorUri())) {
|
|
|
|
// throw new IllegalStateException("Identity url for this user can not change:" + token.getIdentityUrl());
|
|
|
|
// }
|
|
|
|
// result = dbUser;
|
|
|
|
// } else {
|
|
|
|
// try {
|
|
|
|
// tUser.setAuthenticationType(AuthenticationType.OPENID);
|
|
|
|
// tUser.setAuthenticatorUri(token.getIdentityUrl());
|
|
|
|
//
|
|
|
|
// result = userService.createUser(tUser, false, false);
|
|
|
|
// } catch (WiseMappingException e) {
|
|
|
|
// throw new IllegalStateException(e);
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// }
|
|
|
|
// return new UserDetails(result, isAdmin(result.getEmail()));
|
|
|
|
// }
|
|
|
|
|
|
|
|
// @NotNull
|
|
|
|
// private User buildUserFromToken(@NotNull OpenIDAuthenticationToken token) {
|
|
|
|
// final User result = new User();
|
|
|
|
//
|
|
|
|
// String lastName = null;
|
|
|
|
// String firstName = null;
|
|
|
|
// String email = null;
|
|
|
|
// String fullName = null;
|
|
|
|
//
|
|
|
|
// final List<OpenIDAttribute> attributes = token.getAttributes();
|
|
|
|
// for (OpenIDAttribute attribute : attributes) {
|
|
|
|
// if (attribute.getName().equals("email")) {
|
|
|
|
// email = attribute.getValues().get(0);
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// if (attribute.getName().equals("firstname")) {
|
|
|
|
// firstName = attribute.getValues().get(0);
|
|
|
|
//
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// if (attribute.getName().equals("lastname")) {
|
|
|
|
// lastName = attribute.getValues().get(0);
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// if (attribute.getName().equals("fullname")) {
|
|
|
|
// fullName = attribute.getValues().get(0);
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// }
|
|
|
|
// if (lastName == null || firstName == null) {
|
|
|
|
// result.setFirstname(fullName);
|
|
|
|
// result.setLastname("");
|
|
|
|
// } else {
|
|
|
|
// result.setLastname(lastName);
|
|
|
|
// result.setFirstname(firstName);
|
|
|
|
// }
|
|
|
|
// result.setEmail(email);
|
|
|
|
// result.setPassword("");
|
|
|
|
//
|
|
|
|
// final Calendar now = Calendar.getInstance();
|
|
|
|
// result.setActivationDate(now);
|
|
|
|
// return result;
|
|
|
|
// }
|
2013-03-10 19:07:52 -03:00
|
|
|
|
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;
|
|
|
|
}
|
2013-03-10 19:07:52 -03:00
|
|
|
|
2012-02-12 02:55:42 -03:00
|
|
|
}
|