bug_email.pl 37.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
#!/usr/bin/perl -w
# -*- 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.
#
# The Original Code is the Bugzilla Bug Tracking System.
#
# The Initial Developer of the Original Code is Netscape Communications
# Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
# Contributor(s): Terry Weissman <terry@mozilla.org>
#                 Gregor Fischer <fischer@suse.de>
#                 Klaas Freitag  <freitag@suse.de>
#                 Seth Landsman  <seth@dworkin.net>
24
#                 Ludovic Dubost <ludovic@pobox.com>
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
###############################################################
# Bugzilla: Create a new bug via email
###############################################################
# The email needs to be feeded to this program on STDIN. 
# This is usually done by having an entry like this in your 
# .procmailrc:
# 
#     BUGZILLA_HOME=/usr/local/httpd/htdocs/bugzilla
#     :0 c
#     |(cd $BUGZILLA_HOME/contrib; ./bug_email.pl)
# 
#
# Installation note:
#
# You need to work with bug_email.pl the MIME::Parser installed.
# 
41
# $Id: bug_email.pl,v 1.29 2005/08/26 23:11:32 bugreport%peshkin.net Exp $
42 43 44 45 46 47 48
###############################################################

# 02/12/2000 (SML)
# - updates to work with most recent database changes to the bugs database
# - updated so that it works out of bugzilla/contrib
# - initial checkin into the mozilla CVS tree (yay)

49 50 51 52 53 54 55 56
# 02/13/2000 (SML)
# - email transformation code.  
#   EMAIL_TRANSFORM_NONE does exact email matches
#   EMAIL_TRANSFORM_NAME_ONLY matches on the username 
#   EMAIL_TRANSFORM_BASE_DOMAIN matches on the username and checks the domain of
#    to see that the one in the database is a subset of the one in the sender address
#    this is probably prone to false positives and probably needs more work.

57 58 59 60 61
# 03/07/2000 (SML)
# - added in $DEFAULT_PRODUCT and $DEFAULT_COMPONENT.  i.e., if $DEFAULT_PRODUCT = "PENDING",
#    any email submitted bug will be entered with a product of PENDING, if no other product is
#    specified in the email.

62 63 64 65 66 67 68 69 70 71
# 10/21/2003 (Ludovic)
# - added $DEFAULT_VERSION, similar to product and component above
# - added command line switches to override version, product, and component, so separate
#   email addresses can be used for different product/component/version combinations.
#   Example for procmail:
#    # Feed mail to stdin of bug_email.pl
#    :0 Ec
#    * !^Subject: .*[Bug .*]
#    RESULT=|(cd $BUGZILLA_HOME/contrib && ./bug_email.pl -p='Tier_3_Operations' -c='General' )

72 73 74 75 76 77
# Next round of revisions :
# - querying a bug over email
# - appending a bug over email
# - keywords over email
# - use the globals.pl parameters functionality to edit and save this script's parameters
# - integrate some setup in the checksetup.pl script
78
# - gpg signatures for security
79 80 81 82

use strict;
use MIME::Parser;

83 84 85 86 87
BEGIN {
    chdir '..';        # this script lives in contrib
    push @INC, "contrib/.";
    push @INC, ".";
}
88 89

require "globals.pl";
90 91
use BugzillaEmail;
use Bugzilla::Config qw(:DEFAULT $datadir);
92

93 94 95 96
use lib ".";
use lib "../";
use Bugzilla::Constants;
use Bugzilla::BugMail;
97
use Bugzilla::User;
98

99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
my @mailerrors = ();       # Buffer for Errors in the mail
my @mailwarnings = ();     # Buffer for Warnings found in the mail
my $critical_err = 0; # Counter for critical errors - must be zero for success
my %Control;
my $Header = "";
my @RequiredLabels = ();
my @AllowedLabels = ();
my $Body = "";
my @attachments = ();

my $product_valid = 0;
my $test = 0;
my $restricted = 0;
my $SenderShort;
my $Message_ID;

115 116
my $dbh = Bugzilla->dbh;

117
# change to use default product / component functionality
seth%cs.brandeis.edu's avatar
seth%cs.brandeis.edu committed
118 119
my $DEFAULT_PRODUCT = "PENDING";
my $DEFAULT_COMPONENT = "PENDING";
120
my $DEFAULT_VERSION = "unspecified";
121

