All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opendaylight.aaa.shiro.moon.MoonPrincipal Maven / Gradle / Ivy

There is a newer version: 0.20.1
Show newest version
/*
 * Copyright (c) 2016 Orange and others.  All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v1.0 which accompanies this distribution,
 * and is available at http://www.eclipse.org/legal/epl-v10.html
 */
package org.opendaylight.aaa.shiro.moon;

import com.google.common.collect.ImmutableSet;
import java.io.Serializable;
import java.util.Set;
import org.opendaylight.aaa.api.Claim;

/**
 * MoonPrincipal contains all user's information returned by moon on successful authentication.
 *
 * @author Alioune BA [email protected]
 */
public class MoonPrincipal {

    private final String username;
    private final String domain;
    private final String userId;
    private final ImmutableSet roles;
    private final String token;

    public MoonPrincipal(final String username, final String domain, final String userId,
            final Set roles, final String token) {

        this.username = username;
        this.domain = domain;
        this.userId = userId;
        this.roles = ImmutableSet.copyOf(roles);
        this.token = token;
    }

    public MoonPrincipal createODLPrincipal(final String userName, final String theDomain,
            final String theUserId, final Set theRoles, final String theToken) {

        return new MoonPrincipal(userName, theDomain, theUserId, theRoles,theToken);
    }

    public Claim principalToClaim() {
        return new MoonClaim("", this.getUserId(), this.getUsername(), this.getDomain(), this.getRoles());
    }

    public String getUsername() {
        return this.username;
    }

    public String getDomain() {
        return this.domain;
    }

    public String getUserId() {
        return this.userId;
    }

    public Set getRoles() {
        return this.roles;
    }

    public String getToken() {
        return this.token;
    }

    private static class MoonClaim implements Claim, Serializable {
        private static final long serialVersionUID = 1L;

        private final String clientId;
        private final String userId;
        private final String user;
        private final String domain;
        private final ImmutableSet roles;

        MoonClaim(final String clientId, final String userId, final String user, final String domain,
                final Set roles) {
            this.clientId = clientId;
            this.userId = userId;
            this.user = user;
            this.domain = domain;
            this.roles = ImmutableSet.copyOf(roles);

            if (userId.isEmpty() || user.isEmpty() || roles.isEmpty() || roles.contains("")) {
                throw new IllegalStateException("The Claim is missing one or more of the required fields.");
            }
        }

        @Override
        public String clientId() {
            return clientId;
        }

        @Override
        public String userId() {
            return userId;
        }

        @Override
        public String user() {
            return user;
        }

        @Override
        public String domain() {
            return domain;
        }

        @Override
        public Set roles() {
            return roles;
        }

        @Override
        public String toString() {
            return "clientId:" + clientId + "," + "userId:" + userId + "," + "userName:" + user
                    + "," + "domain:" + domain + "," + "roles:" + roles ;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy