The declarative authorization plugin offers an authorization mechanism for Ruby inspired by RBAC.

learn more… | top users | synonyms

-1
votes
0answers
12 views

monkey patch declarative authorization is reseted after some time

To make declarative_authorization Graphical View or Change Support run, I monkeypatch the render method of AuthorizationRulesController. It works fine but after some time and some changes it falls ...
1
vote
1answer
26 views

How does the web container know about the role of the user

I am very new to web-app development and its security and trying to understand things around. Everywhere I look for implementing security in my webapp they ask to use declarative security. For ...
0
votes
0answers
29 views

Rails Authorization - cannot save object if result not permitted

Rails (3.0.19), declarative_authorization (0.5.4) I have a namespaced model in which I have managed to get declarative authorization to work with the if_attribute setting in authorization_rules: ...
0
votes
1answer
17 views

Finding a user is Admin or Not with Decalarative Authorization

I have implemented declarative authorization in my blog app. Now I have three layouts each for an Admin, Authenticated User and guest user. So I need to check what type of user is using the app at a ...
0
votes
1answer
49 views

Error when running rails server

I am trying to configure declarative authorization to my rails blog app. After doing all as required, I did rails s to start the server. I have got stuck with the following error. rails s ...
0
votes
0answers
17 views

Issue in application_controller on integrating Declarative Authorization

I have integrated declarative authorization in my rails app. My application controller looks like below. class ApplicationController < ActionController::Base protect_from_forgery ...
-1
votes
1answer
42 views

No Multiple Login on Same machine but same browser allowed

I have a simple requirement of not allowing a user to log into multiple browsers at a time. Same browser is fine. What is the simplest thing which can be done? Technlogy : .net 4.0 and sql sever ...
0
votes
2answers
43 views

How can I run the same tests in rspec/capybara with one parameter throgh iteration in an array

I am working with rails rspec/capybara/declarative_authorization. I have to run the same test with a lot of different users: describe "Revision in root folder" do before do with_user(@guest) ...
0
votes
0answers
37 views

declarative_authorization if_permitted_to with polymorphic association fail

I'm tracking the activities with a model: class Activity < ActiveRecord::Base belongs_to :model, polymorphic: true ... end An the idea is the user can read one activity only if he can read ...
0
votes
1answer
60 views

Declarative Authorization: restrict model actions on specific attributes

I'm quite new to rails and I'm trying to setup an authorization system that allows me to control which attributes of a model can be modified by a user. I use declarative_authorization for a role ...
0
votes
2answers
23 views

Declarative Auth blocking instance variables

I'm using declarative authorization in my rails app, and I have the following controller: class OrganizationsController < ApplicationController filter_resource_access attribute_check: true ...
0
votes
1answer
48 views

Why can't Rails find my print layout file

I have... /config/routes.rb: resources :documents do member do get :print end end /config/authorization_rules.rb: role :admin do has_permission_on [:documents], :to => [:print] ...
1
vote
0answers
63 views

choosing between declarative_authorization and cancan

What is the difference between CanCan and declarative_authorization, and How can I choose between this two? Could you please provide some examples in which one of them would be a better choice? I ...
4
votes
2answers
123 views

Declarative Authorization with a permissons join table

Users have permission to manage articles for particular combinations of location and category. For example Dave may be allowed to manage HR articles for Paris. Paul may be allowed to manage Business ...
0
votes
0answers
53 views

How to install the Declarative Authorization in Ruby on Rail 3

I tried to do the Declarative Authorization in Ruby on Rail 3 for my application, but I got a problem because after I put this line " config.gem "declarative_authorization", :source => ...
0
votes
0answers
30 views

declarative_authorization for field-level control

I want to restrict ability to change the roles field in the user model to a certain role. Of course I could use scoped mass assignment but is it actually possible to use declarative_authorization for ...
0
votes
1answer
56 views

if_attribute doesn't work with multiple hash on declarative_authorization

I use declarative_authorization on Ruby on rails 3.1. A group has many albums (groupalbum), a group is create by one user (user_id in foreign key for group table). Only the owner of the group can ...
0
votes
2answers
62 views

