com.northernwall.hadrian.workItem.action.Action Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Hadrian Show documentation
Show all versions of Hadrian Show documentation
Hadrian is a DevOps UI, Inventory, and Auditing system that plugs into other tools to execute actions.
/*
* Copyright 2016 Richard Thurston.
*
* 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 com.northernwall.hadrian.workItem.action;
import com.google.gson.Gson;
import com.northernwall.hadrian.config.ConfigHelper;
import com.northernwall.hadrian.config.Const;
import com.northernwall.hadrian.GMT;
import com.northernwall.hadrian.db.DataAccess;
import com.northernwall.hadrian.domain.Audit;
import com.northernwall.hadrian.domain.WorkItem;
import com.northernwall.hadrian.messaging.MessagingCoodinator;
import com.northernwall.hadrian.parameters.Parameters;
import com.northernwall.hadrian.workItem.Result;
import com.northernwall.hadrian.workItem.dao.CallbackData;
import com.northernwall.hadrian.workItem.helper.SmokeTestHelper;
import com.squareup.okhttp.OkHttpClient;
import java.util.Map;
/**
*
* @author rthursto
*/
public abstract class Action {
private String name;
protected DataAccess dataAccess;
protected MessagingCoodinator messagingCoodinator;
protected Parameters parameters;
protected ConfigHelper configHelper;
protected OkHttpClient client;
protected Gson gson;
protected SmokeTestHelper smokeTestHelper;
public Action() {
}
public final void init(String name, DataAccess dataAccess, MessagingCoodinator messagingCoodinator, Parameters parameters, ConfigHelper configHelper, OkHttpClient client, Gson gson, SmokeTestHelper smokeTestHelper) {
this.name = name;
this.dataAccess = dataAccess;
this.messagingCoodinator = messagingCoodinator;
this.parameters = parameters;
this.configHelper = configHelper;
this.client = client;
this.gson = gson;
this.smokeTestHelper = smokeTestHelper;
}
public String getName() {
return name;
}
public void updateStatus(WorkItem workItem) {
}
public abstract Result process(WorkItem workItem);
public Result processCallback(WorkItem workItem, CallbackData callbackData) {
throw new UnsupportedOperationException("Work item " + name + " does not supported callbacks.");
}
public void success(WorkItem workItem) {
}
public void error(WorkItem workItem) {
}
public void recordAudit(WorkItem workItem, Result result, Map notes, String output) {
writeAudit(workItem, result, notes, output);
}
protected void writeAudit(WorkItem workItem, Result result, Map notes, String output) {
Audit audit = new Audit();
audit.serviceId = workItem.getService().serviceId;
audit.setTimePerformed(GMT.getGmtAsDate());
audit.timeRequested = workItem.getRequestDate();
audit.requestor = workItem.getUsername();
audit.type = workItem.getType();
audit.operation = workItem.getOperation();
audit.successfull = (result == Result.success);
if (workItem.getMainModule() != null) {
audit.moduleName = workItem.getMainModule().moduleName;
}
if (workItem.getHost() != null) {
audit.hostName = workItem.getHost().hostName;
}
if (workItem.getVip() != null) {
audit.vipName = workItem.getVip().dns;
}
if (notes == null || notes.isEmpty()) {
audit.notes = "";
} else {
audit.notes = gson.toJson(notes);
}
dataAccess.saveAudit(audit, output);
}
protected String getGitUrl(WorkItem workItem) {
if (workItem.getTeam().gitGroup == null
|| workItem.getTeam().gitGroup.trim().isEmpty()
|| workItem.getService().gitProject == null
|| workItem.getService().gitProject.trim().isEmpty()) {
return null;
}
String gitUrl = parameters.getString(Const.GIT_PATH_URL, Const.GIT_PATH_URL_DETAULT);
gitUrl = gitUrl.replace(Const.GIT_PATH_PATTERN_GROUP, workItem.getTeam().gitGroup);
gitUrl = gitUrl.replace(Const.GIT_PATH_PATTERN_PROJECT, workItem.getService().gitProject);
return gitUrl;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy