GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Jifty::RightsFrom(3) User Contributed Perl Documentation Jifty::RightsFrom(3)

Jifty::RightsFrom - Delegate access control to a related object

  package Application::Model::Thing;
  use Jifty::DBI::Schema;
  use Application::Record schema {
    column owner => refers_to Application::Model::Person;
  }

  use Jifty::RightsFrom column => 'owner';

Provides a "delegate_current_user_can" method that various task-related objects can use as a base to make their own access control decisions based on their task. "current_user_can" in Jifty::Record uses this method to make an access control decision if it exists.

Note that this means that a model class can use Jifty::RightsFrom, and still have a custom "current_user_can" method, and they will not interfere with each other.

Takes:
sub_name
The subroutine in this package that you want to export.
export_to
The name of the package you want to export to.
as
The name your new curried sub should be exported into in the package "export_to"
args (arrayref)
The arguments you want to hand to your sub.

Make a decision about permissions based on checking permissions on the column of this record specified in the call to "import". "create", "delete", and "update" rights all check for the "update" right on the delegated object. On create, we look in the passed attributes for an argument with the name of that column.
2013-01-29 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.