Package org.apache.airavata.services.gfac.axis2.handlers

Source Code of org.apache.airavata.services.gfac.axis2.handlers.MyProxySecurityHandler

/*
*
* 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.airavata.services.gfac.axis2.handlers;

import java.util.Iterator;

import javax.xml.namespace.QName;

import org.apache.airavata.core.gfac.context.security.impl.GSISecurityContext;
import org.apache.airavata.services.gfac.axis2.GFacService;
import org.apache.airavata.services.gfac.axis2.util.MessageContextUtil;
import org.apache.axiom.om.OMElement;
import org.apache.axiom.soap.SOAPEnvelope;
import org.apache.axiom.soap.SOAPHeader;
import org.apache.axiom.soap.SOAPHeaderBlock;
import org.apache.axis2.AxisFault;
import org.apache.axis2.context.MessageContext;
import org.apache.axis2.handlers.AbstractHandler;

public class MyProxySecurityHandler extends AbstractHandler {

    private static final String SECURITY_CONTEXT = "security-context";
    private static final String MYPROXY = "grid-myproxy";
    private static final String MYPROXY_SERVER = "myproxy-server";
    private static final String MYPROXY_USERNAME = "username";
    private static final String MYPROXY_PASSWORD = "password";
    private static final String MYPROXY_LIFE = "life-time-inhours";

    public InvocationResponse invoke(MessageContext msgContext) throws AxisFault {
        SOAPEnvelope envelope = msgContext.getEnvelope();
        SOAPHeader header = envelope.getHeader();
        if (header != null) {
            Iterator it = header.examineAllHeaderBlocks();
            while (it.hasNext()) {
                SOAPHeaderBlock x = (SOAPHeaderBlock) it.next();
                String elementName = x.getLocalName();

                if (elementName.equals(SECURITY_CONTEXT)) {

                    OMElement myproxy = x.getFirstChildWithName(new QName(null, MYPROXY));

                    if (myproxy != null) {
                        GSISecurityContext gsiSecurityContext = new GSISecurityContext();

                        OMElement server = myproxy.getFirstChildWithName(new QName(null, MYPROXY_SERVER));
                        OMElement username = myproxy.getFirstChildWithName(new QName(null, MYPROXY_USERNAME));
                        OMElement password = myproxy.getFirstChildWithName(new QName(null, MYPROXY_PASSWORD));
                        OMElement life = myproxy.getFirstChildWithName(new QName(null, MYPROXY_LIFE));

                        gsiSecurityContext.setMyproxyServer(server.getText());
                        gsiSecurityContext.setMyproxyUserName(username.getText());
                        gsiSecurityContext.setMyproxyPasswd(password.getText());
                        gsiSecurityContext.setMyproxyLifetime(Integer.parseInt(life.getText()));

                        // set to context
                        MessageContextUtil.addContextToProperty(msgContext, GFacService.SECURITY_CONTEXT, "myproxy",
                                gsiSecurityContext);
                    }
                }
            }
        }
        return InvocationResponse.CONTINUE;
    }

}
TOP

Related Classes of org.apache.airavata.services.gfac.axis2.handlers.MyProxySecurityHandler

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.