diff options
author | Dylan Hardison <dylan@mozilla.com> | 2015-12-15 19:52:37 -0500 |
---|---|---|
committer | Dylan Hardison <dylan@mozilla.com> | 2015-12-15 19:53:34 -0500 |
commit | e24777264780f6e870e352e76fd2508b48621d72 (patch) | |
tree | 36d84e0fcb104ce6bb9ea18fb59e89aa5f32bd68 /Bugzilla | |
parent | 979ba53dae33fc94a7b43bd156f60f147cd1994b (diff) | |
download | bugs-e24777264780f6e870e352e76fd2508b48621d72.tar bugs-e24777264780f6e870e352e76fd2508b48621d72.tar.gz bugs-e24777264780f6e870e352e76fd2508b48621d72.tar.bz2 bugs-e24777264780f6e870e352e76fd2508b48621d72.tar.xz bugs-e24777264780f6e870e352e76fd2508b48621d72.zip |
Bug 1169181 - The bug_user_last_visit method returns an empty array for old bugs
r=dkl,a=dkl
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/User.pm | 5 | ||||
-rw-r--r-- | Bugzilla/WebService/BugUserLastVisit.pm | 24 |
2 files changed, 13 insertions, 16 deletions
diff --git a/Bugzilla/User.pm b/Bugzilla/User.pm index 6cfef6db5..77e6cebb0 100644 --- a/Bugzilla/User.pm +++ b/Bugzilla/User.pm @@ -922,9 +922,10 @@ sub groups { } sub last_visited { - my ($self) = @_; + my ($self, $ids) = @_; - return Bugzilla::BugUserLastVisit->match({ user_id => $self->id }); + return Bugzilla::BugUserLastVisit->match({ user_id => $self->id, + $ids ? ( bug_id => $ids ) : () }); } sub is_involved_in_bug { diff --git a/Bugzilla/WebService/BugUserLastVisit.pm b/Bugzilla/WebService/BugUserLastVisit.pm index 19a56ff46..c02812594 100644 --- a/Bugzilla/WebService/BugUserLastVisit.pm +++ b/Bugzilla/WebService/BugUserLastVisit.pm @@ -52,7 +52,7 @@ sub update { push( @results, $self->_bug_user_last_visit_to_hash( - $bug, $last_visit_ts, $params + $bug->id, $last_visit_ts, $params )); } $dbh->bz_commit_transaction(); @@ -67,27 +67,23 @@ sub get { $user->login(LOGIN_REQUIRED); + my @last_visits; if ($ids) { # Cache permissions for bugs. This highly reduces the number of calls to # the DB. visible_bugs() is only able to handle bug IDs, so we have to # skip aliases. $user->visible_bugs([grep /^[0-9]$/, @$ids]); - } - - my @last_visits = @{ $user->last_visited }; - if ($ids) { - # remove bugs that we are not interested in if ids is passed in. - my %id_set = map { ($_ => 1) } @$ids; - @last_visits = grep { $id_set{ $_->bug_id } } @last_visits; + my %last_visit = map { $_->bug_id => $_->last_visit_ts } @{ $user->last_visited($ids) }; + @last_visits = map { $self->_bug_user_last_visit_to_hash($_->id, $last_visit{$_}, $params) } @$ids; + } + else { + @last_visits = map { + $self->_bug_user_last_visit_to_hash($_->bug_id, $_->last_visit_ts, $params) + } @{ $user->last_visited }; } - return [ - map { - $self->_bug_user_last_visit_to_hash($_->bug_id, $_->last_visit_ts, - $params) - } @last_visits - ]; + return \@last_visits; } sub _bug_user_last_visit_to_hash { |