Package org.wso2.carbon.cloud.csg.agent.client

Source Code of org.wso2.carbon.cloud.csg.agent.client.AuthenticationClient

/*
* Copyright WSO2, Inc. (http://wso2.com)
*
* Licensed 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.wso2.carbon.cloud.csg.agent.client;

import org.apache.axis2.AxisFault;
import org.apache.axis2.context.ConfigurationContext;
import org.apache.axis2.context.ConfigurationContextFactory;
import org.apache.axis2.context.ServiceContext;
import org.apache.axis2.transport.http.HTTPConstants;
import org.wso2.carbon.authenticator.stub.AuthenticationAdminStub;
import org.wso2.carbon.authenticator.stub.LoginAuthenticationExceptionException;
import org.wso2.carbon.cloud.csg.agent.CSGAgentUtils;
import org.wso2.carbon.cloud.csg.common.CSGConstant;
import org.wso2.carbon.cloud.csg.common.CSGException;

import java.net.SocketException;
import java.rmi.RemoteException;

/**
* <code>AuthenticationAdminClient </code> provides the required authentication when deploying a
* proxy from CSG Agent
*/
public class AuthenticationClient {

    /**
     * Returns the session cookie for subsequent invocations
     * @param serverUrl the url of the server to authenticate
     * @param userName username
     * @param passWord password
     * @param hostName the host name of the remote server
     * @param domainName domain name of the tenant
     * @return the session cookie
     * @throws LoginAuthenticationExceptionException throws in case of an auth error
     * @throws RemoteException throws in case of a connection error
     * @throws SocketException throws in case of a socket error
     */
    public String getSessionCookie(String serverUrl,
                                   String userName,
                                   String passWord,
                                   String hostName,
                                   String domainName)
            throws RemoteException, SocketException, LoginAuthenticationExceptionException {
        try {
            AuthenticationAdminStub authenticationAdminStub =
                    getLoggedAuthAdminStub(serverUrl, userName , passWord, hostName, domainName);
            ServiceContext serivceContext = authenticationAdminStub._getServiceClient().
                    getLastOperationContext().getServiceContext();
            return (String) serivceContext.getProperty(HTTPConstants.COOKIE_STRING);

        } catch (CSGException ex) {
            throw new AxisFault(ex.getMessage());
        }
    }

    public AuthenticationAdminStub getLoggedAuthAdminStub(String serverUrl,
                                    String userName,
                                    String passWord,
                                    String hostName,
                                    String domainName) throws CSGException {
        AuthenticationAdminStub authenticationAdminStub;
        boolean isLoggedIn;
        String stratosUserName = userName + "@" + domainName;
        try {
            if (CSGAgentUtils.isClientAxis2XMLExists()) {
                ConfigurationContext configurationContext =
                        ConfigurationContextFactory.createConfigurationContextFromFileSystem(
                                null, CSGConstant.CLIENT_AXIS2_XML);
                authenticationAdminStub =
                        new AuthenticationAdminStub(configurationContext, serverUrl);
            } else {
                authenticationAdminStub = new AuthenticationAdminStub(serverUrl);
            }
            isLoggedIn = authenticationAdminStub.login(stratosUserName, passWord, hostName);
        } catch (Exception e) {
            throw new CSGException(e);
        }

        if(!isLoggedIn){
            throw new CSGException("User '" + stratosUserName + "' cloud not logged into server '" +
                    serverUrl + "'");
        }
        return authenticationAdminStub;
    }
}
TOP

Related Classes of org.wso2.carbon.cloud.csg.agent.client.AuthenticationClient

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.