Tagged Questions
Zend ACL is an Access Control List class in the Zend Framework, an open source, object-oriented web application framework implemented in PHP 5 and licensed under the New BSD License.
19
votes
1answer
8k views
Practical Zend_ACL + Zend_Auth implementation and best practices
Context:
My questions pertain to a forum I'm developing pretty much exactly like SO, where there are:
guests who have access to view threads but can't reply or vote
members who, with enough rep, ...
7
votes
1answer
1k views
Does Zend ACL suit my needs?
I have based my application upon the Zend Framework. I am using Zend_Auth for authentication, but I'm not sure if Zend_Acl will work for me because, frankly, the examples I've seen are either too ...
5
votes
2answers
2k views
Zend Framework: need typical example of ACL
Can some one guide me for typical implementation example of ACL. Like 'admin' can access 'admin' module, 'user' can access 'user module', and guest can access 'open' pages.
5
votes
1answer
259 views
How do I inject access control into a service layer of mvc application?
I'm coding a zend framework application using the the standard mvc paradigm with an added service layer to take care of application/business logic. It seems quite popular to put your access control ...
4
votes
2answers
750 views
How should I structure my tree of resources in an ACL?
Using PHP and Zend_ACL, I want to create an extremely flexible permissions system. I want to be able to assign permissions to all objects of a certain type, as well as to instances of those objects. ...
3
votes
1answer
477 views
Whats the way to use Zend_Acl in View to show/hide parts of view
I am wondering whats the way to use Zend_Acl to show/hide parts of view? I am thinking I will
Create a Controller Plugin that passes the logged in user + acl to view
...
3
votes
2answers
589 views
Zend Navigation - various navigation blocks
I have a navigation.xml file:
<?xml version="1.0" encoding="UTF-8"?>
<config>
<nav>
<programm_nav>
<label></label>
...
3
votes
3answers
233 views
Zend_Acl For Specific Parts Of The Page
I know how to use Zend_Acl to allow certain resources to certain usergroups but how do i use it to allow only specific parts of the page to be shown? For example
I have a button to delete a post via ...
3
votes
2answers
784 views
PHP Unit Testing with Zend Auth and Zend ACL
I have an application that is behind a login and utilizes zend_acl and zend_auth.
During pre-dispatch I have an ACL plugin that creates all the rules out for the ACL. I also have an Auth plugin that ...
3
votes
5answers
626 views
Zend_ACL Limitation?
I'm contemplating using Zend_ACL. However, to me it looks like you create roles and then give those roles permissions to controllers and actions they can or cannot access.
However, to me that seems ...
3
votes
4answers
1k views
Access Control List Best Practices - ACL - Setting Negative Roles for Users who Attack a Site
CONTEXT
I have just been reading about Zend ACL
http://framework.zend.com/manual/en/zend.acl.html
QUESTION
I'm running three Zend applications on one server.
My Front End App
My Front End-Members ...
2
votes
1answer
162 views
Zend navigation and Zend ACL
I am working with Zend Acl and Zend Navigation. I am setting up the navigation in the bootstrap. I am trying to have links not show if the user doesn't have access to the resource. I have read several ...
2
votes
2answers
302 views
is it possible to set permission in zend acl to action level insted of controller level
i am using zend framework , in my site i have two types of users , guest and loggeduser , i have a controller called . books , in there i have 3 actions . add , edit and delete ,
in my zend acl i ...
2
votes
1answer
340 views
Zend Acl - Modules, Controllers, Actions and Models
I spent the day looking for tutorials and answers about how to implement Zend_Acl here at SO as in other sites. And I got a headache. :X
I saw people using it to allow or disallow access to certain ...
2
votes
2answers
54 views
Where should filtering with an Acl be performed?
Let's say I have three tables: users, books, and users_books.
In one of my views, I want to display a list of all the books the current user has access to. A user has access to a book if a row ...
2
votes
2answers
738 views
Zend Navigation: Where should I load the ACL 'Role' in a private application
I am working on a 'private' application, you must be logged in to do anything at all. This gives me a bit of a an issue loading the role for Zend Navigation. Currently I am 'init'ing Zend Navigation ...
2
votes
1answer
323 views
Zend_Acl find all inherited roles
I got chain of roles:
acl.roles.guest = null
acl.roles.member = "guest"
acl.roles.admin = "member"
acl.roles.owner = "admin"
in .....Controller/Action/Helper/Acl.php I have stored _acl object
...
2
votes
1answer
223 views
Structuring Zend_Acl and CRUD with Parent/Child Relationships
I am wondering how should I structure my ACL for CRUD with Parent/Child Relations.
Eg. Projects have TodoLists. TodoLists have Todos
There are various controller actions for project
/projects/add
...
2
votes
2answers
878 views
PHP MySQL Zend-ACL - Graphically display ACL:
I have one MySQL DB table like the following, the resources table:
id | name | type
1 | guest | user
2 | member | user
3 | moderator | user
4 | owner | user
5 | admin | user
6 | index | ...
2
votes
0answers
135 views
How do I structure Zend_Controller_Router_Route to handle the action and a param key in the same position?
Here is my route in JSON:
"jobs":
{
"type":"Zend_Controller_Router_Route",
"route":"/jobs/:action/:id/*",
"defaults":
{
"module":"api",
"controller":"jobs",
...
2
votes
3answers
3k views
Giving Zend Navigation Pages Multiple ACL Privileges
I'm using Zend_Navigation and am trying to integrate it with Zend_Acl. Each page in the navigation has a privilege attribute. What I can't determine is how to define multiple privileges for a single ...
1
vote
0answers
11 views
Zend_Acl and a dynamic Assert
I'm trying to imply some dynamic assertions into my Zend code and have been using an article by [Ralph Schindler][1] but I couldn't get it to work. What I wanna do is make an "allow" rule in de Acl ...
1
vote
1answer
92 views
Zend ACL class not being found by FrontController
I think its a simple path issue here - but I've spent last 2 hours trying various combinations but not able to resolve this. The code is working fine on my windows system but when I upload it to my ...
1
vote
1answer
139 views
Zend_Acl and Zend_Auth api key approach
What's a good way to implement api keys for accessing specific controller actions using Zend MVC?
I currently have Zend_Acl in combination Zend_Auth using session cookies, but I want some actions to ...
1
vote
1answer
81 views
Display error message after using isAllowed
For example I have this implementation of the assert method in the class derived from Zend_Acl_Assert_Interface.
function assert(
Zend_Acl $acl,
Zend_Acl_Role_Interface $user = null,
...
1
vote
1answer
218 views
ZF Zend Form Validator to check if user is allowed to change field?
is it possible to write a validator for a zend form, which checks if the user has the right to change a form field? Means the user sees the field, but if tries even without permission (no acl right), ...
1
vote
0answers
85 views
ZF generic rest controller with validators and access rights from config. How to?
I need your feedback to my idee and your hints on how to implement the following as easy as possible. I know it's quite complex idea and i have a lack of experience in zend:
I'm thinking of writing a ...
1
vote
1answer
287 views
Having problems combining Zend_Acl and Zend_Navigation
I have a Federico_Plugin_Acl that extends Zend_Controller_Plugin_Abstract which looks like this:
class Federico_Plugin_Acl extends Zend_Controller_Plugin_Abstract {
private $_acl = null;
private ...
1
vote
0answers
109 views
Would you use Assertion or Dynamic Acl?
I'm implementing an AuthorizationService, basically it extends Zend_Acl and override authenticate() method to work with my own adapter.
Let's say I've User, Article, ArticleComment, ArticleVote, ...
1
vote
2answers
308 views
How do I combine Zend_Ath, Zend_Acl and partialview for the authentication and resource control
According to Randomness will get you everywhere.
Ryan’s Blog
the action stack component of Zend Framework is un-needed and that a partial view can be combined with Zend_Acl and Zend_Auth for the ...
1
vote
1answer
652 views
how to get role from Zend_Auth/Zend_ACL when using a Doctrine adapter? getting all work together
I'm using Zend_Auth with a project using doctrine.I believe every bootstrapping is done correctly and i can log in.
my adapter looks like this:
class Abra_Auth_Adapter_Doctrine implements ...
1
vote
2answers
443 views
Zend_ACL how to get role?
after reading the Zend documentation and some posts here I could not figure out how to get my user role out of a user table.
At the moment I use Zend_Auth like this in an AuthController:
// Set ...
1
vote
2answers
365 views
Is Zend ACL suitable for permissions for content by owner
I think Zend ACL is used to give permissions to user types (student, teacher). Can it be used to give permissions on per content basis. What I mean is this blog post was written by this user and they ...
1
vote
4answers
278 views
Zend_Acl Whitelist VS Blacklist?
Should i use a whitelist or blacklist approach to Zend_Acl? By that i mean deny any and all resources to everyone and write each single allow case for each role [blacklist] or allow all resources and ...
1
vote
1answer
193 views
Zend_Acl - Role per resource
I'm trying to implement Zend_Acl.
I've never used it before and whilst I can get basic acl stuff working on the controller/action level, I need users to have different roles on different projects, ...
1
vote
1answer
250 views
HTTP authentication and sessions
I've been trying to figure out how to do a HTTP authentication and then use the session to display pages in a webview in my android app. Could someone please provide som guidance (I would very much ...
1
vote
3answers
628 views
User-based dynamic permissions with Zend_ACL
Is it possible to assign users individual permissions based on dynamic elements in a Zend Framework application?
I have tables like so:
clients (id, name, contact_name, contact_number, logo, active)
...
1
vote
1answer
357 views
Denying access to action with Zend ACL causes Navigation link to disappear
I have a schedule controller with four actions:
class ScheduleController extends Zend_Controller_Action {
public function indexAction(){ ... }
public function viewAction(){ ... }
...
1
vote
1answer
1k views
Zend: ACL logic in View helpers
Background information:
I'm in my admin module, and I created a view helper in modules/admin/views/helpers/AdminPanel.php. I have a layout plugin that forces my view to use the layout in ...
1
vote
1answer
106 views
How to represent different application domains in an ACL?
I am working on a web application where different user groups have different access to
resources. So far nothing special I guess, but there is a caveat;
the application is divided into "domains" so ...
1
vote
1answer
246 views
Zend Framework: Implement Zend_Acl_Resources
how should i implement Zend_Acl_Resources? do i have something like:
$acl->isAllowed()
in controller actions? i somehow think there maybe a better way ... but cant think of it.
0
votes
1answer
74 views
Dynamic custom ACL in zend framework?
I need a solution where authenticated users are allowed access to certain Controllers/Actions based not on their user type :ie. admin or normal user (although I may add this using standard ACL later) ...
0
votes
2answers
77 views
What is Prefered Implementation Approach for Zend Acl
In Zend Framework 1.X which of the following approaches is better and why?
Approach-1:
Create a (sub)Class extending Zend_Acl and use is to manage all the Acl. It will allow us to use all the Zend_Acl ...
0
votes
1answer
123 views
Zend_Acl, Zend_Auth and Modules
I am trying to get around Zend_Acl but had no success so far. I need help as I am really stuck. My situation is this:
I have two modules
members
administrators
and two roles
member
admin
I ...
0
votes
1answer
28 views
Does caching(APC) of an instance of Zend_Acl affect security?
It wouldnt make it easier to do something nasty, would it?
0
votes
2answers
101 views
ACL Ressource (Controller)
i just implemented ACL in my Zend Framework which already uses Zend Auth.
I want to give access to some controllers and tried it this way:
$roleGuest = new Zend_Acl_Role('guest');
...
0
votes
1answer
60 views
Zend_Auth chaining adapters and ownership role acl
I set up a Zend_Acl and Zend_Auth scheme where user is authenticated using Zend_Auth_Adapter_Ldap and stored in session. I use a controller plugin to check if $auth->hasIdentity() and ...
0
votes
0answers
149 views
Assign multiple roles in Zend_Navigation using Zend_ACL in Zend Framework PHP?
I can't get my Zend_Navigation to work properly,
When logging in user with AUth/Doctrine, I am pulling out the roles assigned to the user (usually it's a few of them) from a Many-to-many table,
Then ...
0
votes
0answers
68 views
How to add Resource to Zend_ACL class?
I need to add the resources: employee, employer and admin to my ACL class. Someone else wrote the class, and i'm unsure where to insert my addResource statements. I'm thinking it's under ...
0
votes
0answers
78 views
Zend_ACL for multi projects website (per project roles)
I'm currently working on my first ZF project and I'd like to use ACLs to restrict access to specific methods.
The idea is, I'm managing multiple projects, each project has an owner (admin), users ...