vote up 1 vote down star

There has been a fair bit of talk/debate lately in the Zend Framework community about thin controllers. Apparently there is a tendency of ZF users to view the Model as nothing more than the gateway to the database.

The argument is that Models should be "fat" and do more of the work and Controllers shouldn't be chaining methods and doing much work beyond conveying the meaning of the UI to the model.

For some references follow the links in this post:

http://weierophinney.net/matthew/archives/200-Using-Zend_Form-in-Your-Models.html

Along the same lines, I think it's easy to let Zend_Acl and Zend_Auth overtake your controllers and turn them into a complex mess.

I'm building a site right now that requires an admin section and before writing that code, I thought I'd try to get a good discussion/debate started on how best to structure authorization and access control, with a particular eye to well tested methodologies from the OOP world.

Thank you.

flag

76% accept rate

1 Answer

vote up 1 vote down check

Best solution is Front Controller Plugin. In routeShutdown() method (i.e. first moment when you have the request object) you check the ACL and / or redirect to login controller.

link|flag
And if you need calling restricted action in non-restricted controllers you should move the code to predispatch. – tomas.fejfar Jun 7 at 9:57
Interesting. I'll need to research routeShutdown(). – joedevon Jun 8 at 15:40
I'm having a tough time figuring out how and where to register the front controller plugin. Do I have to modify the new Bootstrap.php? – joedevon Jun 9 at 9:15
Yes, you do. Use $front->registerPlugin($pluginInstance); – tomas.fejfar Jun 13 at 19:31

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.