Fix issue with LDAP context cast
[lgpl/argeo-commons.git] / security / runtime / org.argeo.security.core / src / main / java / org / argeo / security / core / ArgeoUserDetails.java
index 4a6882af432a666acb470b7c9aa3a5c9c816fadb..7ec9ce74ee768bd780f8b9e58505e10bbf23d55f 100644 (file)
@@ -5,35 +5,82 @@ import java.util.Collections;
 import java.util.List;
 
 import org.argeo.security.ArgeoUser;
+import org.argeo.security.SimpleArgeoUser;
 import org.argeo.security.UserNature;
+import org.springframework.security.Authentication;
 import org.springframework.security.GrantedAuthority;
+import org.springframework.security.GrantedAuthorityImpl;
 import org.springframework.security.userdetails.User;
+import org.springframework.security.userdetails.UserDetails;
 
 public class ArgeoUserDetails extends User implements ArgeoUser {
        private static final long serialVersionUID = 1L;
 
-       private final List<UserNature> userInfos;
+       private final List<UserNature> userNatures;
        private final List<String> roles;
 
-       public ArgeoUserDetails(String username, List<UserNature> userInfos,
+       public ArgeoUserDetails(String username, List<UserNature> userNatures,
                        String password, GrantedAuthority[] authorities)
                        throws IllegalArgumentException {
                super(username, password, true, true, true, true, authorities);
-               this.userInfos = Collections.unmodifiableList(userInfos);
-               
+               this.userNatures = Collections.unmodifiableList(userNatures);
+
                // Roles
-               List<String> roles = new ArrayList<String>();
-               for (GrantedAuthority authority : getAuthorities()) {
-                       roles.add(authority.getAuthority());
-               }
-               this.roles = Collections.unmodifiableList(roles);
+               this.roles = Collections.unmodifiableList(addAuthoritiesToRoles(
+                               getAuthorities(), new ArrayList<String>()));
+       }
+
+       public ArgeoUserDetails(ArgeoUser argeoUser) {
+               this(argeoUser.getUsername(), argeoUser.getUserNatures(), argeoUser
+                               .getPassword(), rolesToAuthorities(argeoUser.getRoles()));
        }
 
        public List<UserNature> getUserNatures() {
-               return userInfos;
+               return userNatures;
        }
 
        public List<String> getRoles() {
                return roles;
        }
+
+       /** The provided list, for chaining using {@link Collections} */
+       protected static List<String> addAuthoritiesToRoles(
+                       GrantedAuthority[] authorities, List<String> roles) {
+               for (GrantedAuthority authority : authorities) {
+                       roles.add(authority.getAuthority());
+               }
+               return roles;
+       }
+
+       protected static GrantedAuthority[] rolesToAuthorities(List<String> roles) {
+               GrantedAuthority[] arr = new GrantedAuthority[roles.size()];
+               for (int i = 0; i < roles.size(); i++) {
+                       arr[i] = new GrantedAuthorityImpl(roles.get(i));
+               }
+               return arr;
+       }
+
+       public static SimpleArgeoUser createBasicArgeoUser(UserDetails userDetails) {
+               if (userDetails instanceof ArgeoUser) {
+                       return new SimpleArgeoUser((ArgeoUser) userDetails);
+               } else {
+                       SimpleArgeoUser argeoUser = new SimpleArgeoUser();
+                       argeoUser.setUsername(userDetails.getUsername());
+                       addAuthoritiesToRoles(userDetails.getAuthorities(), argeoUser
+                                       .getRoles());
+                       return argeoUser;
+               }
+       }
+
+       public static ArgeoUser asArgeoUser(Authentication authentication) {
+               if (authentication.getPrincipal() instanceof ArgeoUser) {
+                       return new SimpleArgeoUser((ArgeoUser) authentication.getPrincipal());
+               } else {
+                       SimpleArgeoUser argeoUser = new SimpleArgeoUser();
+                       argeoUser.setUsername(authentication.getName());
+                       addAuthoritiesToRoles(authentication.getAuthorities(), argeoUser
+                                       .getRoles());
+                       return argeoUser;
+               }
+       }
 }