Skip to main content

ACL implementation



First question





Please, could you explain me how simpliest ACL could be implemented in MVC.





Here is the first approach of using Acl in Controller...







<?php

class MyController extends Controller {



public function myMethod() {

//It is just abstract code

$acl = new Acl();

$acl->setController('MyController');

$acl->setMethod('myMethod');

$acl->getRole();

if (!$acl->allowed()) die("You're not allowed to do it!");

...

}



}

?>







It is very bad approach, and it's minus is that we have to add Acl piece of code into each controller's method, but we don't need any additional dependencies!





Next approach is to make all controller's methods private and add ACL code into controller's __call method.







<?php

class MyController extends Controller {



private function myMethod() {

...

}



public function __call($name, $params) {

//It is just abstract code

$acl = new Acl();

$acl->setController(__CLASS__);

$acl->setMethod($name);

$acl->getRole();

if (!$acl->allowed()) die("You're not allowed to do it!");

...

}



}

?>







It is better than previous code, but main minuses are...





  • All controller's methods should be private



  • We have to add ACL code into each controller's __call method.







The next approach is to put Acl code into parent Controller, but we still need to keep all child controller's methods private.





What is the solution? And what is the best practice? Where should I call Acl functions to decide allow or disallow method to be executed.





Second question





Second question is about getting role using Acl. Let's imagine that we have guests, users and user's friends. User have restricted access to viewing his profile that only friends can view it. All guests can't view this user's profile. So, here is the logic..





  • we have to ensure that method being called is profile



  • we have to detect owner of this profile



  • we have to detect is viewer is owner of this profile or no



  • we have to read restriction rules about this profile



  • we have to decide execute or not execute profile method







The main question is about detecting owner of profile. We can detect who is owner of profile only executing model's method $model->getOwner(), but Acl do not have access to model. How can we implement this?





I hope that my thoughts are clear. Sorry for my English.





Thank you.



Source: Tips4all

Comments

  1. One possibility is to wrap all your controllers in another class that extends Controller and have it delegate all the function calls to the wrapped instance after checking for authorization.

    You could also do it more upstream, in the dispatcher (if your application does indeed have one) and lookup the permissions based on the URLs, instead of control methods.

    edit: Whether you need to access a database, a LDAP server, etc. is orthogonal to the question. My point was that you could implement an authorization based on URLs instead of controller methods. These is more robust because you typically won't be changing your URLs (URLs area kind of public interface), but you might as well change the implementations of your controllers.

    Typically, you have one or several configuration files where you map specific URL patterns to specific authentication methods and authorization directives. The dispatcher, before dispatching the request to the controllers, determines if the user is authorized and aborts the dispatching if he's not.

    ReplyDelete

Post a Comment

Popular posts from this blog

Slow Android emulator

I have a 2.67 GHz Celeron processor, 1.21 GB of RAM on a x86 Windows XP Professional machine. My understanding is that the Android emulator should start fairly quickly on such a machine, but for me it does not. I have followed all instructions in setting up the IDE, SDKs, JDKs and such and have had some success in staring the emulator quickly but is very particulary. How can I, if possible, fix this problem?