-
Notifications
You must be signed in to change notification settings - Fork 185
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add an updateLock step to alter resources in pipelines #305
Open
gaspardpetit
wants to merge
4
commits into
jenkinsci:master
Choose a base branch
from
eidosmontreal:updateLock-step
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+544
−3
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
150 changes: 150 additions & 0 deletions
150
src/main/java/org/jenkins/plugins/lockableresources/UpdateLockStep.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,150 @@ | ||
package org.jenkins.plugins.lockableresources; | ||
|
||
import edu.umd.cs.findbugs.annotations.CheckForNull; | ||
import edu.umd.cs.findbugs.annotations.NonNull; | ||
import hudson.Extension; | ||
import hudson.model.AutoCompletionCandidates; | ||
import hudson.model.TaskListener; | ||
import hudson.util.FormValidation; | ||
import java.io.Serializable; | ||
import java.util.Collections; | ||
import java.util.Set; | ||
import org.apache.commons.lang.StringUtils; | ||
import org.jenkinsci.plugins.workflow.steps.Step; | ||
import org.jenkinsci.plugins.workflow.steps.StepContext; | ||
import org.jenkinsci.plugins.workflow.steps.StepDescriptor; | ||
import org.jenkinsci.plugins.workflow.steps.StepExecution; | ||
import org.kohsuke.stapler.DataBoundConstructor; | ||
import org.kohsuke.stapler.DataBoundSetter; | ||
import org.kohsuke.stapler.QueryParameter; | ||
|
||
public class UpdateLockStep extends Step implements Serializable { | ||
|
||
private static final long serialVersionUID = -7955849755535282258L; | ||
|
||
@CheckForNull | ||
public String resource = null; | ||
|
||
@CheckForNull | ||
public String addLabels = null; | ||
|
||
@CheckForNull | ||
public String setLabels = null; | ||
|
||
@CheckForNull | ||
public String removeLabels = null; | ||
|
||
@CheckForNull | ||
public String setNote = null; | ||
|
||
public boolean createResource = false; | ||
public boolean deleteResource = false; | ||
|
||
@DataBoundSetter | ||
public void setResource(String resource) { | ||
this.resource = resource; | ||
} | ||
|
||
@DataBoundSetter | ||
public void setAddLabels(String addLabels) { | ||
if (StringUtils.isNotBlank(addLabels)) { | ||
this.addLabels = addLabels; | ||
} | ||
} | ||
|
||
@DataBoundSetter | ||
public void setSetLabels(String setLabels) { | ||
if (StringUtils.isNotBlank(setLabels)) { | ||
this.setLabels = setLabels; | ||
} | ||
} | ||
|
||
@DataBoundSetter | ||
public void setRemoveLabels(String removeLabels) { | ||
if (StringUtils.isNotBlank(removeLabels)) { | ||
this.removeLabels = removeLabels; | ||
} | ||
} | ||
|
||
@DataBoundSetter | ||
public void setCreateResource(boolean createResource) { | ||
this.createResource = createResource; | ||
} | ||
|
||
@DataBoundSetter | ||
public void setDeleteResource(boolean deleteResource) { | ||
this.deleteResource = deleteResource; | ||
} | ||
|
||
@DataBoundSetter | ||
public void setSetNote(String setNote) { | ||
if (StringUtils.isNotBlank(setNote)) { | ||
this.setNote = setNote; | ||
} | ||
} | ||
|
||
@DataBoundConstructor | ||
public UpdateLockStep() { | ||
} | ||
|
||
|
||
@Extension | ||
public static final class DescriptorImpl extends StepDescriptor { | ||
|
||
@Override | ||
public String getFunctionName() { | ||
return "updateLock"; | ||
} | ||
|
||
@NonNull | ||
@Override | ||
public String getDisplayName() { | ||
return "Update the definition of a lock"; | ||
} | ||
|
||
@Override | ||
public boolean takesImplicitBlockArgument() { | ||
return false; | ||
} | ||
|
||
public AutoCompletionCandidates doAutoCompleteResource(@QueryParameter String value) { | ||
return RequiredResourcesProperty.DescriptorImpl.doAutoCompleteResourceNames(value); | ||
} | ||
|
||
public static FormValidation doCheckResource( | ||
@QueryParameter String value) { | ||
return UpdateLockStepResource.DescriptorImpl.doCheckResource(value); | ||
} | ||
|
||
public static FormValidation doCheckAddLabels( | ||
@QueryParameter String value, @QueryParameter String setLabels) { | ||
return UpdateLockStepResource.DescriptorImpl.doCheckLabelOperations(value, setLabels); | ||
} | ||
|
||
public static FormValidation doCheckRemoveLabels( | ||
@QueryParameter String value, @QueryParameter String setLabels) { | ||
return UpdateLockStepResource.DescriptorImpl.doCheckLabelOperations(value, setLabels); | ||
} | ||
|
||
public static FormValidation doCheckDelete( | ||
@QueryParameter boolean value, @QueryParameter String setLabels, @QueryParameter String addLabels, @QueryParameter String removeLabels, @QueryParameter String setNote, @QueryParameter boolean createResource) { | ||
return UpdateLockStepResource.DescriptorImpl.doCheckDelete(value, setLabels,addLabels, removeLabels, setNote, createResource); | ||
} | ||
|
||
@Override | ||
public Set<Class<?>> getRequiredContext() { | ||
return Collections.singleton(TaskListener.class); | ||
} | ||
} | ||
|
||
@Override | ||
public StepExecution start(StepContext context) { | ||
return new UpdateLockStepExecution(this, context); | ||
} | ||
|
||
public void validate() { | ||
if (StringUtils.isBlank(resource)) { | ||
throw new IllegalArgumentException("The resource name must be specified."); | ||
} | ||
} | ||
} |
67 changes: 67 additions & 0 deletions
67
src/main/java/org/jenkins/plugins/lockableresources/UpdateLockStepExecution.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
package org.jenkins.plugins.lockableresources; | ||
|
||
import java.io.Serializable; | ||
import java.util.ArrayList; | ||
import java.util.Arrays; | ||
import java.util.List; | ||
import java.util.logging.Logger; | ||
import java.util.stream.Collectors; | ||
import org.jenkinsci.plugins.workflow.steps.AbstractStepExecutionImpl; | ||
import org.jenkinsci.plugins.workflow.steps.StepContext; | ||
|
||
public class UpdateLockStepExecution extends AbstractStepExecutionImpl implements Serializable { | ||
|
||
private static final long serialVersionUID = 1583205294263267002L; | ||
|
||
private static final Logger LOGGER = Logger.getLogger(UpdateLockStepExecution.class.getName()); | ||
|
||
private final UpdateLockStep step; | ||
|
||
public UpdateLockStepExecution(UpdateLockStep step, StepContext context) { | ||
super(context); | ||
this.step = step; | ||
} | ||
|
||
@Override | ||
public boolean start() throws Exception { | ||
this.step.validate(); | ||
|
||
if (this.step.deleteResource) { | ||
LockableResourcesManager.get().deleteResource(this.step.resource); | ||
} | ||
else { | ||
LockableResource resource = LockableResourcesManager.get().fromName(this.step.resource); | ||
LockableResourcesManager lockableResourcesManager = LockableResourcesManager.get(); | ||
if (resource == null && this.step.createResource) { | ||
lockableResourcesManager.createResource(this.step.resource); | ||
resource = lockableResourcesManager.fromName(this.step.resource); | ||
resource.setEphemeral(false); | ||
} | ||
|
||
if (this.step.setLabels != null) { | ||
List<String> setLabels = Arrays.asList(this.step.setLabels.trim().split("\\s+")); | ||
resource.setLabels(setLabels.stream().collect(Collectors.joining(" "))); | ||
} else if (this.step.addLabels != null || this.step.removeLabels != null) { | ||
List<String> labels = new ArrayList<>(Arrays.asList(resource.getLabels().split("\\s+"))); | ||
if (this.step.addLabels != null) { | ||
List<String> addLabels = Arrays.asList(this.step.addLabels.trim().split("\\s+")); | ||
addLabels.stream().filter(l -> labels.contains(l) == false).forEach(labels::add); | ||
} | ||
if (this.step.removeLabels != null) { | ||
List<String> removeLabels = Arrays.asList(this.step.removeLabels.trim().split("\\s+")); | ||
labels.removeAll(removeLabels); | ||
} | ||
resource.setLabels(labels.stream().collect(Collectors.joining(" "))); | ||
} | ||
|
||
if (this.step.setNote != null) { | ||
resource.setNote(this.step.setNote); | ||
} | ||
|
||
lockableResourcesManager.save(); | ||
} | ||
|
||
getContext().onSuccess(null); | ||
return true; | ||
} | ||
} |
64 changes: 64 additions & 0 deletions
64
src/main/java/org/jenkins/plugins/lockableresources/UpdateLockStepResource.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
package org.jenkins.plugins.lockableresources; | ||
|
||
import edu.umd.cs.findbugs.annotations.NonNull; | ||
import hudson.Extension; | ||
import hudson.Util; | ||
import hudson.model.AbstractDescribableImpl; | ||
import hudson.model.AutoCompletionCandidates; | ||
import hudson.model.Descriptor; | ||
import hudson.util.FormValidation; | ||
import java.io.Serializable; | ||
import org.kohsuke.stapler.QueryParameter; | ||
|
||
public class UpdateLockStepResource extends AbstractDescribableImpl<UpdateLockStepResource> implements Serializable { | ||
|
||
private static final long serialVersionUID = -3689811142454137183L; | ||
|
||
|
||
@Extension | ||
public static class DescriptorImpl extends Descriptor<UpdateLockStepResource> { | ||
|
||
@NonNull | ||
@Override | ||
public String getDisplayName() { | ||
return "Resource Update"; | ||
} | ||
|
||
public AutoCompletionCandidates doAutoCompleteResource(@QueryParameter String value) { | ||
return RequiredResourcesProperty.DescriptorImpl.doAutoCompleteResourceNames(value); | ||
} | ||
|
||
public static FormValidation doCheckLabelOperations(String value, String setLabels) { | ||
String updateLabel = Util.fixEmpty(value); | ||
setLabels = Util.fixEmpty(setLabels); | ||
|
||
if (setLabels != null && updateLabel != null) { | ||
return FormValidation.error("Cannot set and update labels at the same time."); | ||
} | ||
return FormValidation.ok(); | ||
} | ||
|
||
public static FormValidation doCheckResource(@QueryParameter String value) { | ||
String resourceName = Util.fixEmpty(value); | ||
if (resourceName == null) { | ||
return FormValidation.error("Resource name cannot be empty."); | ||
} | ||
return FormValidation.ok(); | ||
} | ||
|
||
public static FormValidation doCheckDelete(boolean value, String setLabels, String addLabels, String removeLabels, String setNote, boolean createResource) { | ||
if (!value) { | ||
return FormValidation.ok(); | ||
} | ||
|
||
if (createResource) { | ||
return FormValidation.error("Cannot create and delete a resource."); | ||
} | ||
|
||
if (Util.fixEmpty(setLabels) != null || Util.fixEmpty(addLabels) != null || Util.fixEmpty(removeLabels) != null || Util.fixEmpty(setNote) != null) { | ||
return FormValidation.error("Cannot update and delete a resource."); | ||
} | ||
return FormValidation.ok(); | ||
} | ||
} | ||
} |
25 changes: 25 additions & 0 deletions
25
src/main/resources/org/jenkins/plugins/lockableresources/UpdateLockStep/config.jelly
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?jelly escape-by-default='true'?> | ||
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define" | ||
xmlns:l="/lib/layout" xmlns:t="/lib/hudson" xmlns:f="/lib/form"> | ||
<f:entry title="${%Resource}" field="resource"> | ||
<f:textbox/> | ||
</f:entry> | ||
<f:entry title="${%Set Labels}" field="setLabels"> | ||
<f:textbox/> | ||
</f:entry> | ||
<f:entry title="${%Add Labels}" field="addLabels"> | ||
<f:textbox/> | ||
</f:entry> | ||
<f:entry title="${%Remove Labels}" field="removeLabels"> | ||
<f:textbox/> | ||
</f:entry> | ||
<f:entry title="${%Set Note}" field="setNote"> | ||
<f:textbox/> | ||
</f:entry> | ||
<f:entry field="createResource"> | ||
<f:checkbox title="${%Create if Missing}"/> | ||
</f:entry> | ||
<f:entry field="deleteResource"> | ||
<f:checkbox title="${%Delete Existing}"/> | ||
</f:entry> | ||
</j:jelly> |
5 changes: 5 additions & 0 deletions
5
src/main/resources/org/jenkins/plugins/lockableresources/UpdateLockStep/help-addLabels.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<div> | ||
<p> | ||
Appends to the current labels with the ones specified as a space-separated list. | ||
</p> | ||
</div> |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the user shall be inform about that
One hit more. What happens, when other job is waiting for this resource? This one will be on release deleted. The next one will create it again, or in worst case crashed the job.