【优化】 公共部分、细节优化

This commit is contained in:
wangiegie@gmail.com 2017-10-29 17:51:00 +08:00
parent 39469e857a
commit a065e34309
1 changed files with 50 additions and 34 deletions

View File

@ -1,10 +1,16 @@
package com.github.pig.auth.serivce;
import com.github.pig.auth.mapper.SysUserMapper;
import com.github.pig.common.vo.SysRole;
import com.github.pig.common.vo.UserVo;
import org.springframework.beans.factory.annotation.Autowired;
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.Service;
import org.springframework.util.CollectionUtils;
import java.io.Serializable;
import java.util.ArrayList;
@ -19,46 +25,56 @@ import java.util.List;
*/
@Service("userDetailService")
public class UserDetailServiceImpl implements UserDetailsService, Serializable {
@Autowired
private SysUserMapper sysUserMapper;
@Override
public UserDetails loadUserByUsername(String s) throws UsernameNotFoundException {
return new UserDetails() {
@Override
public Collection<? extends GrantedAuthority> getAuthorities() {
List<GrantedAuthority> grantedAuthorities = new ArrayList<>();
GrantedAuthority grantedAuthority = (GrantedAuthority) () -> "ROLE_ADMIN";
grantedAuthorities.add(grantedAuthority);
return grantedAuthorities;
}
public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException {
UserVo userVo = sysUserMapper.selectUserVoByUsername(username);
if (userVo != null) {
return new UserDetails() {
@Override
public Collection<? extends GrantedAuthority> getAuthorities() {
List<GrantedAuthority> authorityList = new ArrayList<>();
if (!CollectionUtils.isEmpty(userVo.getRoleList())) {
for (SysRole role : userVo.getRoleList()) {
authorityList.add(new SimpleGrantedAuthority(role.getRoleCode()));
}
}
return authorityList;
}
@Override
public String getPassword() {
return "admin";
}
@Override
public String getPassword() {
return userVo.getPassword();
}
@Override
public String getUsername() {
return "admin";
}
@Override
public String getUsername() {
return userVo.getUsername();
}
@Override
public boolean isAccountNonExpired() {
return true;
}
@Override
public boolean isAccountNonExpired() {
return true;
}
@Override
public boolean isAccountNonLocked() {
return true;
}
@Override
public boolean isAccountNonLocked() {
return true;
}
@Override
public boolean isCredentialsNonExpired() {
return true;
}
@Override
public boolean isCredentialsNonExpired() {
return true;
}
@Override
public boolean isEnabled() {
return true;
}
};
@Override
public boolean isEnabled() {
return true;
}
};
}
return null;
}
}