-
Notifications
You must be signed in to change notification settings - Fork 179
/
importxml.pl
executable file
·1401 lines (1243 loc) · 44.4 KB
/
importxml.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
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
167
168
169
170
171
172
173
174
175
176
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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
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
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
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
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
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
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
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
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
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env perl
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# This Source Code Form is "Incompatible With Secondary Licenses", as
# defined by the Mozilla Public License, v. 2.0.
# This script reads in xml bug data from standard input and inserts
# a new bug into Bugzilla. Everything before the beginning <?xml line
# is removed so you can pipe in email messages.
use 5.10.1;
use strict;
use warnings;
#####################################################################
#
# This script is used to import bugs from another installation of Bugzilla.
# It can be used in two ways.
# First using the move function of Bugzilla
# on another system will send mail to an alias provided by
# the administrator of the target installation (you). Set up an alias
# similar to the one given below so this mail will be automatically
# run by this script and imported into your database. Run 'newaliases'
# after adding this alias to your aliases file. Make sure your sendmail
# installation is configured to allow mail aliases to execute code.
#
# bugzilla-import: "|/usr/bin/perl /opt/bugzilla/importxml.pl"
#
# Second it can be run from the command line with any xml file from
# STDIN that conforms to the Bugzilla DTD. In this case you can pass
# an argument to set whether you want to send the
# mail that will be sent to the exporter and maintainer normally.
#
# importxml.pl bugsfile.xml
#
#####################################################################
use File::Basename qw(dirname);
# MTAs may call this script from any directory, but it should always
# run from this one so that it can find its modules.
BEGIN {
require File::Basename;
my $dir = $0;
$dir =~ /(.*)/;
$dir = $1; # trick taint
chdir(File::Basename::dirname($dir));
}
use lib qw(. lib local/lib/perl5);
# Data dumber is used for debugging, I got tired of copying it back in
# and then removing it.
#use Data::Dumper;
use Bugzilla;
use Bugzilla::Object;
use Bugzilla::Bug;
use Bugzilla::Product;
use Bugzilla::Version;
use Bugzilla::Component;
use Bugzilla::Milestone;
use Bugzilla::FlagType;
use Bugzilla::BugMail;
use Bugzilla::Mailer;
use Bugzilla::User;
use Bugzilla::Util;
use Bugzilla::Constants;
use Bugzilla::Keyword;
use Bugzilla::Field;
use Bugzilla::Status;
use MIME::Base64;
use MIME::Parser;
use Getopt::Long;
use Pod::Usage;
use XML::Twig;
my $debug = 0;
my $mail = '';
my $attach_path = '';
my $help = 0;
my ($default_product_name, $default_component_name);
my $result = GetOptions(
"verbose|debug+" => \$debug,
"mail|sendmail!" => \$mail,
"attach_path=s" => \$attach_path,
"help|?" => \$help,
"product=s" => \$default_product_name,
"component=s" => \$default_component_name,
);
pod2usage(0) if $help;
use constant OK_LEVEL => 3;
use constant DEBUG_LEVEL => 2;
use constant ERR_LEVEL => 1;
our @logs;
our @attachments;
our $bugtotal;
my $xml;
my $dbh = Bugzilla->dbh;
my $params = Bugzilla->params;
my ($timestamp) = $dbh->selectrow_array("SELECT NOW()");
$default_product_name = '' if !defined $default_product_name;
$default_component_name = '' if !defined $default_component_name;
###############################################################################
# Helper sub routines #
###############################################################################
sub MailMessage {
return unless ($mail);
my $subject = shift;
my $message = shift;
my @recipients = @_;
my $from = $params->{"mailfrom"};
$from =~ s/@/\@/g;
foreach my $to (@recipients) {
my $header = "To: $to\n";
$header .= "From: Bugzilla <$from>\n";
$header .= "Subject: $subject\n\n";
my $sendmessage = $header . $message . "\n";
MessageToMTA($sendmessage);
}
}
sub Debug {
return unless ($debug);
my ($message, $level) = (@_);
print STDERR "OK: $message \n" if ($level == OK_LEVEL);
print STDERR "ERR: $message \n" if ($level == ERR_LEVEL);
print STDERR "$message\n" if (($debug == $level) && ($level == DEBUG_LEVEL));
}
sub Error {
my ($reason, $errtype, $exporter) = @_;
my $subject = "Bug import error: $reason";
my $message = "Cannot import these bugs because $reason ";
$message .= "\n\nPlease re-open the original bug.\n" if ($errtype);
$message .= "For more info, contact " . $params->{"maintainer"} . ".\n";
my @to = ($params->{"maintainer"}, $exporter);
Debug($message, ERR_LEVEL);
MailMessage($subject, $message, @to);
exit;
}
# This subroutine handles flags for process_bug. It is generic in that
# it can handle both attachment flags and bug flags.
sub flag_handler {
my (
$name, $status, $setter_login,
$requestee_login, $exporterid, $bugid,
$componentid, $productid, $attachid
) = @_;
my $type = ($attachid) ? "attachment" : "bug";
my $err = '';
my $setter = new Bugzilla::User({name => $setter_login});
my $requestee;
my $requestee_id;
unless ($setter) {
$err = "Invalid setter $setter_login on $type flag $name\n";
$err .= " Dropping flag $name\n";
return $err;
}
if (!$setter->can_see_bug($bugid)) {
$err .= "Setter is not a member of bug group\n";
$err .= " Dropping flag $name\n";
return $err;
}
my $setter_id = $setter->id;
if (defined($requestee_login)) {
$requestee = new Bugzilla::User({name => $requestee_login});
if ($requestee) {
if (!$requestee->can_see_bug($bugid)) {
$err .= "Requestee is not a member of bug group\n";
$err .= " Requesting from the wind\n";
}
else {
$requestee_id = $requestee->id;
}
}
else {
$err = "Invalid requestee $requestee_login on $type flag $name\n";
$err .= " Requesting from the wind.\n";
}
}
my $flag_types;
# If this is an attachment flag we need to do some dirty work to look
# up the flagtype ID
if ($attachid) {
$flag_types = Bugzilla::FlagType::match({
'target_type' => 'attachment',
'product_id' => $productid,
'component_id' => $componentid
});
}
else {
my $bug = new Bugzilla::Bug($bugid);
$flag_types = $bug->flag_types;
}
unless ($flag_types) {
$err = "No flag types defined for this bug\n";
$err .= " Dropping flag $name\n";
return $err;
}
# We need to see if the imported flag is in the list of known flags
# It is possible for two flags on the same bug have the same name
# If this is the case, we will only match the first one.
my $ftype;
foreach my $f (@{$flag_types}) {
if ($f->name eq $name) {
$ftype = $f;
last;
}
}
if ($ftype) { # We found the flag in the list
my $grant_group = $ftype->grant_group;
if ( ($status eq '+' || $status eq '-')
&& $grant_group
&& !$setter->in_group_id($grant_group->id))
{
$err = "Setter $setter_login on $type flag $name ";
$err .= "is not in the Grant Group\n";
$err .= " Dropping flag $name\n";
return $err;
}
my $request_group = $ftype->request_group;
if ( $request_group
&& $status eq '?'
&& !$setter->in_group_id($request_group->id))
{
$err = "Setter $setter_login on $type flag $name ";
$err .= "is not in the Request Group\n";
$err .= " Dropping flag $name\n";
return $err;
}
# Take the first flag_type that matches
unless ($ftype->is_active) {
$err = "Flag $name is not active in this database\n";
$err .= " Dropping flag $name\n";
return $err;
}
$dbh->do(
"INSERT INTO flags
(type_id, status, bug_id, attach_id, creation_date,
setter_id, requestee_id)
VALUES (?, ?, ?, ?, ?, ?, ?)", undef,
($ftype->id, $status, $bugid, $attachid, $timestamp, $setter_id, $requestee_id)
);
}
else {
$err = "Dropping unknown $type flag: $name\n";
return $err;
}
return $err;
}
# Converts and returns the input data as an array.
sub _to_array {
my $value = shift;
$value = [$value] if !ref($value);
return @$value;
}
###############################################################################
# XML Handlers #
###############################################################################
# This subroutine gets called only once - as soon as the <bugzilla> opening
# tag is parsed. It simply checks to see that the all important exporter
# maintainer and URL base are set.
#
# exporter: email address of the person moving the bugs
# maintainer: the maintainer of the Bugzilla installation
# as set in the parameters file
# urlbase: The urlbase parameter of the installation
# bugs are being moved from
#
sub init() {
my ($twig, $bugzilla) = @_;
my $root = $twig->root;
my $maintainer = $root->{'att'}->{'maintainer'};
my $exporter = $root->{'att'}->{'exporter'};
my $urlbase = $root->{'att'}->{'urlbase'};
my $xmlversion = $root->{'att'}->{'version'};
if ($xmlversion ne BUGZILLA_VERSION) {
my $log = "Possible version conflict!\n";
$log .= " XML was exported from Bugzilla version $xmlversion\n";
$log .= " But this installation uses ";
$log .= BUGZILLA_VERSION . "\n";
Debug($log, OK_LEVEL);
push(@logs, $log);
}
Error("no maintainer", "REOPEN", $exporter) unless ($maintainer);
Error("no exporter", "REOPEN", $exporter) unless ($exporter);
Error("invalid exporter: $exporter", "REOPEN", $exporter)
if (!login_to_id($exporter));
Error("no urlbase set", "REOPEN", $exporter) unless ($urlbase);
}
# Parse attachments.
#
# This subroutine is called once for each attachment in the xml file.
# It is called as soon as the closing </attachment> tag is parsed.
# Since attachments have the potential to be very large, and
# since each attachment will be inside <bug>..</bug> tags we shove
# the attachment onto an array which will be processed by process_bug
# and then disposed of. The attachment array will then contain only
# one bugs' attachments at a time.
# The cycle will then repeat for the next <bug>
#
# The attach_id is ignored since MySQL generates a new one for us.
# The submitter_id gets filled in with $exporterid.
sub process_attachment() {
my ($twig, $attach) = @_;
Debug("Parsing attachments", DEBUG_LEVEL);
my %attachment;
$attachment{'date'}
= format_time($attach->field('date'), "%Y-%m-%d %R") || $timestamp;
$attachment{'desc'} = $attach->field('desc');
$attachment{'ctype'} = $attach->field('type') || "unknown/unknown";
$attachment{'attachid'} = $attach->field('attachid');
$attachment{'ispatch'} = $attach->{'att'}->{'ispatch'} || 0;
$attachment{'isobsolete'} = $attach->{'att'}->{'isobsolete'} || 0;
$attachment{'isprivate'} = $attach->{'att'}->{'isprivate'} || 0;
$attachment{'filename'} = $attach->field('filename') || "file";
$attachment{'attacher'} = $attach->field('attacher');
# Attachment data is not exported in versions 2.20 and older.
if ( defined $attach->first_child('data')
&& defined $attach->first_child('data')->{'att'}->{'encoding'})
{
my $encoding = $attach->first_child('data')->{'att'}->{'encoding'};
if ($encoding =~ /base64/) {
# decode the base64
my $data = $attach->field('data');
my $output = decode_base64($data);
$attachment{'data'} = $output;
}
elsif ($encoding =~ /filename/) {
# read the attachment file
Error("attach_path is required", undef) unless ($attach_path);
my $filename = $attach->field('data');
# Remove any leading path data from the filename
$filename =~ s/(.*\/|.*\\)//gs;
my $attach_filename = $attach_path . "/" . $filename;
open(ATTACH_FH, "<", $attach_filename)
or Error("cannot open $attach_filename", undef);
$attachment{'data'} = do { local $/; <ATTACH_FH> };
close ATTACH_FH;
}
}
else {
$attachment{'data'} = $attach->field('data');
}
# attachment flags
my @aflags;
foreach my $aflag ($attach->children('flag')) {
my %aflag;
$aflag{'name'} = $aflag->{'att'}->{'name'};
$aflag{'status'} = $aflag->{'att'}->{'status'};
$aflag{'setter'} = $aflag->{'att'}->{'setter'};
$aflag{'requestee'} = $aflag->{'att'}->{'requestee'};
push @aflags, \%aflag;
}
$attachment{'flags'} = \@aflags if (@aflags);
# free up the memory for use by the rest of the script
$attach->delete;
if ($attachment{'attachid'}) {
push @attachments, \%attachment;
}
else {
push @attachments, "err";
}
}
# This subroutine will be called once for each <bug> in the xml file.
# It is called as soon as the closing </bug> tag is parsed.
# If this bug had any <attachment> tags, they will have been processed
# before we get to this point and their data will be in the @attachments
# array.
# As each bug is processed, it is inserted into the database and then
# purged from memory to free it up for later bugs.
sub process_bug {
my ($twig, $bug) = @_;
my $root = $twig->root;
my $maintainer = $root->{'att'}->{'maintainer'};
my $exporter_login = $root->{'att'}->{'exporter'};
my $exporter = new Bugzilla::User({name => $exporter_login});
my $urlbase = $root->{'att'}->{'urlbase'};
# We will store output information in this variable.
my $log = "";
if (defined $bug->{'att'}->{'error'}) {
$log .= "\nError in bug " . $bug->field('bug_id') . "\@$urlbase: ";
$log .= $bug->{'att'}->{'error'} . "\n";
if ($bug->{'att'}->{'error'} =~ /NotFound/) {
$log .= "$exporter_login tried to move bug " . $bug->field('bug_id');
$log .= " here, but $urlbase reports that this bug";
$log .= " does not exist.\n";
}
elsif ($bug->{'att'}->{'error'} =~ /NotPermitted/) {
$log .= "$exporter_login tried to move bug " . $bug->field('bug_id');
$log .= " here, but $urlbase reports that $exporter_login does ";
$log .= " not have access to that bug.\n";
}
return;
}
$bugtotal++;
# This list contains all other bug fields that we want to process.
# If it is not in this list it will not be included.
my %all_fields;
foreach my $field (qw(long_desc attachment flag group), Bugzilla::Bug::fields())
{
$all_fields{$field} = 1;
}
my %bug_fields;
my $err = "";
# Loop through all the xml tags inside a <bug> and compare them to the
# lists of fields. If they match throw them into the hash. Otherwise
# append it to the log, which will go into the comments when we are done.
foreach my $bugchild ($bug->children()) {
Debug("Parsing field: " . $bugchild->name, DEBUG_LEVEL);
# Skip the token if one is included. We don't want it included in
# the comments, and it is not used by the importer.
next if $bugchild->name eq 'token';
if (defined $all_fields{$bugchild->name}) {
my @values = $bug->children_text($bugchild->name);
if (scalar @values > 1) {
$bug_fields{$bugchild->name} = \@values;
}
else {
$bug_fields{$bugchild->name} = $values[0];
}
}
else {
$err .= "Unknown bug field \"" . $bugchild->name . "\"";
$err .= " encountered while moving bug\n";
$err .= " <" . $bugchild->name . ">";
if ($bugchild->children_count > 1) {
$err .= "\n";
foreach my $subchild ($bugchild->children()) {
$err .= " <" . $subchild->name . ">";
$err .= $subchild->field;
$err .= "</" . $subchild->name . ">\n";
}
}
else {
$err .= $bugchild->field;
}
$err .= "</" . $bugchild->name . ">\n";
}
}
# Parse long descriptions
my @long_descs;
foreach my $comment ($bug->children('long_desc')) {
Debug("Parsing Long Description", DEBUG_LEVEL);
my %long_desc = (
who => $comment->field('who'),
bug_when => format_time($comment->field('bug_when'), '%Y-%m-%d %T'),
isprivate => $comment->{'att'}->{'isprivate'} || 0
);
# If the exporter is not in the insidergroup, keep the comment public.
$long_desc{isprivate} = 0 unless $exporter->is_insider;
my $data = $comment->field('thetext');
if (defined $comment->first_child('thetext')->{'att'}->{'encoding'}
&& $comment->first_child('thetext')->{'att'}->{'encoding'} =~ /base64/)
{
$data = decode_base64($data);
}
# For backwards-compatibility with Bugzillas before 3.6:
#
# If we leave the attachment ID in the comment it will be made a link
# to the wrong attachment. Since the new attachment ID is unknown yet
# let's strip it out for now. We will make a comment with the right ID
# later
$data =~ s/Created an attachment \(id=\d+\)/Created an attachment/g;
# Same goes for bug #'s Since we don't know if the referenced bug
# is also being moved, lets make sure they know it means a different
# Bugzilla.
my $url = $urlbase . "show_bug.cgi?id=";
$data =~ s/([Bb]ugs?\s*\#?\s*(\d+))/$url$2/g;
# Keep the original commenter if possible, else we will fall back
# to the exporter account.
$long_desc{whoid} = login_to_id($long_desc{who});
if (!$long_desc{whoid}) {
$data = "The original author of this comment is $long_desc{who}.\n\n" . $data;
}
$long_desc{'thetext'} = $data;
push @long_descs, \%long_desc;
}
my @sorted_descs = sort { $a->{'bug_when'} cmp $b->{'bug_when'} } @long_descs;
my $comments = "\n\n--- Bug imported by $exporter_login ";
$comments .= format_time(scalar localtime(time()), '%Y-%m-%d %R %Z') . " ";
$comments .= " ---\n\n";
$comments .= "This bug was previously known as _bug_ $bug_fields{'bug_id'} at ";
$comments .= $urlbase . "show_bug.cgi?id=" . $bug_fields{'bug_id'} . "\n";
if (defined $bug_fields{'dependson'}) {
$comments .= "This bug depended on bug(s) "
. join(' ', _to_array($bug_fields{'dependson'})) . ".\n";
}
if (defined $bug_fields{'blocked'}) {
$comments .= "This bug blocked bug(s) "
. join(' ', _to_array($bug_fields{'blocked'})) . ".\n";
}
if (defined $bug_fields{'regressed_by'}) {
$comments .= "This bug is regressed by bug(s) "
. join(' ', _to_array($bug_fields{'regressed_by'})) . ".\n";
}
if (defined $bug_fields{'regresses'}) {
$comments .= "This bug regressed bug(s) "
. join(' ', _to_array($bug_fields{'regresses'})) . ".\n";
}
# Now we process each of the fields in turn and make sure they contain
# valid data. We will create two parallel arrays, one for the query
# and one for the values. For every field we need to push an entry onto
# each array.
my @query = ();
my @values = ();
# Each of these fields we will check for newlines and shove onto the array
foreach my $field (qw(status_whiteboard bug_file_loc short_desc)) {
if ($bug_fields{$field}) {
$bug_fields{$field} = clean_text($bug_fields{$field});
push(@query, $field);
push(@values, $bug_fields{$field});
}
}
# Alias
if ($bug_fields{'alias'}) {
my ($alias) = $dbh->selectrow_array(
"SELECT COUNT(*) FROM bugs
WHERE alias = ?", undef,
$bug_fields{'alias'}
);
if ($alias) {
$err .= "Dropping conflicting bug alias ";
$err .= $bug_fields{'alias'} . "\n";
}
else {
$alias = $bug_fields{'alias'};
push @query, 'alias';
push @values, $alias;
}
}
# Timestamps
push(@query, "creation_ts");
push(@values,
format_time($bug_fields{'creation_ts'}, "%Y-%m-%d %T") || $timestamp);
push(@query, "delta_ts");
push(@values,
format_time($bug_fields{'delta_ts'}, "%Y-%m-%d %T") || $timestamp);
# Bug Access
push(@query, "cclist_accessible");
push(@values, $bug_fields{'cclist_accessible'} ? 1 : 0);
push(@query, "reporter_accessible");
push(@values, $bug_fields{'reporter_accessible'} ? 1 : 0);
my $product = new Bugzilla::Product({name => $bug_fields{'product'} || ''});
if (!$product) {
$err .= "Unknown Product " . $bug_fields{'product'} . "\n";
$err .= " Using default product set at the command line.\n";
$product = new Bugzilla::Product({name => $default_product_name})
or Error(
"an invalid default product was defined for the target" . " DB. "
. $params->{"maintainer"}
. " needs to specify "
. "--product when calling importxml.pl",
"REOPEN", $exporter
);
}
my $component
= new Bugzilla::Component({
product => $product, name => $bug_fields{'component'} || ''
});
if (!$component) {
$err .= "Unknown Component " . $bug_fields{'component'} . "\n";
$err .= " Using default product and component set ";
$err .= "at the command line.\n";
$product = new Bugzilla::Product({name => $default_product_name});
$component = new Bugzilla::Component(
{name => $default_component_name, product => $product});
if (!$component) {
Error(
"an invalid default component was defined for the target" . " DB. "
. $params->{"maintainer"}
. " needs to specify "
. "--component when calling importxml.pl",
"REOPEN", $exporter
);
}
}
my $prod_id = $product->id;
my $comp_id = $component->id;
push(@query, "product_id");
push(@values, $prod_id);
push(@query, "component_id");
push(@values, $comp_id);
# Since there is no default version for a product, we check that the one
# coming over is valid. If not we will use the first one in @versions
# and warn them.
my $version = new Bugzilla::Version(
{product => $product, name => $bug_fields{'version'}});
push(@query, "version");
if ($version) {
push(@values, $version->name);
}
else {
push(@values, $product->default_version);
$err .= "Unknown version \"";
$err .= (defined $bug_fields{'version'}) ? $bug_fields{'version'} : "unknown";
$err .= " in product " . $product->name . ". \n";
$err .= " Setting to default version for this product, ";
$err .= "\"" . $product->default_version . "\".\n";
}
# Milestone
if ($params->{"usetargetmilestone"}) {
my $milestone;
if (defined $bug_fields{'target_milestone'}
&& $bug_fields{'target_milestone'} ne "")
{
$milestone = new Bugzilla::Milestone(
{product => $product, name => $bug_fields{'target_milestone'}});
}
if ($milestone) {
push(@values, $milestone->name);
}
else {
push(@values, $product->default_milestone);
$err .= "Unknown milestone \"";
$err
.= (defined $bug_fields{'target_milestone'})
? $bug_fields{'target_milestone'}
: "unknown";
$err .= " in product " . $product->name . ". \n";
$err .= " Setting to default milestone for this product, ";
$err .= "\"" . $product->default_milestone . "\".\n";
}
push(@query, "target_milestone");
}
# For type, priority, severity, opsys and platform we check that the one being
# imported is valid. If it is not we use the defaults set in the parameters.
if (defined($bug_fields{'bug_type'})
&& check_field('bug_type', scalar $bug_fields{'bug_type'}, undef, ERR_LEVEL))
{
push(@values, $bug_fields{'bug_type'});
}
else {
push(@values, $params->{'default_bug_type'});
$err .= "Unknown type ";
$err .= (defined $bug_fields{'bug_type'}) ? $bug_fields{'bug_type'} : "unknown";
$err .= ". Setting to default type \"" . $params->{'default_bug_type'} . "\".\n";
}
push(@query, "bug_type");
if (
defined($bug_fields{'bug_severity'})
&& check_field(
'bug_severity', scalar $bug_fields{'bug_severity'},
undef, ERR_LEVEL
)
)
{
push(@values, $bug_fields{'bug_severity'});
}
else {
push(@values, $params->{'defaultseverity'});
$err .= "Unknown severity ";
$err
.= (defined $bug_fields{'bug_severity'})
? $bug_fields{'bug_severity'}
: "unknown";
$err .= ". Setting to default severity \"";
$err .= $params->{'defaultseverity'} . "\".\n";
}
push(@query, "bug_severity");
if (defined($bug_fields{'priority'})
&& check_field('priority', scalar $bug_fields{'priority'}, undef, ERR_LEVEL))
{
push(@values, $bug_fields{'priority'});
}
else {
push(@values, $params->{'defaultpriority'});
$err .= "Unknown priority ";
$err .= (defined $bug_fields{'priority'}) ? $bug_fields{'priority'} : "unknown";
$err .= ". Setting to default priority \"";
$err .= $params->{'defaultpriority'} . "\".\n";
}
push(@query, "priority");
if (
defined($bug_fields{'rep_platform'})
&& check_field(
'rep_platform', scalar $bug_fields{'rep_platform'},
undef, ERR_LEVEL
)
)
{
push(@values, $bug_fields{'rep_platform'});
}
else {
push(@values, $params->{'defaultplatform'});
$err .= "Unknown platform ";
$err
.= (defined $bug_fields{'rep_platform'})
? $bug_fields{'rep_platform'}
: "unknown";
$err .= ". Setting to default platform \"";
$err .= $params->{'defaultplatform'} . "\".\n";
}
push(@query, "rep_platform");
if (defined($bug_fields{'op_sys'})
&& check_field('op_sys', scalar $bug_fields{'op_sys'}, undef, ERR_LEVEL))
{
push(@values, $bug_fields{'op_sys'});
}
else {
push(@values, $params->{'defaultopsys'});
$err .= "Unknown operating system ";
$err .= (defined $bug_fields{'op_sys'}) ? $bug_fields{'op_sys'} : "unknown";
$err .= ". Setting to default OS \"" . $params->{'defaultopsys'} . "\".\n";
}
push(@query, "op_sys");
# Process time fields
if ($params->{"timetrackinggroup"}) {
my $date
= validate_date($bug_fields{'deadline'}) ? $bug_fields{'deadline'} : undef;
push(@values, $date);
push(@query, "deadline");
if (defined $bug_fields{'estimated_time'}) {
eval { Bugzilla::Object::_validate_time($bug_fields{'estimated_time'}, "e"); };
if (!$@) {
push(@values, $bug_fields{'estimated_time'});
push(@query, "estimated_time");
}
}
if (defined $bug_fields{'remaining_time'}) {
eval { Bugzilla::Object::_validate_time($bug_fields{'remaining_time'}, "r"); };
if (!$@) {
push(@values, $bug_fields{'remaining_time'});
push(@query, "remaining_time");
}
}
if (defined $bug_fields{'actual_time'}) {
eval { Bugzilla::Object::_validate_time($bug_fields{'actual_time'}, "a"); };
if ($@) {
$bug_fields{'actual_time'} = 0.0;
$err .= "Invalid Actual Time. Setting to 0.0\n";
}
}
else {
$bug_fields{'actual_time'} = 0.0;
$err .= "Actual time not defined. Setting to 0.0\n";
}
}
# Reporter Assignee QA Contact
my $exporterid = $exporter->id;
my $reporterid = login_to_id($bug_fields{'reporter'})
if $bug_fields{'reporter'};
push(@query, "reporter");
if (($bug_fields{'reporter'}) && ($reporterid)) {
push(@values, $reporterid);
}
else {
push(@values, $exporterid);
$err .= "The original reporter of this bug does not have\n";
$err .= " an account here. Reassigning to the person who moved\n";
$err .= " it here: $exporter_login.\n";
if ($bug_fields{'reporter'}) {
$err .= " Previous reporter was $bug_fields{'reporter'}.\n";
}
else {
$err .= " Previous reporter is unknown.\n";
}
}
my $changed_owner = 0;
my $owner;
push(@query, "assigned_to");
if ( ($bug_fields{'assigned_to'})
&& ($owner = login_to_id($bug_fields{'assigned_to'})))
{
push(@values, $owner);
}
else {
push(@values, $component->default_assignee->id);
$changed_owner = 1;
$err .= "The original assignee of this bug does not have\n";
$err .= " an account here. Reassigning to the default assignee\n";
$err .= " for the component, " . $component->default_assignee->login . ".\n";
if ($bug_fields{'assigned_to'}) {
$err .= " Previous assignee was $bug_fields{'assigned_to'}.\n";
}
else {
$err .= " Previous assignee is unknown.\n";
}
}
if ($params->{"useqacontact"}) {
my $qa_contact;
push(@query, "qa_contact");
if ( (defined $bug_fields{'qa_contact'})
&& ($qa_contact = login_to_id($bug_fields{'qa_contact'})))
{
push(@values, $qa_contact);
}
else {
push(@values, $component->default_qa_contact->id || undef);
if ($component->default_qa_contact->id) {
$err .= "Setting qa contact to the default for this product.\n";
$err .= " This bug either had no qa contact or an invalid one.\n";
}
}
}
# Status & Resolution
my $valid_res
= check_field('resolution', scalar $bug_fields{'resolution'}, undef,
ERR_LEVEL);
my $valid_status
= check_field('bug_status', scalar $bug_fields{'bug_status'}, undef,
ERR_LEVEL);
my $is_open = is_open_state($bug_fields{'bug_status'});
my $status = $bug_fields{'bug_status'} || undef;
my $resolution = $bug_fields{'resolution'} || undef;
# Check everconfirmed
my $everconfirmed;
if ($product->allows_unconfirmed) {
$everconfirmed = $bug_fields{'everconfirmed'} || 0;
}
else {
$everconfirmed = 1;
}
push(@query, "everconfirmed");
push(@values, $everconfirmed);
# Sanity check will complain about having bugs marked duplicate but no
# entry in the dup table. Since we can't tell the bug ID of bugs
# that might not yet be in the database we have no way of populating
# this table. Change the resolution instead.
if ($valid_res && ($bug_fields{'resolution'} eq "DUPLICATE")) {
$resolution = "INVALID";
$err .= "This bug was marked DUPLICATE in the database ";
$err .= "it was moved from.\n Changing resolution to \"INVALID\"\n";
}
# If there is at least 1 initial bug status different from UNCO, use it,
# else use the open bug status with the lowest sortkey (different from UNCO).
my @bug_statuses = @{Bugzilla::Status->can_change_to()};
@bug_statuses = grep { $_->name ne 'UNCONFIRMED' } @bug_statuses;
my $initial_status;
if (scalar(@bug_statuses)) {
$initial_status = $bug_statuses[0]->name;
}
else {
@bug_statuses = Bugzilla::Status->get_all();
# Exclude UNCO and inactive bug statuses.
@bug_statuses
= grep { $_->is_active && $_->name ne 'UNCONFIRMED' } @bug_statuses;
my @open_statuses = grep { $_->is_open } @bug_statuses;
if (scalar(@open_statuses)) {
$initial_status = $open_statuses[0]->name;
}
else {
# There is NO other open bug statuses outside UNCO???
Error("no open bug statuses available.");
}
}
if ($status) {
if ($valid_status) {
if ($is_open) {
if ($resolution) {
$err .= "Resolution set on an open status.\n";
$err .= " Dropping resolution $resolution\n";
$resolution = undef;
}
if ($changed_owner) {
if ($everconfirmed) {
$status = $initial_status;
}
else {
$status = "UNCONFIRMED";
}
if ($status ne $bug_fields{'bug_status'}) {
$err .= "Bug reassigned, setting status to \"$status\".\n";
$err .= " Previous status was \"";
$err .= $bug_fields{'bug_status'} . "\".\n";
}
}
if ($everconfirmed) {
if ($status eq "UNCONFIRMED") {
$err .= "Bug Status was UNCONFIRMED but everconfirmed was true\n";
$err .= " Setting status to $initial_status\n";
$status = $initial_status;
}
}
else { # $everconfirmed is false
if ($status ne "UNCONFIRMED") {
$err .= "Bug Status was $status but everconfirmed was false\n";
$err .= " Setting status to UNCONFIRMED\n";
$status = "UNCONFIRMED";
}
}
}
else { # $is_open is false
if (!$resolution) {
$err .= "Missing Resolution. Setting status to ";
if ($everconfirmed) {
$status = $initial_status;
$err .= "$initial_status\n";
}
else {
$status = "UNCONFIRMED";
$err .= "UNCONFIRMED\n";
}
}
elsif (!$valid_res) {
$err .= "Unknown resolution \"$resolution\".\n";
$err .= " Setting resolution to INVALID\n";
$resolution = "INVALID";
}
}
}
else { # $valid_status is false
if ($everconfirmed) {
$status = $initial_status;
}
else {
$status = "UNCONFIRMED";
}
$err .= "Bug has invalid status, setting status to \"$status\".\n";
$err .= " Previous status was \"";
$err .= $bug_fields{'bug_status'} . "\".\n";