Package ru.org.linux.auth

Source Code of ru.org.linux.auth.UserDetailsServiceImpl

/*
* Copyright 1998-2014 Linux.org.ru
*    Licensed under the Apache License, Version 2.0 (the "License");
*    you may not use this file except in compliance with the License.
*    You may obtain a copy of the License at
*
*        http://www.apache.org/licenses/LICENSE-2.0
*
*    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 ru.org.linux.auth;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.dao.DataAccessException;
import org.springframework.security.core.GrantedAuthority;
import org.springframework.security.core.authority.SimpleGrantedAuthority;
import org.springframework.security.core.userdetails.UserDetails;
import org.springframework.security.core.userdetails.UserDetailsService;
import org.springframework.security.core.userdetails.UsernameNotFoundException;
import org.springframework.stereotype.Component;
import ru.org.linux.user.ProfileDao;
import ru.org.linux.user.User;
import ru.org.linux.user.UserDao;
import ru.org.linux.user.UserNotFoundException;

import java.util.ArrayList;
import java.util.Collection;

/**
*/
@Component
public class UserDetailsServiceImpl implements UserDetailsService {
  private static final Logger logger = LoggerFactory.getLogger(UserDetailsServiceImpl.class);

  @Autowired
  private UserDao userDao;

  @Autowired
  private ProfileDao profileDao;

  @Override
  public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException, DataAccessException {
    User user;

    if (username.contains("@")) {
      user = userDao.getByEmail(username, true);
      if (user == null) {
        throw new UsernameNotFoundException(username);
      }
    } else {
      try {
        user = userDao.getUser(username);
      } catch (UserNotFoundException e) {
        throw new UsernameNotFoundException(username);
      }
    }

    return new UserDetailsImpl(user, retrieveUserAuthorities(user), profileDao.readProfile(user));
  }

  private static Collection<GrantedAuthority> retrieveUserAuthorities(User user) {
    logger.debug("retrive auth for:" + user.getNick()) ;
    Collection<GrantedAuthority> results = new ArrayList<>();
    if(user.isActivated()) {
      results.add(new SimpleGrantedAuthority("ROLE_ANONYMOUS"));
      if (user.getScore() >= 50) {
        results.add(new SimpleGrantedAuthority("ROLE_USER"));
      }
      if (user.isCorrector()) {
        results.add(new SimpleGrantedAuthority("ROLE_CORRECTOR"));
      }
      if (user.isModerator()) {
        results.add(new SimpleGrantedAuthority("ROLE_MODERATOR"));
      }
      if (user.isAdministrator()) {
        results.add(new SimpleGrantedAuthority("ROLE_ADMIN"));
      }
    }
    return results;
  }
}
TOP

Related Classes of ru.org.linux.auth.UserDetailsServiceImpl

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.