All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
io.cloudslang.content.vmware.connection.impl.BasicConnection Maven / Gradle / Ivy
/*
* (c) Copyright 2017 EntIT Software LLC, a Micro Focus company, L.P.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Apache License v2.0 which accompany this distribution.
*
* The Apache License is available 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 io.cloudslang.content.vmware.connection.impl;
import com.vmware.vim25.InvalidLocaleFaultMsg;
import com.vmware.vim25.InvalidLoginFaultMsg;
import com.vmware.vim25.ManagedObjectReference;
import com.vmware.vim25.RuntimeFaultFaultMsg;
import com.vmware.vim25.ServiceContent;
import com.vmware.vim25.UserSession;
import com.vmware.vim25.VimPortType;
import com.vmware.vim25.VimService;
import io.cloudslang.content.vmware.connection.Connection;
import io.cloudslang.content.vmware.connection.exceptions.ConnectionException;
import io.cloudslang.content.vmware.entities.ManagedObjectType;
import javax.xml.ws.BindingProvider;
import java.security.KeyManagementException;
import java.security.NoSuchAlgorithmException;
import java.util.Map;
public class BasicConnection implements Connection {
private static final int THIRTY = 30;
private static final int SIXTY = 60;
private static final int THOUSAND = 1000;
private VimService vimService;
private VimPortType vimPort;
private ServiceContent serviceContent;
private UserSession userSession;
private ManagedObjectReference serviceInstanceReference;
public VimPortType getVimPort() {
return vimPort;
}
public ServiceContent getServiceContent() {
return serviceContent;
}
public ManagedObjectReference getServiceInstanceReference() {
if (serviceInstanceReference == null) {
ManagedObjectReference morRef = new ManagedObjectReference();
morRef.setType(ManagedObjectType.SERVICE_INSTANCE.getValue());
morRef.setValue(ManagedObjectType.SERVICE_INSTANCE.getValue());
serviceInstanceReference = morRef;
}
return serviceInstanceReference;
}
public Connection connect(String url, String username, String password, boolean trustEveryone) {
if (!isConnected()) {
try {
makeConnection(url, username, password, trustEveryone);
} catch (Exception e) {
Throwable cause = (e.getCause() != null) ? e.getCause() : e;
throw new BasicConnectionException("failed to connect: " +
e.getMessage() + " : " + cause.getMessage(), cause);
}
}
return this;
}
public Connection disconnect() {
if (this.isConnected()) {
try {
vimPort.logout(serviceContent.getSessionManager());
} catch (Exception e) {
Throwable cause = e.getCause();
throw new BasicConnectionException("Failed to disconnect properly: " +
e.getMessage() + " : " + cause.getMessage(), cause);
} finally {
userSession = null;
serviceContent = null;
vimPort = null;
vimService = null;
}
}
return this;
}
public boolean isConnected() {
if (userSession == null) {
return false;
}
long startTime = userSession.getLastActiveTime().toGregorianCalendar().getTime().getTime();
// verifying the equivalent of 30 minutes
return System.currentTimeMillis() < startTime + THIRTY * SIXTY * THOUSAND;
}
@SuppressWarnings("rawtypes")
private void makeConnection(String url, String username, String password, boolean trustEveryone)
throws RuntimeFaultFaultMsg,
InvalidLocaleFaultMsg,
InvalidLoginFaultMsg,
KeyManagementException,
NoSuchAlgorithmException {
vimService = new VimService();
vimPort = vimService.getVimPort();
populateContextMap(url, username, password);
if (Boolean.TRUE.equals(trustEveryone)) {
DisableSecurity.trustEveryone();
}
serviceContent = vimPort.retrieveServiceContent(this.getServiceInstanceReference());
userSession = vimPort.login(serviceContent.getSessionManager(), username, password, null);
}
private void populateContextMap(String url, String username, String password) {
Map context = ((BindingProvider) vimPort).getRequestContext();
context.put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, url);
context.put(BindingProvider.USERNAME_PROPERTY, username);
context.put(BindingProvider.PASSWORD_PROPERTY, password);
context.put(BindingProvider.SESSION_MAINTAIN_PROPERTY, Boolean.TRUE);
}
private class BasicConnectionException extends ConnectionException {
private static final long serialVersionUID = 1L;
BasicConnectionException(String s, Throwable t) {
super(s, t);
}
}
}