Skip to content
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 a trigger for comment containing a specified RegEx #170

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -62,7 +62,7 @@
<dependency>
<groupId>com.sonymobile.tools.gerrit</groupId>
<artifactId>gerrit-events</artifactId>
<version>2.1.0</version>
<version>2.2.0</version>
<!-- New source is here: https://github.com/sonyxperiadev/gerrit-events -->
</dependency>
<dependency>
Expand Down
Expand Up @@ -55,6 +55,7 @@
import com.sonyericsson.hudson.plugins.gerrit.trigger.hudsontrigger.data.GerritProject;
import com.sonyericsson.hudson.plugins.gerrit.trigger.hudsontrigger.data.SkipVote;
import com.sonyericsson.hudson.plugins.gerrit.trigger.hudsontrigger.data.TriggerContext;
import com.sonyericsson.hudson.plugins.gerrit.trigger.hudsontrigger.events.PluginCommentAddedContainsEvent;
import com.sonyericsson.hudson.plugins.gerrit.trigger.hudsontrigger.events.PluginCommentAddedEvent;
import com.sonyericsson.hudson.plugins.gerrit.trigger.hudsontrigger.events.PluginDraftPublishedEvent;
import com.sonyericsson.hudson.plugins.gerrit.trigger.hudsontrigger.events.PluginGerritEvent;
Expand Down Expand Up @@ -908,7 +909,7 @@ private boolean isServerInteresting(GerritTriggeredEvent event) {
* @param event the event.
* @return true if the event matches the approval category and value configured.
*/
private boolean matchesApproval(CommentAdded event) {
private boolean commentAddedMatch(CommentAdded event) {
PluginCommentAddedEvent commentAdded = null;
for (PluginGerritEvent e : triggerOnEvents) {
if (e instanceof PluginCommentAddedEvent) {
Expand All @@ -921,6 +922,11 @@ private boolean matchesApproval(CommentAdded event) {
}
}
}
if (e instanceof PluginCommentAddedContainsEvent) {
if (((PluginCommentAddedContainsEvent)e).match(event)) {
return true;
}
}
}
return false;
}
Expand All @@ -936,8 +942,8 @@ public void gerritEvent(CommentAdded event) {
logger.trace("Already building.");
return;
}
if (isInteresting(event) && matchesApproval(event)) {
logger.trace("The event is interesting.");
if (isInteresting(event) && commentAddedMatch(event)) {
logger.info("The event is interesting.");
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, I missed that you had changed the log level. Please change it back to trace as it could spam the log too much on big installations.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Never mind, the rest looks good so I can change it after the merge.

notifyOnTriggered(event);
schedule(new GerritCause(event, silentMode), event);
}
Expand Down
@@ -0,0 +1,116 @@
/*
* The MIT License
*
* Copyright 2013 Criteo SA. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package com.sonyericsson.hudson.plugins.gerrit.trigger.hudsontrigger.events;

import hudson.Extension;

import java.io.Serializable;
import java.util.regex.Pattern;

import org.kohsuke.stapler.DataBoundConstructor;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.sonyericsson.hudson.plugins.gerrit.trigger.Messages;
import com.sonymobile.tools.gerrit.gerritevents.dto.events.CommentAdded;
import com.sonymobile.tools.gerrit.gerritevents.dto.events.GerritTriggeredEvent;

/**
* An event configuration that trigger the build when a comment is added and
* contains a message matching a configurable RegEx.
*
* @author Francois Visconte &lt;f.visconte@criteo.com&gt;
*/
public class PluginCommentAddedContainsEvent extends PluginGerritEvent
implements Serializable {

/**
* The descriptor for PluginCommentAddedContainsEvent.
*/
@Extension
public static class PluginCommentAddedContainsEventDescriptor extends
PluginGerritEventDescriptor {

@Override
public String getDisplayName() {
return Messages.CommentAddedContainsDisplayName();
}
}

private static final long serialVersionUID = -1190562081236235820L;

private String commentAddedCommentContains;

private static final Logger logger = LoggerFactory
.getLogger(PluginCommentAddedContainsEvent.class);

/**
* Empty constructor for serializer.
*/
public PluginCommentAddedContainsEvent() {
}

/**
* Standard DataBoundConstructor.
*
* @param commentAddedCommentContains a string containg a regular expression.
*/
@DataBoundConstructor
public PluginCommentAddedContainsEvent(String commentAddedCommentContains) {
this.commentAddedCommentContains = commentAddedCommentContains;

}

/**
* Get the regular expression to match against comment.
* @return a string containg a regex.
*/
public String getCommentAddedCommentContains() {
return commentAddedCommentContains;
}

/**
* Gets related event class.
* @return a Class
*/
@Override
public Class getCorrespondingEventClass() {
return CommentAdded.class;
}

/**
* Check if the comment added match configured regular expression.
* @param event a GerritTriggeredEvent.
* @return true or false.
*/
public boolean match(GerritTriggeredEvent event) {
if (!super.shouldTriggerOn(event)) {
return false;
}
Pattern p = Pattern
.compile(commentAddedCommentContains, Pattern.DOTALL);
CommentAdded ca = (CommentAdded)event;
return p.matcher(ca.getComment()).find();
}
}
Expand Up @@ -84,6 +84,8 @@ CommentAddedDisplayName=\
Comment Added
PatchsetCreatedDisplayName=\
Patchset Created
CommentAddedContainsDisplayName=\
Comment Added Contains Regular Expression
DraftPublishedDisplayName=\
Draft Published
RefUpdatedDisplayName=\
Expand Down
@@ -0,0 +1,28 @@
<!--
~ The MIT License
~
~ Copyright 2012 Sony Mobile Communications AB. All rights reserved.
~
~ Permission is hereby granted, free of charge, to any person obtaining a copy
~ of this software and associated documentation files (the "Software"), to deal
~ in the Software without restriction, including without limitation the rights
~ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
~ copies of the Software, and to permit persons to whom the Software is
~ furnished to do so, subject to the following conditions:
~
~ The above copyright notice and this permission notice shall be included in
~ all copies or substantial portions of the Software.
~
~ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
~ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
~ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
~ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
~ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
~ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
~ THE SOFTWARE.
-->
<j:jelly xmlns:j="jelly:core" xmlns:f="/lib/form">
<f:entry title="${%Value}" field="commentAddedCommentContains">
<f:textbox name="commentAddedCommentContains" field="commentAddedCommentContains"/>
</f:entry>
</j:jelly>