122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
###############################################################
# storeAttachments
# 
# in this sub, attachments found in the dump-sub will be written to 
# the database. The info, which attachments need saving is stored
# in the global @attachments-list.
# The sub returns the number of stored attachments.
sub storeAttachments( $$ )
{
    my ($bugid, $submitter_id ) = @_;
    my $maxsize = 0;
    my $data;
    my $listref  = \@attachments;
    my $att_count = 0;
    
    $submitter_id ||= 0;

    foreach my $pairref ( @$listref ) {
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
        my ($decoded_file, $mime, $on_disk, $description) = @$pairref;


        # Size check - mysql has a maximum space for the data ?
        $maxsize = 1047552;  # should be queried by a system( "mysqld --help" );,
        # but this seems not to be supported by all current mysql-versions

        # Read data file binary
        if( $on_disk ) {
            if( open( FILE, "$decoded_file" )) {
                binmode FILE;
                read FILE, $data, $maxsize;
                close FILE;
                $att_count ++;
            } else { 
                print "Error while reading attachment $decoded_file!\n";
                next;
            }
            # print "unlinking $datadir/mimedump-tmp/$decoded_file";
            # unlink "$datadir/mimedump-tmp/$decoded_file";
        } else {
            # data is in the scalar 
            $data = $decoded_file;
        }


        # Make SQL-String
167
        my $sql = "insert into attachments (bug_id, creation_ts, description, mimetype, ispatch, filename, submitter_id) values (";
168 169 170 171 172 173
        $sql .= "$bugid, now(), " . SqlQuote( $description ) . ", ";
        $sql .= SqlQuote( $mime ) . ", ";
        $sql .= "0, ";
        $sql .= SqlQuote( $decoded_file ) . ", ";
        $sql .= "$submitter_id );";
        SendSQL( $sql ) unless( $test );
174 175 176
        $sql = "insert into attach_data (id, thedata) values (LAST_INSERT_ID(), ";
        $sql .= SqlQuote( $data ) . ")";
        SendSQL( $sql ) unless( $test );
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
    }
    
    return( $att_count );
}



###############################################################
# Beautification
sub horLine( )
{
    return( "-----------------------------------------------------------------------\n" ); 
}


###############################################################
# Check if $Name is in $GroupName

# This is no more CreateBugs group, so I'm using this routine to just determine if the user is
# in the database.  Eventually, here should be a seperate routine or renamed, or something (SML)
sub CheckPermissions {
    my ($GroupName, $Name) = @_;
    
#    SendSQL("select login_name from profiles,groups where groups.name='$GroupName' and profiles.groupset & groups.bit = groups.bit and profiles.login_name=\'$Name\'");
#    my $NewName = FetchOneColumn();
#    if ( $NewName eq $Name ) {
203
#       return $Name;
204
#    } else {
205
#       return;
206
#    }
207 208 209 210 211 212 213 214 215
#    my $query = "SELECT login_name FROM profiles WHERE profiles.login_name=\'$Name\'";
#    SendSQL($query);
#    my $check_name = FetchOneColumn();
#    if ($check_name eq $Name) {
#      return $Name;
#    } else {
#      return;
#    }
    return findUser($Name);
216 217 218 219 220 221 222
}

###############################################################
# Check if product is valid.
sub CheckProduct {
    my $Product = shift;
    
223
    SendSQL("select name from products where name = " . SqlQuote($Product));
224 225
    my $Result = FetchOneColumn();
    if (lc($Result) eq lc($Product)) {
226
        return $Result;
227
    } else {
228
        return "";
229 230 231 232 233 234 235 236 237
    }
}

###############################################################
# Check if component is valid for product.
sub CheckComponent {
    my $Product = shift;
    my $Component = shift;
    
238
    SendSQL("select components.name from components, products where components.product_id = products.id AND products.name=" . SqlQuote($Product) . " and components.name=" . SqlQuote($Component));
239 240
    my $Result = FetchOneColumn();
    if (lc($Result) eq lc($Component)) {
241
        return $Result;
242
    } else {
243
        return "";
244 245 246 247 248 249 250 251 252
    }
}

###############################################################
# Check if component is valid for product.
sub CheckVersion {
    my $Product = shift;
    my $Version = shift;
    
253
    SendSQL("select value from versions, products where versions.product_id = products.id AND products.name=" . SqlQuote($Product) . " and value=" . SqlQuote($Version));
254 255
    my $Result = FetchOneColumn();
    if (lc($Result) eq lc($Version)) {
256
        return $Result;
257
    } else {
258
        return "";
259 260 261 262 263 264 265 266 267 268 269 270
    }
}

###############################################################
# Reply to a mail.
sub Reply( $$$$ ) {
    my ($Sender, $MessageID, $Subject, $Text) = @_;
    
    
    die "Cannot find sender-email-address" unless defined( $Sender );
    
    if( $test ) {
271
        open( MAIL, '>>', "$datadir/bug_email_test.log" );
272 273
    }
    else {
274
        open( MAIL, "| /usr/sbin/sendmail -t" );
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313
    }

    print MAIL "To: $Sender\n";
    print MAIL "From: Bugzilla Mailinterface<yourmail\@here.com>\n";
    print MAIL "Subject: $Subject\n";
    print MAIL "In-Reply-To: $MessageID\n" if ( defined( $MessageID ));
    print MAIL "\n";
    print MAIL "$Text";
    close( MAIL );

}


