com.marvelution.jenkins.plugins.jira.action.JIRABuildNotifierConfigurationAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jenkins-jira-plugin Show documentation
Show all versions of jenkins-jira-plugin Show documentation
Jenkins plugin for integrating with JIRA
/*
* JIRA Plugin for Jenkins
* Copyright (C) 2012 Marvelution
* [email protected]
*
* 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.marvelution.jenkins.plugins.jira.action;
import com.marvelution.jenkins.plugins.jira.notifier.JIRABuildNotifier;
import hudson.model.*;
import hudson.security.AccessDeniedException2;
import hudson.tasks.Publisher;
import hudson.util.DescribableList;
import org.apache.commons.lang.StringUtils;
import org.kohsuke.stapler.StaplerRequest;
import org.kohsuke.stapler.StaplerResponse;
import javax.servlet.ServletException;
import java.io.IOException;
import java.util.logging.Level;
import java.util.logging.Logger;
import static com.google.common.base.Preconditions.checkArgument;
/**
* {@link Action} implementation that is used by JIRA to configure a {@link JIRABuildNotifier} for its job
*
* @author Mark Rekveld
* @since 1.0.0
*/
public class JIRABuildNotifierConfigurationAction implements Action {
static final String URL_NAME = "jira";
static final String POST_URL_PARAMETER = "postUrl";
private static final Logger LOGGER = Logger.getLogger(JIRABuildNotifierConfigurationAction.class.getName());
private final AbstractProject target;
/**
* Constructor
*
* @param target the {@link AbstractProject} target of this action
*/
public JIRABuildNotifierConfigurationAction(AbstractProject target) {
this.target = target;
}
@Override
public String getIconFileName() {
return null;
}
@Override
public String getDisplayName() {
return null;
}
@Override
public String getUrlName() {
return URL_NAME;
}
/**
* Dynamic method implementation that is called then this action is visited.
* It will add a new or replace the existing {@link JIRABuildNotifier}
*
* @param request the {@link StaplerRequest}
* @param response the {@link StaplerResponse}
* @throws IOException in case of IO errors
* @throws ServletException in case of Servlet Errors
*/
@SuppressWarnings("unchecked")
public void doDynamic(final String token, final StaplerRequest request, final StaplerResponse response) throws
IOException, ServletException {
if (target.hasPermission(Item.CONFIGURE)) {
if ("POST".equalsIgnoreCase(request.getMethod()) && request.hasParameter(POST_URL_PARAMETER)) {
String postUrl = request.getParameter(POST_URL_PARAMETER);
checkArgument(StringUtils.isNotBlank(postUrl), "No Post URL given");
DescribableList> publishers = target.getPublishersList();
JIRABuildNotifier newNotifier = new JIRABuildNotifier(postUrl);
JIRABuildNotifier currentNotifier = publishers.get(JIRABuildNotifier.class);
if (currentNotifier == null) {
publishers.add(newNotifier);
response.getWriter().write("Successfully added a new JIRA Build Notifier");
} else if (!currentNotifier.postUrl.equals(postUrl)) {
publishers.replace(currentNotifier, newNotifier);
response.getWriter().write("Successfully replaced the existing JIRA Build Notifier");
} else {
response.getWriter().write("JIRA Build Notifier is already configured");
}
LOGGER.log(Level.FINE, "Configured postUrl [" + postUrl + "] for " + target.getName());
} else {
LOGGER.warning("Invalid call to configure a JIRABuildNotifier for " + target.getName());
}
} else {
throw new AccessDeniedException2(Hudson.getAuthentication(), Item.CONFIGURE);
}
}
}