Why the :attribute_check in Declarative_Authorization don't found ID's

I have a problem since many days with Declarative_Authorization on Ruby on Rails 3.1. I add this on the top of each controller : class UsersController < ApplicationController # Verifies that ...
0
votes
2answers
215 views

Devise + Declarative_authorization + role_model + different users model name : undefined method `current_user'

I do have this famous error : "undefined method `current_user'" with declarative authorization, though I set up this variable in the application_controller.rb : class ApplicationController < ...
0
votes
0answers
74 views

How to use permitted_to? with attribute check on index pages?

I'm using declarative authorization and I have a model Project. Now, users are assigned to projects and there are two kind of permissions. Specifics (which apply to projects assigned to the user) and ...
0
votes
1answer
59 views

How to use with_permissions_to in declarative_authorization?

I have the next model: class AssignmentReport < ActiveRecord::Base end And 2 permissions defined to manage it: privilege: :approve_all, context: :assignment_reports AND privilege: ...
0
votes
1answer
51 views

Rails declarative_authorization project_admin role

I am trying to create project admin and project collaborator roles using the declarative_authorization gem. I have a table called 'collaborators' which holds the users to projects mappings. Models: ...
1
vote
0answers
67 views

Rails 3 + Declarative Authorization: nested permissions

I'm using declarative authorization. Let's say I have two models/controllers named batch and timetable_entry. I want the users with permission to access /batches/:batch_id (batches#show) to be able to ...
0
votes
0answers
38 views

How to list authorization rules when testing

I'm trying to test authorization rules with cucumber and capybara. When I run the server and do the same the test is trying to do it works fine but when running the test with cucumber I get ...
1
vote
2answers
165 views

Attribute check on nested resource with declarative authorization

I'm trying to add filter_access_to with attribute_check: true but my model, Assignment, is nested on Project and I want to check that the current user is assigned to the project so he/she can update ...
1
vote
1answer
95 views

Declarative Authorization: Allow updating some fields only

I'm using declarative authorization to manage users rights in an application. I have a post model, which is manageable by it's owner. has_permission_on :post, :to => :manage do if_attribute ...
1
vote
1answer
84 views

Force reload of authorization rules.rb with declarative authorization

I'm trying to use declarative authorization to make dynamic authorization so I'm storing the roles and permissions in the database. The only problem I have is that authorization rules are loaded only ...
0
votes
1answer
61 views

Using declarative-authorization's “without_access_control”with Cucumber's @javascript

I have the following in my features/support/env.rb file: require 'declarative_authorization/maintenance' World(Authorization::TestHelper) I have this in a feature file: When I view the list of ...
0
votes
1answer
155 views

Rails 3 - how with declarative_authorization test, if user is admin?

In the documentation I found this part: <% permitted_to? :create, :employees do %> <%= link_to 'New', new_employee_path %> <% end %> This is good, but I need to test, if the ...
2
votes
0answers
113 views

Java EE declarative security, acquiring reference to a secured bean from application client

On 2 questions I would like to consult you. Background: I have written a test, Java EE application and added declarative security. The application is deployed on Glassfish 3.1. For unit testing I ...
0
votes
2answers
67 views

Declarative Authorization - how to set acces for all actions in controller?

I use Declarative Authorization gem and in my authorization_rules.rb I have following rule: role :admin do has_permission_on :users, :to => [manually set up all actions in this controller] ...
0
votes
1answer
110 views

Declarative authorization nested if_attribute

I'm having some difficulty understanding the documentation for declarative authorization and nested if_attributes. Models: class Company < ActiveRecord::Base has_many :users, :through => ...
1
vote
0answers
167 views

Are there any role-based declarative authorization frameworks for rich browser-based JavaScript web apps?

Before I say anything else: yes, I know authorization needs to be done on the server-side. Even so, the client-side app still has to hide the GUI elements that don't apply to the logged-in user. ...
2
votes
0answers
135 views

Rspec and Declarative Authorization: Rules in dummy app doesn't work with testing

I'm trying to integration-test a gem that uses authlogic and declarative authorization. To check a custom controller in my dummy-app I created a new spec/dummy/config/authorization_rule.rb file: ...
1
vote
1answer
180 views

how to check if_attribute :id => is_in { array of ids from recursive method }

I have a resource database where resources can belong to different locations. Users and groups (self-referential user table) can have different roles on different locations. Groups can be inside other ...
0
votes
1answer
368 views

Rake gems:install yields error when following declarative authorization Railscast

I'm following Railstcast #188 to get declarative authorization running on my Rails 3 app (using Ruby 1.9.2) and am running into an issue getting the gem to install. Ryan suggests adding it in ...
2
votes
0answers
118 views

rails declarative_authorization, find which role has a given privilege

Say I have a number of roles that could perform the same action under different conditions. For instance: role :beer_pong_player do has_permission_on :cups, :to => : drink if_attribute ...
3
votes
1answer
101 views

How to set up declarative_authorization for every user

I have these two models: class Photo < ActiveRecord::Base belongs_to :user end class User < ActiveRecord::Base has_many :photos end and this set up of declarative_authorization for a ...
0
votes
2answers
888 views

Custom CodeAccessSecurityAttribute That Takes Many Roles

I'm working on some Role-based security for our app and I essentially want to do customized verison MVC's AuthorizeAttribute - but only at the business logic layer, where we don't link to MVC. I've ...
0
votes
1answer
87 views

Authlogic with declarative authorizations - how to show the user role in the view?

I'm using declarative roles, a Ryan Bates 'railscast' tutorial. I would like to show the role of the user who is logged in, in the view. Is there any variable I can use to display the name of the ...
4
votes
1answer
333 views

Fix N+1 query in “declarative_authorization” gem using gem “bullet”

Currently I am working on one big web application and to make it work faster I decided to refactor all N+1 queries (to decrease number of requests to database, ...
1
vote
1answer
227 views

Rails configurable authorization per-role/crud action

I'm working with a Rails 2.3 app that is already using declarative_authorization to handle user permissions. Each user belongs to one group (no fancy roles) with permissions on certain models, mostly ...
2
votes
2answers
139 views

PrincipalPermission on PageLoad

I'm a newbie about the usage of Asp.NET membership capabilities and I want to know if it could be a good practice to deny the access of a whole page using code like this: public partial class ...
0
votes
1answer
135 views

Rails Declarative Authentication fails

We get an error with declarative authentication on CREATE and UPDATE's. We are not sure why, as somehow in the error it shows no user being authenticated and somehow the session is getting lost: ...
1
vote
0answers
181 views

Object-level authorization database structure in Rails

I'm writing a rails application that has a need for very fine-grained authorization at the object level. Other systems use plugins such as acl9 or declarative_authorization however I want to implement ...
1
vote
1answer
236 views

declarative_authorization Authorization.current_user error

I have authlogic set up and want to use declarative_authorization. In Ryan Bates's railcast #188 he uses before_filter {|c| Authorization.current_user = c.current_user} If I do the same I get an ...
1
vote
5answers
552 views

Why does declarative_authorization break the functionality of my controller? - Rails 3

I have a Coupons controller with two actions. class CouponsController < ApplicationController filter_resource_access def index @coupons = Coupon.all end #generates 10 new coupons on ...
0
votes
1answer
109 views

Create a custom authorization provider for WIF that allows authentication against unique items

We are implementing federated identity management and have a scenario where users need to authenticate against uniquely identified items. For instance Bob might have read access to records 12345, ...
0
votes
1answer
95 views

Reject guest access in a rails application

I want to completely lock down a Rails application, such that all routes which are not explicitly authorized for a particular user role are rejected (403). I inherited this app, so my understanding ...
0
votes
1answer
29 views

Why does a view I think I made public, still prompt me for login? - Rails3 + decl_auth

This is my authorization_rules.rb: role :guest do has_permission_on [:paying_users], :to => [:index] end This is my paying_users.rb controller: class PayingUsersController < ...

1 2 3