BugzillaEmail.pm 3.09 KB
Newer Older
seth%cs.brandeis.edu's avatar
seth%cs.brandeis.edu committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
# -*- Mode: perl; indent-tabs-mode: nil -*-

# The contents of this file are subject to the Mozilla Public
# License Version 1.1 (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.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
# implied. See the License for the specific language governing
# rights and limitations under the License.
#
# This code is based on code found in bug_email.pl from the bugzilla
# email tracker.  Initial contributors are :: 
#                 Terry Weissman <terry@mozilla.org>
#                 Gregor Fischer <fischer@suse.de>
#                 Klaas Freitag  <freitag@suse.de>
#                 Seth Landsman  <seth@dworkin.net>
19
#                 Lance Larsh <lance.larsh@oracle.com>
seth%cs.brandeis.edu's avatar
seth%cs.brandeis.edu committed
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34

# The purpose of this module is to abstract out a bunch of the code
#  that is central to email interfaces to bugzilla and its database

# Contributor : Seth Landsman <seth@dworkin.net>

# Initial checkin : 03/15/00 (SML)
#  findUser() function moved from bug_email.pl to here

push @INC, "../."; # this script now lives in contrib

require "globals.pl";

use strict;

35

seth%cs.brandeis.edu's avatar
seth%cs.brandeis.edu committed
36 37 38 39 40 41 42 43 44 45
my $EMAIL_TRANSFORM_NONE = "email_transform_none";
my $EMAIL_TRANSFORM_BASE_DOMAIN = "email_transform_base_domain";
my $EMAIL_TRANSFORM_NAME_ONLY = "email_transform_name_only";

# change to do incoming email address fuzzy matching
my $email_transform = $EMAIL_TRANSFORM_NAME_ONLY;

# This function takes an email address and returns the user email.
# matching is sloppy based on the $email_transform parameter
sub findUser($) {
46 47 48 49 50 51 52 53 54 55 56 57
    my $dbh = Bugzilla->dbh;
    my ($address) = @_;
    # if $email_transform is $EMAIL_TRANSFORM_NONE, return the address, otherwise, return undef
    if ($email_transform eq $EMAIL_TRANSFORM_NONE) {
        my $stmt = q{SELECT login_name FROM profiles WHERE } .
                   $dbh->sql_istrcmp('login_name', '?');
        my $found_address = $dbh->selectrow_array($stmt, undef, $address);
        return $found_address;
    } elsif ($email_transform eq $EMAIL_TRANSFORM_BASE_DOMAIN) {
        my ($username) = ($address =~ /(.+)@/);
        my $stmt = q{SELECT login_name FROM profiles WHERE } . $dbh->sql_regexp(
                   $dbh->sql_istring('login_name'), $dbh->sql_istring('?'));
seth%cs.brandeis.edu's avatar
seth%cs.brandeis.edu committed
58

59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
        my $found_address = $dbh->selectcol_arrayref($stmt, undef, $username);
        my $domain;
        my $new_address = undef;
        foreach my $addr (@$found_address) {
            ($domain) = ($addr =~ /.+@(.+)/);
            if ($address =~ /$domain/) {
                $new_address = $addr;
                last;
            }
        }
        return $new_address;
    } elsif ($email_transform eq $EMAIL_TRANSFORM_NAME_ONLY) {
        my ($username) = ($address =~ /(.+)@/);
        my $stmt = q{SELECT login_name FROM profiles WHERE } . $dbh->sql_regexp(
                    $dbh->sql_istring('login_name'), $dbh->sql_istring('?'));
        my $found_address = $dbh->selectrow_array($stmt, undef, $username);
        return $found_address;
seth%cs.brandeis.edu's avatar
seth%cs.brandeis.edu committed
76 77 78 79
    }
}

1;