###############################################################
# getEnumList
# Queries the Database for the table description and figures the
# enum-settings out - usefull for checking fields for enums like
# prios 
sub getEnumList( $ )
{
    my ($fieldname) = @_;
    SendSQL( "describe bugs $fieldname" );
    my ($f, $type) = FetchSQLData();

    # delete unneeded stuff
    $type =~ s/enum\(|\)//g;
    $type =~ s/\',//g;

    my @all_prios = split( /\'/, $type );
    return( @all_prios );
}

###############################################################
# CheckPriority
# Checks, if the priority setting is one of the enums defined
# in the data base
# Uses the global var. $Control{ 'priority' }
sub CheckPriority
{
314
    my $prio = $Control{'priority'};
315 316
    my @all_prios = getEnumList( "priority" );

317
    if( $prio eq "" || (lsearch( \@all_prios, $prio ) == -1)  ) {
318 319 320 321 322
        # OK, Prio was not defined - create Answer
        my $Text = "You sent wrong priority-setting, valid values are:" .
            join( "\n\t", @all_prios ) . "\n\n";
        $Text .= "*  The priority is set to the default value ". 
            SqlQuote( Param('defaultpriority')) . "\n";
323

324
        BugMailError( 0, $Text );
325

326 327
        # set default value from param-file
        $Control{'priority'} = Param( 'defaultpriority' );
328
    } else {
329
        # Nothing to do
330 331 332 333 334 335 336 337 338 339 340 341
    }
}

###############################################################
# CheckSeverity
# checks the bug_severity
sub CheckSeverity
{
    my $sever = ($Control{'bug_severity'} ||= "" );
    my @all_sever = getEnumList( "bug_severity" );

    if( (lsearch( \@all_sever, $sever ) == -1) || $sever eq "" ) {
342 343 344 345 346
        # OK, Prio was not defined - create Answer
        my $Text = "You sent wrong bug_severity-setting, valid values are:" .
            join( "\n\t", @all_sever ) . "\n\n";
        $Text .= "*  The bug_severity is set to the default value ". 
            SqlQuote( "normal" ) . "\n";
347

348
        BugMailError( 0, $Text );
349

350 351
        # set default value from param-file
        $Control{'bug_severity'} = "normal";
352 353 354 355 356 357 358 359 360 361 362 363
    } 
}

###############################################################
# CheckArea
# checks the area-field
sub CheckArea
{
    my $area = ($Control{'area'} ||= "" );
    my @all= getEnumList( "area" );

    if( (lsearch( \@all, $area ) == -1) || $area eq "" ) {
364 365 366 367 368
        # OK, Area was not defined - create Answer
        my $Text = "You sent wrong area-setting, valid values are:" .
            join( "\n\t", @all ) . "\n\n";
        $Text .= "*  The area is set to the default value ". 
            SqlQuote( "BUILD" ) . "\n";
369

370
        BugMailError( 0, $Text );
371

372 373
        # set default value from param-file
        $Control{'area'} = "BUILD";
374 375 376 377 378 379 380 381 382 383 384 385
    } 
}

###############################################################
# CheckPlatform
# checks the given Platform and corrects it
sub CheckPlatform
{
    my $platform = ($Control{'rep_platform'} ||= "" );
    my @all = getEnumList( "rep_platform" );

    if( (lsearch( \@all, $platform ) == -1) ||  $platform eq "" ) {
386 387 388 389 390
        # OK, Prio was not defined - create Answer
        my $Text = "You sent wrong platform-setting, valid values are:" .
            join( "\n\t", @all ) . "\n\n";
        $Text .= "*  The rep_platform is set to the default value ". 
            SqlQuote( "All" ) . "\n";
391

392
        BugMailError( 0, $Text );
393

394 395
        # set default value from param-file
        $Control{'rep_platform'} = "All";
396 397 398 399 400 401 402 403 404 405 406 407
    } 
}

###############################################################
# CheckSystem
# checks the given Op-Sys and corrects it
sub CheckSystem
{
    my $sys = ($Control{'op_sys'} ||= "" );
    my @all = getEnumList( "op_sys" );

    if(  (lsearch( \@all, $sys ) == -1) || $sys eq "" ) {
408 409 410 411 412
        # OK, Prio was not defined - create Answer
        my $Text = "You sent wrong OS-setting, valid values are:" .
            join( "\n\t", @all ) . "\n\n";
        $Text .= "*  The op_sys is set to the default value ". 
            SqlQuote( "Linux" ) . "\n";
413

414
        BugMailError( 0, $Text );
415

416 417
        # set default value from param-file
        $Control{'op_sys'} = "Linux";
418 419 420 421 422 423 424 425 426 427 428 429 430
    } 
}


###############################################################
# Fetches all lines of a query with a single column selected and
# returns it as an array
# 
sub FetchAllSQLData( )
{
    my @res = ();

    while( MoreSQLData() ){
431
        push( @res, FetchOneColumn() );
432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469
    }
    return( @res );
}

###############################################################
# Error Handler for Errors in the mail
# 
# This function can be called multiple within processing one mail and
# stores the errors found in the Mail. Errors are for example empty
# required tags, missing required tags and so on.
# 
# The benefit is, that the mail users get a reply, where all mail errors
# are reported. The reply mail includes all messages what was wrong and
# the second mail the user sends can be ok, cause all his faults where
# reported.
# 
# BugMailError takes two arguments: The first one is a flag, how heavy
# the error is:
# 
# 0 - Its an error, but bugzilla can process the bug. The user should
#     handle that as a warning.
# 
# 1 - Its a real bug. Bugzilla cant store the bug. The mail has to be
#     resent.
# 
# 2 - Permission error: The user does not have the permission to send
#     a bug.
# 
# The second argument is a Text which describs the bug.
# 
# 
# #
sub BugMailError($ $ )
{
    my ( $errflag, $text ) = @_;

    # On permission error, dont sent all other Errors back -> just quit !
    if( $errflag == 2 ) {            # Permission-Error
470 471 472
        Reply( $SenderShort, $Message_ID, "Bugzilla Error", "Permission denied.\n\n" .
               "You do not have the permissions to create a new bug. Sorry.\n" );
        exit;
473 474 475 476 477
    }


    # Warnings - store for the reply mail
    if( $errflag == 0 ) {
478
        push( @mailwarnings, $text );
479 480 481 482
    }

    # Critical Error
    if( $errflag == 1 ) {
483 484
        $critical_err += 1;
        push( @mailerrors, $text );
485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552
    }
}

###############################################################
# getWarningText()
# 
# getWarningText() returns a reply-ready Textline of all the
# Warnings in the Mail
sub getWarningText()
{
    my $anz = @mailwarnings;

    my $ret = <<END
  
The Bugzilla Mail Interface found warnings (JFYI):

END
    ;

    # Handshake if no warnings at all
    return( "\n\n Your mail was processed without Warnings !\n" ) if( $anz == 0 );

    # build a text
    $ret .= join( "\n     ", @mailwarnings );
    return( horLine() . $ret );
}

sub getErrorText()
{
    my $anz = @mailerrors;

    my $ret = <<END

**************************  ERROR  **************************
 
Your request to the Bugzilla mail interface could not be met
due to errors in the mail. We will find it !


END
    ;
    return( "\n\n Your mail was processed without errors !\n") if( $anz == 0 );
    # build a text
    $ret .= join( "\n     ", @mailerrors );
    return( $ret );
}

###############################################################
# generateTemplate
# 
# This functiuon generates a mail-Template with the 
sub generateTemplate()
{
    my $w;
    my $ret;

    # Required Labels
    $ret =<<EOF


You may want to use this template to resend your mail. Please fill in the missing
keys.

_____ snip _______________________________________________________________________

EOF
    ;
    foreach ( @RequiredLabels ) {
553 554 555
        $w = "";
        $w = $Control{$_} if defined( $Control{ $_ } );
        $ret .= sprintf( "    \@%-15s:  %s\n", $_, $w );
556 557 558 559 560
    }

    $ret .= "\n";
    # Allowed Labels
    foreach( @AllowedLabels ) {
561 562 563 564 565
        next if( /reporter/    );  # Reporter is not a valid label
        next if( /assigned_to/ );  # Assigned to is just a number 
        if( defined( $Control{ $_ } ) && lsearch( \@RequiredLabels, $_ ) == -1 ) {
            $ret .=  sprintf( "    \@%-15s:  %s\n", $_,  $Control{ $_ } );
        }
566 567 568 569
    }

    if( $Body eq "" ) {
    $ret .= <<END
570
        
571 572 573 574 575 576
   < the bug-description follows here >

_____ snip _______________________________________________________________________

END
    ; } else {
577
        $ret .= "\n" . $Body;
578
    }
579
        
580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603
    return( $ret );

}
#------------------------------
#
# dump_entity ENTITY, NAME
#
# Recursive routine for parsing a mime coded mail.
# One mail may contain more than one mime blocks, which need to be
# handled. Therefore, this function is called recursively.
#
# It gets the for bugzilla important information from the mailbody and 
# stores them into the global attachment-list @attachments. The attachment-list
# is needed in storeAttachments.
#
sub dump_entity {
    my ($entity, $name) = @_;
    defined($name) or $name = "'anonymous'";
    my $IO;


    # Output the body:
    my @parts = $entity->parts;
    if (@parts) {                     # multipart...
604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644
        my $i;
        foreach $i (0 .. $#parts) {       # dump each part...
            dump_entity($parts[$i], ("$name, part ".(1+$i)));
        }
    } else {                            # single part...        

        # Get MIME type, and display accordingly...
        my $msg_part = $entity->head->get( 'Content-Disposition' );
        
        $msg_part ||= ""; 

        my ($type, $subtype) = split('/', $entity->head->mime_type);
        my $body = $entity->bodyhandle;
        my ($data, $on_disk );

        if(  $msg_part =~ /^attachment/ ) {
            # Attached File
            my $des = $entity->head->get('Content-Description');
            $des ||= $entity->head->recommended_filename;
            $des ||= "unnamed attachment";

            if( defined( $body->path )) { # Data is on disk
                $on_disk = 1;
                $data = $body->path;
                
            } else {                      # Data is in core
                $on_disk = 0;
                $data = $body->as_string;
            }
            push ( @attachments, [ $data, $entity->head->mime_type, $on_disk, $des ] );
        } else {
            # Real Message
            if ($type =~ /^(text|message)$/) {     # text: display it...
                if ($IO = $body->open("r")) {
                    $Body .=  $_ while (defined($_ = $IO->getline));
                    $IO->close;
                } else {       # d'oh!
                    print "$0: couldn't find/open '$name': $!";
                }
            } else { print "Oooops - no Body !\n"; }
        }
645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664
    }
}

###############################################################
# sub extractControls
###############################################################
# 
# This sub parses the message Body and filters the control-keys. 
# Attention: Global hash Controls affected
#
sub extractControls( $ )
{
    my ($body) = @_;
    my $backbody = "";

    my @lbody = split( /\n/, $body );
    
    # In restricted mode, all lines before the first keyword
    # are skipped.
    if( $restricted ) {
665
        while( $lbody[0] =~ /^\s*\@.*/ ){ shift( @lbody );} 
666 667 668 669
    }
    
    # Filtering for keys
    foreach( @lbody ) {
670 671 672 673 674 675 676 677
        if( /^\s*\@description/ ) {
            s/\s*\@description//;
            $backbody .= $_;
        } elsif( /^\s*\@(.*?)(?:\s*=\s*|\s*:\s*|\s+)(.*?)\s*$/ ) {
            $Control{lc($1)} = $2;
        } else {
            $backbody .= "$_" . "\n";
        }
678 679 680 681 682 683 684 685 686 687 688 689 690 691 692
    }

    # thats it.
    return( $backbody );
}

###############################################################
# Main starts here
###############################################################
# 
# Commandline switches:
# -t: test mode - no DB-Inserts
foreach( @ARGV ) {
    $restricted = 1 if ( /-r/ );
    $test = 1 if ( /-t/ );
693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708

    if ( /-p=['"]?(.+)['"]?/ )
    {
      $DEFAULT_PRODUCT = $1;
    }

    if ( /-c=['"]?(.+)["']?/ )
    {
      $DEFAULT_COMPONENT = $1;
    }

    if ( /-v=['"]?(.+)["']?/ )
    {
      $DEFAULT_VERSION = $1;
    }

709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735
}

#
# Parsing a mime-message
#
if( -t STDIN ) {
print STDERR <<END
 Bugzilla Mail Interface

 This scripts reads a mail message through stdin and parses the message,
 for to insert a bug to bugzilla.

  Options
 -t: Testmode - No insert to the DB, but logfile
 -r: restricted mode - all lines before the keys in the mail are skipped

END
    ; 
exit;
}


# Create a new MIME parser:
my $parser = new MIME::Parser;

# Create and set the output directory:
# FIXME: There should be a $BUGZILLA_HOME variable (SML)
736 737
(-d "$datadir/mimedump-tmp") or mkdir "$datadir/mimedump-tmp",0755 or die "mkdir: $!";
(-w "$datadir/mimedump-tmp") or die "can't write to directory";
738

739
$parser->output_dir("$datadir/mimedump-tmp");
740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756
    
# Read the MIME message:
my $entity = $parser->read(\*STDIN) or die "couldn't parse MIME stream";
$entity->remove_sig(10);          # Removes the signature in the last 10 lines

# Getting values from parsed mail
my $Sender = $entity->get( 'From' );
$Sender ||=  $entity->get( 'Reply-To' );
$Message_ID = $entity->get( 'Message-Id' );

die (" *** Cant find Sender-adress in sent mail ! ***\n" ) unless defined( $Sender );
chomp( $Sender );
chomp( $Message_ID );

$SenderShort = $Sender;
$SenderShort =~ s/^.*?([a-zA-Z0-9_.-]+?\@[a-zA-Z0-9_.-]+\.[a-zA-Z0-9_.-]+).*$/$1/;

757 758
$SenderShort = findUser($SenderShort);

759
if (!defined($SenderShort)) {
760 761 762
  $SenderShort = $Sender;
  $SenderShort =~ s/^.*?([a-zA-Z0-9_.-]+?\@[a-zA-Z0-9_.-]+\.[a-zA-Z0-9_.-]+).*$/$1/;
}
763 764 765 766 767 768 769 770 771 772 773 774

my $Subject = "";
$Subject = $entity->get( 'Subject' );
chomp( $Subject );

# Get all the attachments
dump_entity($entity);
# print $Body;
$Body = extractControls( $Body );  # fills the Control-Hash

if( $test ) {
    foreach (keys %Control ) {
775
        print "$_ => $Control{$_}\n";
776 777 778 779 780 781 782 783 784 785 786 787 788
    }
}

$Control{'short_desc'} ||= $Subject;
#
#  * Mailparsing finishes here *
#

######################################################################
# Now a lot of Checks of the given Labels start.
# Check Control-Labels
# not: reporter !
@AllowedLabels = ("product", "version", "rep_platform",
789 790 791 792
                  "bug_severity", "priority", "op_sys", "assigned_to",
                  "bug_status", "bug_file_loc", "short_desc", "component",
                  "status_whiteboard", "target_milestone", "groupset",
                  "qa_contact");
793 794 795
#my @AllowedLabels = qw{Summary priority platform assign};
foreach (keys %Control) {
    if ( lsearch( \@AllowedLabels, $_) < 0 ) {
796
        BugMailError( 0, "You sent a unknown label: " . $_ );
797 798 799 800 801 802 803 804 805 806 807 808
    }
}

push( @AllowedLabels, "reporter" );
$Control{'reporter'} = $SenderShort;

# Check required Labels - not all labels are required, because they could be generated
# from the given information
# Just send a warning- the error-Flag will be set later
@RequiredLabels = qw{product version component short_desc};
foreach my $Label (@RequiredLabels) {
    if ( ! defined $Control{$Label} ) {
809 810
        BugMailError( 0, "You were missing a required label: \@$Label\n" );
        next;
811 812 813
    }

    if( $Control{$Label} =~ /^\s*$/  ) {
814 815
        BugMailError( 0, "One of your required labels is empty: $Label" );
        next;
816 817 818 819 820 821 822 823 824 825 826 827 828
    }
}

if ( $Body =~ /^\s*$/s ) {
    BugMailError( 1, "You sent a completely empty body !" );
}


# umask 0;

# Check Permissions ...
if (! CheckPermissions("CreateBugs", $SenderShort ) ) {
    BugMailError( 2, "Permission denied.\n\n"  .
829
                  "You do not have the permissions to create a new bug. Sorry.\n" );
830 831 832
}

# Set QA
833
if (Param("useqacontact")) {
834 835 836 837 838 839 840 841 842
    if (defined($Control{'qa_contact'}) 
        && $Control{'qa_contact'} !~ /^\s*$/ ) {
        $Control{'qa_contact'} = DBname_to_id($Control{'qa_contact'});
    } else {
        SendSQL("select initialqacontact from components, products where components.product_id = products.id AND products.name=" .
                SqlQuote($Control{'product'}) .
                " and components.name=" . SqlQuote($Control{'component'}));
        $Control{'qa_contact'} = FetchOneColumn();
    }
843 844 845 846 847 848 849
}

# Set Assigned - assigned_to depends on the product, cause initialowner 
#                depends on the product !
#                => first check product !
# Product
my @all_products = ();
850 851
# set to the default product.  If the default product is empty, this has no effect
my $Product = $DEFAULT_PRODUCT;
852 853 854 855 856 857
$Product = CheckProduct( $Control{'product'} ) if( defined( $Control{ 'product'} ));

if ( $Product eq "" ) {
    my $Text = "You didnt send a value for the required key \@product !\n\n";

    $Text = "You sent the invalid product \"$Control{'product'}\"!\n\n"
858
        if( defined( $Control{ 'product'} ));
859 860 861

    $Text .= "Valid products are:\n\t";

862
    SendSQL("select name from products ORDER BY name");
863 864 865 866 867 868 869 870 871 872 873 874 875 876 877
    @all_products = FetchAllSQLData();
    $Text .= join( "\n\t", @all_products ) . "\n\n";
    $Text .= horLine();

    BugMailError( 1, $Text );
} else {
    # Fill list @all_products, which is needed in case of component-help
    @all_products = ( $Product );
    $product_valid = 1;
}
$Control{'product'} = $Product;

#
# Check the Component:
#
878 879 880

# set to the default component.  If the default component is empty, this has no effect
my $Component = $DEFAULT_COMPONENT;
881 882 883 884 885 886 887 888 889 890

if( defined( $Control{'component' } )) {
    $Component = CheckComponent( $Control{'product'}, $Control{'component'} );
}
    
if ( $Component eq "" ) {

    my $Text = "You did not send a value for the required key \@component!\n\n"; 

    if( defined( $Control{ 'component' } )) {
891
        $Text = "You sent the invalid component \"$Control{'component'}\" !\n";
892 893 894 895 896 897 898 899
    }

    #
    # Attention: If no product was sent, the user needs info for all components of all
    #            products -> big reply mail :)
    #            if a product was sent, only reply the components of the sent product
    my @val_components = ();
    foreach my $prod ( @all_products ) {
900
        $Text .= "\nValid components for product `$prod' are: \n\t";
901

902 903
        SendSQL("SELECT components.name FROM components, products WHERE components.product_id=products.id AND products.name = " . SqlQuote($prod));
        @val_components = FetchAllSQLData();
904

905
        $Text .= join( "\n\t", @val_components ) . "\n";
906 907 908 909 910 911
    }
    
    # Special: if there is a valid product, maybe it has only one component -> use it !
    # 
    my $amount_of_comps = @val_components;
    if( $product_valid  && $amount_of_comps == 1 ) {
912 913 914 915 916 917
        $Component = $val_components[0];
        
        $Text .= " * You did not send a component, but a valid product " . SqlQuote( $Product ) . ".\n";
        $Text .= " * This product only has one component ". SqlQuote(  $Component ) .".\n" .
                " * This component was set by bugzilla for submitting the bug.\n\n";
        BugMailError( 0, $Text ); # No blocker
918 919

    } else { # The component is really buggy :(
920 921
        $Text  .= horLine();
        BugMailError( 1, $Text );
922 923 924 925 926 927 928
    }
}
$Control{'component'} = $Component;


#
# Check assigned_to
929 930 931 932
# If a value was given in the e-mail, convert it to an ID,
# otherwise, retrieve it from the database.
if ( defined($Control{'assigned_to'}) 
     && $Control{'assigned_to'} !~ /^\s*$/ ) {
933
    $Control{'assigned_to'} = login_to_id($Control{'assigned_to'});
934
} else {
935 936
    SendSQL("select initialowner from components, products where " .
            "  components.product_id=products.id AND products.name=" .
937
            SqlQuote($Control{'product'}) .
938
            " and components.name=" . SqlQuote($Control{'component'}));
939 940 941 942 943
    $Control{'assigned_to'} = FetchOneColumn();
}

if ( $Control{'assigned_to'} == 0 ) {
    my $Text = "Could not resolve key \@assigned_to !\n" .
944 945
        "If you do NOT send a value for assigned_to, the bug will be assigned to\n" .
            "the qa-contact for the product and component.\n";
946
    $Text .= "This works only if product and component are OK. \n" 
947
        . horLine();
948 949 950 951 952

    BugMailError( 1, $Text );
}


953
$Control{'reporter'} = login_to_id($Control{'reporter'});
954 955 956 957 958 959 960 961 962 963 964 965 966
if ( ! $Control{'reporter'} ) {
    BugMailError( 1, "Could not resolve reporter !\n" );
}

### Set default values
CheckPriority( );
CheckSeverity( );
CheckPlatform( );
CheckSystem( );
# CheckArea();

### Check values ...
# Version
967
my $Version = "$DEFAULT_VERSION";
968 969 970 971 972
$Version = CheckVersion( $Control{'product'}, $Control{'version'} ) if( defined( $Control{'version'}));
if ( $Version eq "" ) {
    my $Text = "You did not send a value for the required key \@version!\n\n";

    if( defined( $Control{'version'})) {
973
        my $Text = "You sent the invalid version \"$Control{'version'}\"!\n";
974 975 976 977 978 979
    }

    my $anz_versions;
    my @all_versions;
    # Assemble help text
    foreach my $prod ( @all_products ) {
980
        $Text .= "Valid versions for product " . SqlQuote( $prod ) . " are: \n\t";
981

982 983 984 985
        SendSQL("select value from versions, products where versions.product_id=products.id AND products.name=" . SqlQuote( $prod ));
        @all_versions = FetchAllSQLData();
        $anz_versions = @all_versions;
        $Text .= join( "\n\t", @all_versions ) . "\n" ; 
986 987 988 989 990

    }

    # Check if we could use the only version
    if( $anz_versions == 1 && $product_valid ) {
991 992 993 994 995 996 997
        $Version = $all_versions[0];
        # Fine, there is only one version string
        $Text .= " * You did not send a version, but a valid product " . SqlQuote( $Product ) . ".\n";
        $Text .= " * This product has has only the one version ". SqlQuote(  $Version) .".\n" .
            " * This version was set by bugzilla for submitting the bug.\n\n";
        $Text .= horLine();
        BugMailError( 0, $Text ); # No blocker
998
    } else {
999 1000
        $Text .= horLine();
        BugMailError( 1, $Text );
1001 1002 1003 1004 1005 1006 1007 1008 1009
    }

}

$Control{'version'} = $Version;

# GroupsSet: Protections for Bug info. This paramter controls the visiblility of the 
# given bug. An Error in the given Buggroup is not a blocker, a default is taken.
#
1010
# The GroupSet is accepted only as literals linked with whitespaces, plus-signs or kommas
1011 1012
#
my $GroupSet = "";
1013
my %GroupArr = ();
1014 1015 1016
$GroupSet = $Control{'groupset'} if( defined( $Control{ 'groupset' }));
#
# Fetch the default value for groupsetting
1017 1018
my $DefaultGroup = 'ReadInternal';
SendSQL("select id from groups where name=" . SqlQuote( $DefaultGroup ));
1019 1020 1021
my $default_group = FetchOneColumn();

if( $GroupSet eq "" ) {
1022 1023
    # Too bad: Groupset does not contain anything -> set to default
    $GroupArr{$DefaultGroup} = $default_group if(defined( $default_group ));
1024 1025 1026
    #
    # Give the user a hint
    my $Text = "You did not send a value for optional key \@groupset, which controls\n";
1027 1028
    $Text .= "the Permissions of the bug. It will be set to a default value 'Internal Bug'\n";
    $Text .= "if the group '$DefaultGroup' exists.  The QA may change that.\n";
1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039
    
    BugMailError( 0, $Text );
} else {
    # literal  e.g. 'ReadInternal'
    my $gserr = 0;
    my $Text = "";

    #
    # Split literal Groupsettings either on Whitespaces, +-Signs or ,
    # Then search for every Literal in the DB - col name
    foreach ( split /\s+|\s*\+\s*|\s*,\s*/, $GroupSet ) {
1040
      SendSQL("select id, Name from groups where name=" . SqlQuote($_));
1041
        my( $bval, $bname ) = FetchSQLData();
1042

1043
        if( defined( $bname ) && $_ eq $bname ) {
1044
        $GroupArr{$bname} = $bval;
1045 1046 1047 1048
        } else {
            $Text .= "You sent the wrong GroupSet-String $_\n";
            $gserr = 1;
        }
1049
    }
1050
    
1051 1052 1053
    #
    # Give help if wrong GroupSet-String came
    if( $gserr > 0 ) {
1054 1055
        # There happend errors 
        $Text .= "Here are all valid literal Groupsetting-strings:\n\t";
1056 1057
      SendSQL( "select g.name from groups g, user_group_map u where u.user_id=".$Control{'reporter'}.
            " and g.isbuggroup=1 and g.id = u.group_id group by g.name;" );
1058 1059
        $Text .= join( "\n\t", FetchAllSQLData()) . "\n";
        BugMailError( 0, $Text );
1060 1061
    }
} # End of checking groupsets
1062
delete $Control{'groupset'};
1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097

# ###################################################################################
# Checking is finished
#

# Check used fields
my @used_fields;

foreach my $f (@AllowedLabels) {
    if ((exists $Control{$f}) && ($Control{$f} !~ /^\s*$/ )) {
        push (@used_fields, $f);
    }
}

#
# Creating the query for inserting the bug
# -> this should only be done, if there was no critical error before
if( $critical_err == 0 )
{
    
    my $reply = <<END
  
  +---------------------------------------------------------------------------+
           B U G Z I L L A -  M A I L -  I N T E R F A C E 
  +---------------------------------------------------------------------------+

  Your Bugzilla Mail Interface request was successfull.

END
;

    $reply .= "Your Bug-ID is ";
    my $reporter = "";

    my $query = "insert into bugs (\n" . join(",\n", @used_fields ) . 
1098
        ", bug_status, creation_ts, delta_ts, everconfirmed) values ( ";
1099
    
1100 1101 1102 1103
    # 'Yuck'. Then again, this whole file should be rewritten anyway...
    $query =~ s/product/product_id/;
    $query =~ s/component/component_id/;

1104 1105 1106 1107
    my $tmp_reply = "These values were stored by bugzilla:\n";
    my $val;
    foreach my $field (@used_fields) {
      if( $field eq "groupset" ) {
1108
        $query .= $Control{$field} . ",\n";
1109 1110 1111 1112 1113
      } elsif ( $field eq 'product' ) {
          $query .= get_product_id($Control{$field}) . ",\n";
      } elsif ( $field eq 'component' ) {
          $query .= get_component_id(get_product_id($Control{'product'}),
                                     $Control{$field}) . ",\n";
1114
      } else {
1115
        $query .= SqlQuote($Control{$field}) . ",\n";
1116
      }
1117
        
1118 1119 1120 1121 1122 1123 1124
      $val = $Control{ $field };
      
      $val = DBID_to_name( $val ) if( $field =~ /reporter|assigned_to|qa_contact/ );
      
      $tmp_reply .= sprintf( "     \@%-15s = %-15s\n", $field, $val );

      if ($field eq "reporter") {
1125
        $reporter = $val;
1126 1127
      }
    }
1128 1129 1130 1131
    #
    # Display GroupArr
    #
    $tmp_reply .= sprintf( "     \@%-15s = %-15s\n", 'groupset', join(',', keys %GroupArr) );
1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142
    
    $tmp_reply .= "      ... and your error-description !\n";

    my $comment = $Body;
    $comment =~ s/\r\n/\n/g;     # Get rid of windows-style line endings.
    $comment =~ s/\r/\n/g;       # Get rid of mac-style line endings.
    $comment = trim($comment);

    SendSQL("SELECT now()");
    my $bug_when = FetchOneColumn();

1143 1144 1145
    my $ever_confirmed = 0;
    my $state = SqlQuote("UNCONFIRMED");

1146 1147
    SendSQL("SELECT votestoconfirm FROM products WHERE name = " .
            SqlQuote($Control{'product'}));
1148 1149 1150 1151 1152
    if (!FetchOneColumn()) {
      $ever_confirmed = 1;
      $state = SqlQuote("NEW");
    }

1153
    $query .=  $state . ", \'$bug_when\', \'$bug_when\', $ever_confirmed)\n";
1154 1155
#    $query .=  SqlQuote( "NEW" ) . ", now(), " . SqlQuote($comment) . " )\n";

1156 1157
    SendSQL("SELECT userid FROM profiles WHERE " .
            $dbh->sql_istrcmp('login_name', $dbh->quote($reporter)));
1158 1159 1160 1161 1162
    my $userid = FetchOneColumn();

    my $id;

    if( ! $test ) {
1163
        SendSQL($query);
1164

1165
        $id = Bugzilla->dbh->bz_last_key('bugs', 'bug_id');
1166

1167 1168
        my $long_desc_query = "INSERT INTO longdescs SET bug_id=$id, who=$userid, bug_when=\'$bug_when\', thetext=" . SqlQuote($comment);
        SendSQL($long_desc_query);
1169

1170
        # Cool, the mail was successful
1171
        # system("./processmail", $id, $SenderShort);
1172
    } else {
1173
        $id = 0xFFFFFFFF;  # TEST !
1174 1175
        print "\n-------------------------------------------------------------------------\n";
        print "$query\n";
1176 1177
    }

1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188
    #
    # Handle GroupArr
    #
    foreach my $grp (keys %GroupArr) {
      if( ! $test) {
        SendSQL("INSERT INTO bug_group_map SET bug_id=$id, group_id=$GroupArr{$grp}");
      } else {
        print "INSERT INTO bug_group_map SET bug_id=$id, group_id=$GroupArr{$grp}\n";
      }
    }

1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201
    #
    # handle Attachments 
    #
    my $attaches = storeAttachments( $id, $Control{'reporter'} );
    $tmp_reply .= "\n\tYou sent $attaches attachment(s). \n" if( $attaches > 0 );

    $reply .= $id . "\n\n" . $tmp_reply . "\n" . getWarningText();

    $entity->purge();  # Removes all temp files

    #
    # Send the 'you did it'-reply
    Reply( $SenderShort, $Message_ID,"Bugzilla success (ID $id)", $reply );
1202 1203

    Bugzilla::BugMail::Send($id) if( ! $test);
1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219
    
} else {
    # There were critical errors in the mail - the bug couldnt be inserted. !
my $errreply = <<END
  
  +---------------------------------------------------------------------------+
          B U G Z I L L A -  M A I L -  I N T E R F A C E             
  +---------------------------------------------------------------------------+

END
    ;
    
    $errreply .= getErrorText() . getWarningText() . generateTemplate();

    Reply( $SenderShort, $Message_ID, "Bugzilla Error", $errreply );

1220
    # print getErrorText();
1221 1222 1223 1224 1225 1226 1227 1228 1229 1230
    # print getWarningText();
    # print generateTemplate();
}





exit;