Package org.apache.stonehenge.stocktrader.sts

Source Code of org.apache.stonehenge.stocktrader.sts.ActiveSTSAttributeProvider

/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements.  See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.stonehenge.stocktrader.sts;

import com.sun.xml.ws.api.security.trust.Claims;
import com.sun.xml.ws.api.security.trust.STSAttributeProvider;
import com.sun.xml.wss.saml.Assertion;
import com.sun.xml.wss.saml.AssertionUtil;
import com.sun.xml.wss.saml.Attribute;
import com.sun.xml.wss.saml.AttributeStatement;
import com.sun.xml.wss.saml.AuthenticationStatement;
import com.sun.xml.wss.saml.NameID;
import com.sun.xml.wss.saml.NameIdentifier;
import com.sun.xml.wss.saml.SAMLException;
import org.w3c.dom.Element;

import javax.security.auth.Subject;
import javax.xml.namespace.QName;
import java.security.Principal;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Set;

public class ActiveSTSAttributeProvider implements STSAttributeProvider {
    public Map<QName, List<String>> getClaimedAttributes(Subject subject, String appliesTo, String tokenType, Claims claims) {
        String name = null;
        //get user name from subject
        Set<Principal> principals = subject.getPrincipals();
        if (principals != null) {
            final Iterator iterator = principals.iterator();
            while (iterator.hasNext()) {
                String cnName = principals.iterator().next().getName();
                int pos = cnName.indexOf("=");
                name = cnName.substring(pos + 1);
                break;
            }
        }

        Map<QName, List<String>> attrs = new HashMap<QName, List<String>>();

        // Add user id, map the URL to a list of users
        QName nameIdQName = new QName("http://sun.com", STSAttributeProvider.NAME_IDENTIFIER);
        List<String> nameIdAttrs = new ArrayList<String>();
        nameIdAttrs.add(name);
        attrs.put(nameIdQName, nameIdAttrs);

        // Add attributes

        // Check if it is the ActAs case
        if ("true".equals(claims.getOtherAttributes().get(new QName("ActAs")))) {
            // Get the ActAs token
            Element token = null;
            for (Object obj : claims.getSupportingProperties()) {
                if (obj instanceof Subject) {
                    token = (Element) ((Subject) obj).getPublicCredentials().iterator().next();
                    break;
                }
            }

            try {
                if (token != null) {
                    addAttributes(token, attrs, true);
                }
            } catch (Exception ex) {
                throw new RuntimeException(ex);
            }
        } else {
            // Add Role attribute
            QName testQName = new QName("http://sun.com", "Role");
            List<String> testAttrs = new ArrayList<String>();
            if(name == null)
            {
        name = "noname";
            }
            testAttrs.add(getUserRole(name));
            attrs.put(testQName, testAttrs);
        }

        return attrs;
    }

    private String getUserRole(String userName) {
//        if ("alice".equals(userName)) {
//            return "staff ";
//        }
//
//        if ("bob".equals(userName)) {
//            return "manager";
//        }

        return "staff";
    }

    private void addAttributes(Element token, Map<QName, List<String>> attrs, boolean isActAs) throws SAMLException {
        // only handle the case of UsernameToken and SAML assertion here
        String name = null;
        String nameNS = null;
        String tokenName = token.getLocalName();
        if ("UsernameToken".equals(tokenName)) {
            // an UsernameToken: get the user name
            name = token.getElementsByTagName("Username").item(0).getFirstChild().getNodeValue();
        } else if ("Assertion".equals(tokenName)) {
            // an SAML assertion
            Assertion assertion = AssertionUtil.fromElement(token);

            com.sun.xml.wss.saml.Subject subject = null;
            NameID nameID = null;

            // SAML 2.0
            try {
                subject = assertion.getSubject();
            } catch (Exception ex) {
                subject = null;
            }

            if (subject != null) {
                nameID = subject.getNameId();
            }

            List<Object> statements = assertion.getStatements();
            for (Object s : statements) {
                if (s instanceof AttributeStatement) {
                    List<Attribute> samlAttrs = ((AttributeStatement) s).getAttributes();
                    for (Attribute samlAttr : samlAttrs) {
                        String attrName = samlAttr.getName();
                        String attrNS = samlAttr.getNameFormat();
                        List<Object> samlAttrValues = samlAttr.getAttributes();
                        List<String> attrValues = new ArrayList<String>();
                        for (Object samlAttrValue : samlAttrValues) {
                            attrValues.add(((Element) samlAttrValue).getFirstChild().getNodeValue());
                        }
                        attrs.put(new QName(attrNS, attrName), attrValues);
                    }

                    // for SAML 1.0, 1.1
                    if (subject == null) {
                        subject = ((AttributeStatement) s).getSubject();
                    }
                } else if (s instanceof AuthenticationStatement) {
                    subject = ((AuthenticationStatement) s).getSubject();
                }
            }

            // Get the user identifier in the Subject:
            if (nameID != null) {
                //SAML 2.0 case
                name = nameID.getValue();
                nameNS = nameID.getNameQualifier();
            } else {
                // SAML 1.0, 1.1. case
                NameIdentifier nameIdentifier = subject.getNameIdentifier();
                if (nameIdentifier != null) {
                    name = nameIdentifier.getValue();
                    nameNS = nameIdentifier.getNameQualifier();
                }
            }

            String idName = isActAs ? "actor" : NAME_IDENTIFIER;
            List<String> nameIds = new ArrayList<String>();
           
            String actorXml = "<Actor><saml:Attribute AttributeName=\"name\" AttributeNamespace=\"http://schemas.xmlsoap.org/ws/2005/05/identity/claims\" xmlns:saml=\"urn:oasis:names:tc:SAML:1.0:assertion\">" +
              "<saml:AttributeValue>" + name + "</saml:AttributeValue></saml:Attribute></Actor>";
             
            nameIds.add(actorXml);
           
            attrs.put(new QName("http://schemas.xmlsoap.org/ws/2009/09/identity/claims/", idName), nameIds);
        }
    }
}
TOP

Related Classes of org.apache.stonehenge.stocktrader.sts.ActiveSTSAttributeProvider

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.