com.northernwall.hadrian.handlers.module.ModuleFileCreateHandler Maven / Gradle / Ivy
/*
* Copyright 2014 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.handlers.module;
import com.google.gson.Gson;
import com.northernwall.hadrian.handlers.BasicHandler;
import com.northernwall.hadrian.GMT;
import com.northernwall.hadrian.access.AccessHelper;
import com.northernwall.hadrian.db.DataAccess;
import com.northernwall.hadrian.domain.Audit;
import com.northernwall.hadrian.domain.Module;
import com.northernwall.hadrian.domain.ModuleFile;
import com.northernwall.hadrian.domain.Operation;
import com.northernwall.hadrian.domain.Service;
import com.northernwall.hadrian.domain.Team;
import com.northernwall.hadrian.domain.Type;
import com.northernwall.hadrian.domain.User;
import com.northernwall.hadrian.handlers.module.dao.PostModuleFileData;
import com.northernwall.hadrian.handlers.routing.Http400BadRequestException;
import com.northernwall.hadrian.handlers.routing.Http404NotFoundException;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.eclipse.jetty.server.Request;
/**
*
* @author Richard Thurston
*/
public class ModuleFileCreateHandler extends BasicHandler {
private final AccessHelper accessHelper;
public ModuleFileCreateHandler(DataAccess dataAccess, Gson gson, AccessHelper accessHelper) {
super(dataAccess, gson);
this.accessHelper = accessHelper;
}
@Override
public void handle(String target, Request request, HttpServletRequest httpRequest, HttpServletResponse response) throws IOException, ServletException {
PostModuleFileData data = fromJson(request, PostModuleFileData.class);
Service service = getService(data.serviceId, null);
Team team = getTeam(service.getTeamId(), null);
Module module = getModule(data.moduleId, null, service);
User user = accessHelper.checkIfUserCanModify(request, team, "manage file for module");
if (data.environment == null || data.environment.isEmpty()) {
throw new Http400BadRequestException("attribute environment is missing");
}
data.name = data.name.trim();
if (data.name.contains(" ")) {
throw new Http400BadRequestException("attribute name is illegal");
}
if (data.originalName == null || data.originalName.isEmpty()) {
ModuleFile moduleFile = new ModuleFile(service.getServiceId(), module.getModuleId(), data.environment, data.name, data.contents);
getDataAccess().saveModuleFile(moduleFile);
createAudit(service.getServiceId(), module.getModuleName(), user.getUsername(), "Created file " + data.name + " on " + data.environment);
} else {
ModuleFile moduleFile = getDataAccess().getModuleFile(service.getServiceId(),
module.getModuleId(),
data.environment,
data.originalName);
if (moduleFile == null) {
throw new Http404NotFoundException("Could not find existing module file");
}
if (data.name.equalsIgnoreCase(data.originalName)) {
if (!data.contents.equals(moduleFile.getContents())) {
moduleFile.setContents(data.contents);
getDataAccess().updateModuleFile(moduleFile);
createAudit(service.getServiceId(), module.getModuleName(), user.getUsername(), "Updated file " + data.name + " on " + data.environment);
}
} else {
getDataAccess().deleteModuleFile(service.getServiceId(), module.getModuleId(), data.environment, data.originalName);
moduleFile = new ModuleFile(service.getServiceId(), module.getModuleId(), data.environment, data.name, data.contents);
getDataAccess().saveModuleFile(moduleFile);
createAudit(service.getServiceId(), module.getModuleName(), user.getUsername(), "Rename file " + data.originalName + " to " + data.name + " on " + data.environment);
}
}
response.setStatus(200);
request.setHandled(true);
}
private void createAudit(String serviceId, String moduleName, String requestor, String action) {
Map notes = new HashMap<>();
notes.put("action", action);
Audit audit = new Audit();
audit.serviceId = serviceId;
audit.moduleName = moduleName;
audit.setTimePerformed(GMT.getGmtAsDate());
audit.timeRequested = GMT.getGmtAsDate();
audit.requestor = requestor;
audit.type = Type.module;
audit.operation = Operation.update;
audit.successfull = true;
audit.notes = getGson().toJson(notes);
getDataAccess().saveAudit(audit, null);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy