Skip to content

Commit

Permalink
initial version
Browse files Browse the repository at this point in the history
  • Loading branch information
kohsuke committed Oct 9, 2010
1 parent 261f2e3 commit 67b143d
Show file tree
Hide file tree
Showing 8 changed files with 360 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pom.xml
@@ -0,0 +1,25 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.jvnet.hudson.plugins</groupId>
<artifactId>plugin</artifactId>
<version>1.352</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>persona</artifactId>
<packaging>hpi</packaging>
<name>Hudson Persona Plugin</name>
<version>1.0-SNAPSHOT</version>
<url>http://wiki.hudson-ci.org/display/HUDSON/Persona+Plugin</url>

<developers>
<developer>
<id>kohsuke</id>
<name>Kohsuke Kawaguchi</name>
<email>kohsuke@infradna.com</email>
</developer>
</developers>
</project>
39 changes: 39 additions & 0 deletions src/main/java/hudson/plugins/persona/DefaultQuoteImpl.java
@@ -0,0 +1,39 @@
/*
* The MIT License
*
* Copyright (c) 2010, InfraDNA, Inc.
*
* 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 hudson.plugins.persona;

import hudson.model.InvisibleAction;

/**
* Default implementation of quote that renders a simple non-localized text.
*
* @author Kohsuke Kawaguchi
*/
public final class DefaultQuoteImpl extends InvisibleAction implements Quote {
public final String quote;

public DefaultQuoteImpl(String quote) {
this.quote = quote;
}
}
17 changes: 17 additions & 0 deletions src/main/java/hudson/plugins/persona/Image.java
@@ -0,0 +1,17 @@
package hudson.plugins.persona;

/**
* @author Kohsuke Kawaguchi
*/
public class Image {
/**
* 16x16 icon
*/
public final String smallIconUrl;
public final String backgroundImageUrl;

public Image(String smallIconUrl, String backgroundImageUrl) {
this.smallIconUrl = smallIconUrl;
this.backgroundImageUrl = backgroundImageUrl;
}
}
82 changes: 82 additions & 0 deletions src/main/java/hudson/plugins/persona/Persona.java
@@ -0,0 +1,82 @@
/*
* The MIT License
*
* Copyright (c) 2010, InfraDNA, Inc.
*
* 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 hudson.plugins.persona;

import com.thoughtworks.xstream.converters.basic.AbstractBasicConverter;
import hudson.ExtensionList;
import hudson.ExtensionPoint;
import hudson.model.AbstractBuild;
import hudson.model.Action;
import hudson.model.Hudson;
import hudson.model.ModelObject;

/**
* @author Kohsuke Kawaguchi
*/
public abstract class Persona implements ExtensionPoint, ModelObject {
public final String id;

protected Persona(String id) {
this.id = id;
}

/**
* Generates a random quote for the given build.
*
* @see DefaultQuoteImpl
*/
public abstract Action generateQuote(AbstractBuild<?,?> build);

/**
* Returns all the registered {@link Persona}s.
*/
public static ExtensionList<Persona> all() {
return Hudson.getInstance().getExtensionList(Persona.class);
}

public static Persona byId(String id) {
for (Persona p : all()) {
if (p.id.equals(id))
return p;
}
return null;
}

public static final class ConverterImpl extends AbstractBasicConverter {
@Override
protected Persona fromString(String id) {
return byId(id);
}

@Override
protected String toString(Object obj) {
return ((Persona)obj).id;
}

@Override
public boolean canConvert(Class type) {
return type==Persona.class;
}
}
}
34 changes: 34 additions & 0 deletions src/main/java/hudson/plugins/persona/Quote.java
@@ -0,0 +1,34 @@
/*
* The MIT License
*
* Copyright (c) 2010, InfraDNA, Inc.
*
* 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 hudson.plugins.persona;

import hudson.model.Action;

/**
* Marks those actions that are quotes from persona.
*
* @author Kohsuke Kawaguchi
*/
public interface Quote extends Action {
}
97 changes: 97 additions & 0 deletions src/main/java/hudson/plugins/persona/QuotePublisher.java
@@ -0,0 +1,97 @@
/*
* The MIT License
*
* Copyright (c) 2010, InfraDNA, Inc.
*
* 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 hudson.plugins.persona;

import hudson.Launcher;
import hudson.model.AbstractBuild;
import hudson.model.AbstractProject;
import hudson.model.Action;
import hudson.model.BuildListener;
import hudson.tasks.BuildStepDescriptor;
import hudson.tasks.BuildStepMonitor;
import hudson.tasks.Notifier;
import hudson.tasks.Publisher;
import hudson.util.ListBoxModel;
import org.kohsuke.stapler.DataBoundConstructor;

import java.io.IOException;

/**
* @author Kohsuke Kawaguchi
*/
public class QuotePublisher extends Notifier {
public final Persona persona;

@DataBoundConstructor
public QuotePublisher(String personaId) {
this.persona = Persona.byId(personaId);
}

public String getPersonaId() {
return persona!=null ? persona.id : null;
}

public BuildStepMonitor getRequiredMonitorService() {
return BuildStepMonitor.NONE;
}

@Override
public Action getProjectAction(AbstractProject<?, ?> project) {
AbstractBuild<?, ?> lb = project.getLastBuild();
if (lb!=null) {
Quote q = lb.getAction(Quote.class);
if (q!=null) return q;
if (persona !=null)
return persona.generateQuote(lb);
}
return null;
}

@Override
public boolean perform(AbstractBuild<?, ?> build, Launcher launcher, BuildListener listener) throws InterruptedException, IOException {
if (persona !=null)
build.getActions().add(persona.generateQuote(build));
return true;
}

public static class DescriptorImpl extends BuildStepDescriptor<Publisher> {
@Override
public boolean isApplicable(Class<? extends AbstractProject> jobType) {
return true;
}

@Override
public String getDisplayName() {
return "Associate Quotes";
}

public ListBoxModel doFillPersonaItems() {
ListBoxModel r = new ListBoxModel();
for (Persona p : Persona.all()) {
r.add(p.getDisplayName(),p.id);
}
return r;
}
}
}
@@ -0,0 +1,37 @@
<!--
The MIT License
Copyright (c) 2009 Cliffano Subagio
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:st="jelly:stapler" xmlns:d="jelly:define" xmlns:l="/lib/layout" xmlns:t="/lib/hudson" xmlns:f="/lib/form" xmlns:i="jelly:fmt" xmlns:local="local">
<img src="${rootURL}/plugin/chucknorris/images/icon.jpg" width="16" height="16" alt="${from.displayName} Icon"/><st:nbsp/><j:out value="${from.fact}"/>
<script>
Element.setStyle($('main-table'), {
'background-image': 'none'
});
Element.setStyle($('main-panel'), {
'background-image': 'url(${rootURL}/plugin/chucknorris/images/<j:out value="${from.style.toString().toLowerCase()}"/>.jpg)',
'background-repeat': 'no-repeat',
'background-position': 'bottom right',
'padding-bottom': '270px'
});
</script>
</j:jelly>
@@ -0,0 +1,29 @@
<!--
The MIT License
Copyright (c) 2010, InfraDNA, Inc.
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.
-->
<?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" xmlns:i="jelly:fmt" xmlns:p="/lib/hudson/project">
<f:entry title="${%Persona}" field="personaId">
<f:select />
</f:entry>
</j:jelly>

0 comments on commit 67b143d

Please sign in to comment.