summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Bugzilla/Migrate/Flyspray.pm42
1 files changed, 24 insertions, 18 deletions
diff --git a/Bugzilla/Migrate/Flyspray.pm b/Bugzilla/Migrate/Flyspray.pm
index abce3ae12..5ea70d8a8 100644
--- a/Bugzilla/Migrate/Flyspray.pm
+++ b/Bugzilla/Migrate/Flyspray.pm
@@ -16,6 +16,8 @@ use parent qw(Bugzilla::Migrate);
use Bugzilla::Constants;
use Bugzilla::Util qw(validate_email_syntax);
use Bugzilla::DB;
+use Bugzilla::User;
+use Bugzilla::Bug;
use IO::File;
use List::Util qw(first none);
@@ -440,23 +442,6 @@ sub _read_bugs {
who => $self->_get_username($history->{user_id}),
bug_when => $self->parse_date($history->{event_date}),
};
-
- push @{$bug->{comments}},
- {
- type => CMT_DUPE_OF,
- extra_data => int($1),
- who => $self->_get_username($history->{user_id}),
- bug_when => $self->parse_date($history->{event_date}),
- };
-
- push @{$self->{bug_map}->{int($1)}->{comments}},
- {
- type => CMT_HAS_DUPE,
- extra_data => $row->{task_id},
- who => $self->_get_username($history->{user_id}),
- bug_when => $self->parse_date($history->{event_date}),
- }
- if defined $self->{bug_map}->{int($1)};
}
}
}
@@ -584,12 +569,33 @@ sub after_insert {
my ($self) = @_;
$self->debug("Marking duplicate bugs");
- $self->debug($self->{dupes}, 3);
for my $entry (@{$self->{dupes}}) {
my $dupeOf_bug = Bugzilla::Bug->new($entry->{dupe_of});
$self->{dbh}->do("INSERT INTO duplicates (dupe_of, dupe) VALUES (?, ?)",
undef, $entry->{dupe_of}, $entry->{dupe})
unless defined $dupeOf_bug->{error};
+
+ my $dupe_bug = Bugzilla::Bug->new($entry->{dupe});
+
+ $self->_insert_comments(
+ $dupe_bug,
+ [{
+ type => CMT_DUPE_OF,
+ extra_data => $entry->{dupe_of},
+ who => $entry->{who},
+ bug_when => $entry->{bug_when},
+ }]
+ );
+
+ $self->_insert_comments(
+ $dupeOf_bug,
+ [{
+ type => CMT_HAS_DUPE,
+ extra_data => $entry->{dupe},
+ who => $entry->{who},
+ bug_when => $entry->{bug_when},
+ }]
+ );
}
}