Bugzilla – Attachment 27219 Details for
Bug 12080
Superserials permission appears to be broken
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 12080: Refactor can_*_subscription in C4::Serials
Bug-12080-Refactor-cansubscription-in-C4Serials.patch (text/plain), 3.39 KB, created by
Jonathan Druart
on 2014-04-16 15:01:05 UTC
(
hide
)
Description:
Bug 12080: Refactor can_*_subscription in C4::Serials
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2014-04-16 15:01:05 UTC
Size:
3.39 KB
patch
obsolete
>From ae8774868ee61f4a2c6e1c219c8b5cfc49d76858 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@biblibre.com> >Date: Wed, 16 Apr 2014 16:58:36 +0200 >Subject: [PATCH] Bug 12080: Refactor can_*_subscription in C4::Serials > >--- > C4/Serials.pm | 49 +++++++++++++++++-------------------------------- > 1 file changed, 17 insertions(+), 32 deletions(-) > >diff --git a/C4/Serials.pm b/C4/Serials.pm >index f1add58..64fcf38 100644 >--- a/C4/Serials.pm >+++ b/C4/Serials.pm >@@ -2840,45 +2840,30 @@ sub subscriptionCurrentlyOnOrder { > > $can = can_edit_subscription( $subscriptionid[, $userid] ); > >-Return 1 if the subscription is editable by the current logged user (or a given $userid), else 0. >+Return 1 if the subscription can be edited by the current logged user (or a given $userid), else 0. > > =cut > > sub can_edit_subscription { > my ( $subscription, $userid ) = @_; >- return 0 unless C4::Context->userenv; >- my $flags = C4::Context->userenv->{flags}; >- $userid ||= C4::Context->userenv->{'id'}; >- >- if ( C4::Context->preference('IndependentBranches') ) { >- return 1 >- if C4::Context->IsSuperLibrarian() >- or >- C4::Auth::haspermission( $userid, { serials => 'superserials' } ) >- or ( >- C4::Auth::haspermission( $userid, >- { serials => 'edit_subscription' } ) >- and ( not defined $subscription->{branchcode} >- or $subscription->{branchcode} eq '' >- or $subscription->{branchcode} eq >- C4::Context->userenv->{'branch'} ) >- ); >- } >- else { >- return 1 >- if C4::Context->IsSuperLibrarian() >- or >- C4::Auth::haspermission( $userid, { serials => 'superserials' } ) >- or C4::Auth::haspermission( >- $userid, { serials => 'edit_subscription' } >- ), >- ; >- } >- return 0; >+ return _can_do_on_subscription( $subscription, $userid, 'edit_subscription' ); > } > >+=head2 can_show_subscription >+ >+ $can = can_show_subscription( $subscriptionid[, $userid] ); >+ >+Return 1 if the subscription can be shown by the current logged user (or a given $userid), else 0. >+ >+=cut >+ > sub can_show_subscription { > my ( $subscription, $userid ) = @_; >+ return _can_do_on_subscription( $subscription, $userid, '*' ); >+} >+ >+sub _can_do_on_subscription { >+ my ( $subscription, $userid, $permission ) = @_; > return 0 unless C4::Context->userenv; > my $flags = C4::Context->userenv->{flags}; > $userid ||= C4::Context->userenv->{'id'}; >@@ -2890,7 +2875,7 @@ sub can_show_subscription { > C4::Auth::haspermission( $userid, { serials => 'superserials' } ) > or ( > C4::Auth::haspermission( $userid, >- { serials => '*' } ) >+ { serials => $permission } ) > and ( not defined $subscription->{branchcode} > or $subscription->{branchcode} eq '' > or $subscription->{branchcode} eq >@@ -2903,7 +2888,7 @@ sub can_show_subscription { > or > C4::Auth::haspermission( $userid, { serials => 'superserials' } ) > or C4::Auth::haspermission( >- $userid, { serials => '*' } >+ $userid, { serials => $permission } > ), > ; > } >-- >1.7.10.4
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 12080
:
27115
|
27135
|
27218
|
27219
|
27279
|
27284
|
27286
|
27287