MailAddressResolver.java 6.3 KB
Newer Older
1 2 3 4 5 6 7
package hudson.tasks;

import hudson.ExtensionPoint;
import hudson.Plugin;
import hudson.scm.SCM;
import hudson.scm.CVSSCM;
import hudson.scm.SubversionSCM;
8
import hudson.model.AbstractBuild;
9 10 11 12 13 14 15
import hudson.model.User;
import hudson.model.AbstractProject;

import java.util.List;
import java.util.Map;
import java.util.HashMap;
import java.util.regex.Pattern;
K
kohsuke 已提交
16
import java.util.regex.Matcher;
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
import java.util.concurrent.CopyOnWriteArrayList;

/**
 * Infers e-mail addresses for the user when none is specified.
 *
 * <p>
 * This is an extension point of Hudson. Plugins tha contribute new implementation
 * of this class must register it to {@link #LIST}. The typical way to do this is:
 *
 * <pre>
 * class PluginImpl extends {@link Plugin} {
 *   public void start() {
 *     ...
 *     MailAddressResolver.LIST.add(new MyMailAddressResolver());
 *   }
 * }
 * </pre>
 *
 * @author Kohsuke Kawaguchi
36
 * @since 1.192
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
 */
public abstract class MailAddressResolver implements ExtensionPoint {
    /**
     * Infers e-mail address of the given user.
     *
     * <p>
     * This method is called when a {@link User} without explicitly configured e-mail
     * address is used, as an attempt to infer e-mail address.
     *
     * <p>
     * The normal strategy is to look at {@link User#getProjects() the projects that the user
     * is participating}, then use the repository information to infer the e-mail address.
     *
     * <p>
     * When multiple resolvers are installed, they are consulted in order and
     * the search will be over when an address is inferred by someone.
     *
     * <p>
     * Since {@link MailAddressResolver} is singleton, this method can be invoked concurrently
     * from multiple threads.
     *
     * @return
     *      null if the inference failed.
     */
    public abstract String findMailAddressFor(User u);
    
63
	public static String resolve(AbstractBuild<?, ?> build, User u) {
64
        for (MailAddressResolver r : LIST) {
65 66 67 68 69 70 71
        	String email = null;
        	
        	if(build != null)
            email = r.findMailAddressFor(build, u);
        	else
        		email = r.findMailAddressFor(u);
        	
72 73
            if(email!=null) return email;
        }
K
kohsuke 已提交
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88

        // fall back logic
        String extractedAddress = extractAddressFromId(u.getId());
        if (extractedAddress != null)
                return extractedAddress;

        if(u.getId().contains("@"))
            // this already looks like an e-mail ID
            return u.getId();

        String ds = Mailer.DESCRIPTOR.getDefaultSuffix();
        if(ds!=null)
            return u.getId()+ds;
        else
            return null;
89 90 91 92 93 94 95 96
	}
	
    protected String findMailAddressFor(AbstractBuild<?, ?> build, User u) {
    	return findMailAddressFor(u);
	}

	public static String resolve(User u) {
    	return resolve(null, u);
K
kohsuke 已提交
97 98 99 100 101 102 103 104 105 106
    }

    /**
     * Tries to extract an email address from the user id, or returns null
     */
    private static String extractAddressFromId(String id) {
        Matcher m = EMAIL_ADDRESS_REGEXP.matcher(id);
        if(m.matches())
    		return m.group(1);
    	return null;
107 108
    }

K
kohsuke 已提交
109 110 111 112 113 114
    /**
     * Matches strings like "Kohsuke Kawaguchi &lt;kohsuke.kawaguchi@sun.com>"
     * @see #extractAddressFromId(String)
     */
    private static final Pattern EMAIL_ADDRESS_REGEXP = Pattern.compile("^.*<([^>]+)>.*$");

115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134

    /**
     * All registered {@link MailAddressResolver} implementations.
     */
    public static final List<MailAddressResolver> LIST = new CopyOnWriteArrayList<MailAddressResolver>();

    static {
        // register built-in instances
        LIST.add(new DefaultAddressResolver());
    }

    /**
     * {@link MailAddressResolver} implemenations that cover well-known major public sites.
     *
     * <p>
     * Since this has low UI visibility, we are open to having a large number of rules here.
     * If you'd like to add one, please contribute more rules.
     */
    public static class DefaultAddressResolver extends MailAddressResolver {
        public String findMailAddressFor(User u) {
135 136 137 138
        	return findMailAddressFor(null, u);
        }
        
        public String findMailAddressFor(AbstractBuild<?, ?>build, User u) {
139 140 141 142 143 144 145 146 147 148
            for (AbstractProject<?,?> p : u.getProjects()) {
                SCM scm = p.getScm();
                if (scm instanceof CVSSCM) {
                    CVSSCM cvsscm = (CVSSCM) scm;
                    
                    String s = findMailAddressFor(u,cvsscm.getCvsRoot());
                    if(s!=null) return s;
                }
                if (scm instanceof SubversionSCM) {
                    SubversionSCM svn = (SubversionSCM) scm;
149
                    for (SubversionSCM.ModuleLocation loc : svn.getLocations(build)) {
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
                        String s = findMailAddressFor(u,loc.remote);
                        if(s!=null) return s;
                    }
                }
            }

            // didn't hit any known rules
            return null;
        }

        /**
         *
         * @param scm
         *      String that represents SCM connectivity.
         */
        protected String findMailAddressFor(User u, String scm) {
            for (Map.Entry<Pattern, String> e : RULE_TABLE.entrySet())
                if(e.getKey().matcher(scm).matches())
                    return u.getId()+e.getValue();
            return null;
        }

        private static final Map<Pattern,String/*suffix*/> RULE_TABLE = new HashMap<Pattern, String>();

        static {
            {// java.net
                Pattern svnurl = Pattern.compile("https://[^.]+.dev.java.net/svn/([^/]+)(/.*)?");

                String username = "([A-Za-z0-9_\\-])+";
                String host = "(.*.dev.java.net|kohsuke.sfbay.*)";
                Pattern cvsUrl = Pattern.compile(":pserver:"+username+"@"+host+":/cvs");

                RULE_TABLE.put(svnurl,"@dev.java.net");
                RULE_TABLE.put(cvsUrl,"@dev.java.net");
            }

            {// source forge
187
                Pattern svnUrl = Pattern.compile("(http|https)://[^.]+.svn.(sourceforge|sf).net/svnroot/([^/]+)(/.*)?");
188
                Pattern cvsUrl = Pattern.compile(":(pserver|ext):([^@]+)@([^.]+).cvs.(sourceforge|sf).net:.+");
189 190

                RULE_TABLE.put(svnUrl,"@users.sourceforge.net");
191 192 193 194 195 196 197 198
                RULE_TABLE.put(cvsUrl,"@users.sourceforge.net");
            }

            // TODO: read some file under $HUDSON_HOME?
        }

    }
}