summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Bug.pm
diff options
context:
space:
mode:
authorkiko%async.com.br <>2004-07-29 11:45:37 +0200
committerkiko%async.com.br <>2004-07-29 11:45:37 +0200
commit39633788a33cbe86b5ebc292fb18652fdc702e46 (patch)
tree7fda181b8cc91c3dc7cab8994696467de5a31204 /Bugzilla/Bug.pm
parent1176bd8d61a55297707bf28810a9fcea06e82ec5 (diff)
downloadbugzilla-39633788a33cbe86b5ebc292fb18652fdc702e46.tar.gz
bugzilla-39633788a33cbe86b5ebc292fb18652fdc702e46.tar.xz
Fix for bug 236678: Clean up access to COOKIE global. Murder the last
remaining places in the tree where COOKIE is used; includes a rather thorough cleanup of Bugzilla::Bug->user and a minor doc update. r=joel, a=justdave.
Diffstat (limited to 'Bugzilla/Bug.pm')
-rwxr-xr-xBugzilla/Bug.pm52
1 files changed, 26 insertions, 26 deletions
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm
index fa759ddb7..53b8bd193 100755
--- a/Bugzilla/Bug.pm
+++ b/Bugzilla/Bug.pm
@@ -387,32 +387,32 @@ sub user {
my $self = shift;
return $self->{'user'} if exists $self->{'user'};
- $self->{'user'} = {};
-
- my $movers = Param("movers");
- $movers =~ s/\s?,\s?/|/g;
- $movers =~ s/@/\@/g;
- $self->{'user'}->{'canmove'} = Param("move-enabled")
- && (defined $::COOKIE{"Bugzilla_login"})
- && ($::COOKIE{"Bugzilla_login"} =~ /$movers/);
-
- # In the below, if the person hasn't logged in ($::userid == 0), then
- # we treat them as if they can do anything. That's because we don't
- # know why they haven't logged in; it may just be because they don't
- # use cookies. Display everything as if they have all the permissions
- # in the world; their permissions will get checked when they log in
- # and actually try to make the change.
- $self->{'user'}->{'canedit'} = $::userid == 0
- || $::userid == $self->{'reporter'}{'id'}
- || (Param('useqacontact') && $self->{'qa_contact'} && $::userid == $self->{'qa_contact'}{'id'})
- || $::userid == $self->{'assigned_to'}{'id'}
- || &::UserInGroup("editbugs");
- $self->{'user'}->{'canconfirm'} = $::userid == 0
- || ($self->{'qa_contact'} && $::userid == $self->{'qa_contact'}{'id'})
- || $::userid == $self->{'assigned_to'}{'id'}
- || &::UserInGroup("editbugs")
- || &::UserInGroup("canconfirm");
-
+ use Bugzilla;
+
+ my @movers = map { trim $_ } split(",", Param("movers"));
+ my $canmove = Param("move-enabled") && Bugzilla->user &&
+ (lsearch(\@movers, Bugzilla->user->login) != -1);
+
+ # In the below, if the person hasn't logged in, then we treat them
+ # as if they can do anything. That's because we don't know why they
+ # haven't logged in; it may just be because they don't use cookies.
+ # Display everything as if they have all the permissions in the
+ # world; their permissions will get checked when they log in and
+ # actually try to make the change.
+ my $privileged = (!Bugzilla->user)
+ || Bugzilla->user->in_group("editbugs")
+ || Bugzilla->user->id == $self->{'assigned_to'}{'id'}
+ || (Param('useqacontact') && $self->{'qa_contact'} &&
+ Bugzilla->user->id == $self->{'qa_contact'}{'id'});
+ my $isreporter = Bugzilla->user &&
+ Bugzilla->user->id == $self->{'reporter'}{'id'};
+
+ my $canedit = $privileged || $isreporter;
+ my $canconfirm = $privileged || Bugzilla->user->in_group("canconfirm");
+
+ $self->{'user'} = {canmove => $canmove,
+ canconfirm => $canconfirm,
+ canedit => $canedit,};
return $self->{'user'};
}