io.cloudslang.content.sitescope.services.DeployTemplateService Maven / Gradle / Ivy
/*
* (c) Copyright 2020 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.sitescope.services;
import io.cloudslang.content.httpclient.entities.HttpClientInputs;
import io.cloudslang.content.httpclient.services.HttpClientService;
import io.cloudslang.content.sitescope.constants.SuccessMsgs;
import io.cloudslang.content.sitescope.entities.DeployTemplateInputs;
import io.cloudslang.content.sitescope.entities.SiteScopeCommonInputs;
import io.cloudslang.content.sitescope.utils.HttpUtils;
import org.apache.http.client.utils.URIBuilder;
import org.jetbrains.annotations.NotNull;
import java.util.HashMap;
import java.util.Map;
import static io.cloudslang.content.httpclient.build.auth.AuthTypes.BASIC;
import static io.cloudslang.content.sitescope.constants.Constants.*;
import static io.cloudslang.content.sitescope.constants.ExceptionMsgs.EXCEPTION_INVALID_CUSTOM_PARAM;
import static io.cloudslang.content.sitescope.constants.Inputs.DeployTemplate.*;
import static io.cloudslang.content.sitescope.services.HttpCommons.setCommonHttpInputs;
public class DeployTemplateService {
public @NotNull
Map execute(@NotNull DeployTemplateInputs deployTemplateInputs) throws Exception {
final HttpClientInputs httpClientInputs = new HttpClientInputs();
final SiteScopeCommonInputs commonInputs = deployTemplateInputs.getCommonInputs();
httpClientInputs.setUrl(commonInputs.getProtocol() + "://" + commonInputs.getHost() + COLON + commonInputs.getPort() +
SITESCOPE_TEMPLATES_API + DEPLOY_TEMPLATE_ENDPOINT);
setCommonHttpInputs(httpClientInputs, commonInputs);
httpClientInputs.setAuthType(BASIC);
httpClientInputs.setUsername(commonInputs.getUsername());
httpClientInputs.setPassword(commonInputs.getPassword());
httpClientInputs.setMethod(POST);
httpClientInputs.setContentType(X_WWW_FORM);
httpClientInputs.setFormParams(populateDeployTemplateFormParams(deployTemplateInputs));
httpClientInputs.setFormParamsAreURLEncoded(String.valueOf(true));
httpClientInputs.setResponseCharacterSet(commonInputs.getResponseCharacterSet());
Map httpClientOutputs = new HttpClientService().execute(httpClientInputs);
return HttpUtils.convertToSitescopeResultsMap(httpClientOutputs, SuccessMsgs.DEPLOY_TEMPLATE);
}
public static String populateDeployTemplateFormParams(DeployTemplateInputs deployTemplateInputs) throws Exception {
String delimiter = deployTemplateInputs.getDelimiter();
String pathToTemplate = deployTemplateInputs.getPathToTemplate().replace(delimiter, SITE_SCOPE_DELIMITER);
;
String pathToTargetGroup = deployTemplateInputs.getPathToTargetGroup().replace(delimiter, SITE_SCOPE_DELIMITER);
String connectToServer = deployTemplateInputs.getConnectToServer();
String testRemotes = deployTemplateInputs.getTestRemotes();
String customParameters = deployTemplateInputs.getCustomParameters();
Map inputsMap = new HashMap<>();
inputsMap.put(PATH_TO_TARGET_GROUP, pathToTargetGroup);
inputsMap.put(CONNECT_TO_SERVER, connectToServer);
inputsMap.put(TEST_REMOTES, testRemotes);
inputsMap.put(PATH_TO_TEMPLATE, pathToTemplate);
if (!customParameters.trim().isEmpty())
addCustomParametersToForm(inputsMap, customParameters);
URIBuilder ub = new URIBuilder();
for (Map.Entry entry : inputsMap.entrySet()) {
ub.addParameter(entry.getKey(), entry.getValue());
}
return ub.toString().substring(1); // this is used to eliminate "?" from the beginning of the string
}
public static void addCustomParametersToForm(Map inputsMap, String customParameters) throws Exception {
String[] tokenArray = customParameters.split("&");
int size = inputsMap.size();
for (String token : tokenArray) {
String[] pairs = token.split("=", 2);
if (pairs.length == 2)
if (!pairs[0].isEmpty())
inputsMap.put(pairs[0], pairs[1]);
}
if (size + tokenArray.length != inputsMap.size()) // if one of the pairs failed to be added then throw exception
throw new Exception(EXCEPTION_INVALID_CUSTOM_PARAM);
}
}