Tagged Questions
The roles tag has no wiki summary.
15
votes
4answers
2k views
How do I serve up an Unauthorized page when a user is not in the Authorized Roles?
I am using the Authorize attribute like this:
[Authorize (Roles="Admin, User")]
Public ActionResult Index(int id)
{
// blah
}
When a user is not in the specified roles, I get an error page ...
14
votes
6answers
2k views
Authentication, Authorization, User and Role Managment and general Security in .NET
I need to know how to go about implementing general security for a C# application. What options do I have in this regard? I would prefer to use an existing framework if it meets my needs - I don't ...
13
votes
4answers
4k views
asp.net mvc decorate [Authorize()] with multiple enums
I have a controller and I want two roles to be able to access it. 1-admin OR 2-moderator
I know you can do [Authorize(Roles="admin, moderators")] but I have my roles in an enum. With the enum I can ...
13
votes
8answers
11k views
Best Role-Based Access Control (RBAC) database model
What is the best database schema to track role-based access controls for a web application?
I am using Rails, but the RBAC plugin linked by Google looks unmaintained (only 300 commits to SVN; latest ...
10
votes
2answers
148 views
PHP: Manage roles with math?
I once saw an article about how to use a specific type of numbering system to manage roles. A user would be assigned a specific role number and depending on a calculation, the number could stand for ...
10
votes
8answers
2k views
Common CMS roles and access levels
I am currently writing a CMS and remember someone (it might have been on here) criticise the existing CMS for not having a robust enough user permissions system. I've got a method planned out but it ...
9
votes
2answers
3k views
How do I allow multiple roles to see a page when using a custom RoleProvider in ASP.Net
I have created my own Role Provider because I found the one that ASP.Net provides to be way too bulky in terms of tables in the database. I found implementing a custom RoleProvider to be quite easy.
...
8
votes
1answer
5k views
Authenticate and GetRoles of ActiveDirectory users in a disconnected WPF application via MembershipProvider
I have a project requirement where I need to authenticate against ActiveDirectory in a remote/disconnected WPF application.
There is probably several ways to attempt to do this, but what would be the ...
7
votes
8answers
6k views
How can I create a view that has different displays according to the role the user is in?
I want to create a view that has different displays according to the role the user is in.
Should I create a different view for different roles or should I check the roles on the Veiw page itself ...
7
votes
2answers
1k views
Multiple permission types (roles) stored in database as single decimal
I was going to ask a question here about whether or not my design for some users/roles database tables was acceptable, but after some research I came across this question:
What is the best way to ...
6
votes
1answer
2k views
SQL Server - Give a Login Permission for Read Access to All Existing and Future Databases
I have a stored procedure that finds all the existing databases and reads from a table in each one.
Is there a way I can give a login read access to all databases, and to all future databases i.e., ...
6
votes
3answers
641 views
Role Caching Strategies in ASP.NET MVC
We have an ASP.NET MVC application for which we have developed our own custom RoleProvider class. Without caching it will access the datastore for every request - bad. The only caching option we can ...
6
votes
4answers
1k views
What is the best mechanism to implement granular security (i.e. authorization) in an ASP.NET MVC application?
Suppose a high-speed developer was tasked with building a banking application which would be accessed by many different people. Each person would want to access his or her own account information but ...
6
votes
2answers
580 views
How do I assign a Role to an OpenId user for an ASP.NET MVC site?
I'm using OpenId in my ASP.NET MVC application. Works great :) Once i have the user's OpenId Identifier (once they have authenticated and returned to my site), i load up the users data (to get display ...
5
votes
5answers
430 views
Non-string role names in ASP.NET MVC?
ASP.NET MVC has good support for role-based security, but the usage of strings as role names is maddening, simply because they cannot be strongly-typed as enumerations.
For example, I have an "Admin" ...
5
votes
2answers
440 views
How do I represent a mixin/role/trait with UML properly?
Me and several other developers are currently cleaning up our legacy code base, mostly separating visual and data layers. To help developers not involved in this refactoring understand the model, I'd ...
5
votes
2answers
837 views
Roles / Permissions framework for c#?
Does anyone know of a good framework to allow me design permission and roles against users.
Basically allowing me to automatically check a user can do a certain thing, and then disabling or enabling ...
5
votes
4answers
648 views
ASP.net roles and Projects
EDIT - Rewrote my original question to give a bit more information
Background info
At my work I'm working on a ASP.Net web application for our customers. In our implementation we use technologies ...
5
votes
1answer
374 views
How can I access the meta class of the module my Moose role is being applied to?
I'm using Moose roles to apply some wrapper behaviour around some accessor methods in a class. I want to apply this role to a number of modules, each of which have a different set of attributes whose ...
5
votes
4answers
4k views
What are some good role authorization solutions used with Authlogic?
I am looking for a good role based authorization solution to use alongside Authlogic. Anyone have any good suggestions? Please list some pros and cons from your experience if possible please.
5
votes
2answers
1k views
How do you rename a Role using Membership in .NET?
I'm using ASP.NET Membership and noticed there isn't a method in the Roles class to modify a role (its name for instance), only to create and delete them.
Is it possible or it's not supported?
EDIT: ...
4
votes
4answers
195 views
If you have Traits, do you stop using interfaces, Abstract base classes, and multiple inheritance?
It seems like Traits could completely replace interfaces, abstract base classes, mixins, and multiple inheritance, leaving you with just Traits and concrete inheritance.
Is this the intent?
If you ...
4
votes
1answer
92 views
How far to 'drill down' roles in a .NET MVC application?
Bare with me on this one,
I've written a few complex MVC applications which are all role based and use .NET Membership. On my first project I used roles with structure similar to this:
Admin
...
4
votes
2answers
507 views
Hiding Html.ActionLinks based on Role-based security
I use @RenderSection("Contextual", false) within my _Layout.cshtml to allow different views to render their particular content there. Some don't have any, others do.
Additionally, I use role-based ...
4
votes
2answers
238 views
Programming != Job Description [closed]
I'm currently in a situation where many people on here likely find themselves: I love to program, I do a lot of fun side projects, but it is not my profession. I work as an Electrical Engineering ...
4
votes
5answers
146 views
How do I offer a beta feature to select users? (rails)
We want to start letting our users help us test our feature changes before a wider release. Our rails app already has roles but I don't know how to we should go about implementing a beta feature ...
4
votes
3answers
229 views
How do I compose an existing Moose role into a class at runtime?
Say I define an abstract My::Object and concrete role implementations My::Object::TypeA and My::Object::TypeB. For maintainability reasons, I'd like to not have a hardcoded table that looks at the ...
4
votes
7answers
1k views
User roles - why not store in session?
I'm porting an ASP.NET application to MVC and need to store two items relating to an authenitcated user: a list of roles and a list of visible item IDs, to determine what the user can or cannot see.
...
4
votes
3answers
3k views
How do I manually set a user's role in ASP.NET MVC?
This project I'm working on requires me to keep a local db of admin users and use an external db for regular users. Anyone who passes authentication in the admin db should be assigned the 'admin' ...
4
votes
2answers
559 views
ASP.net MVC: Getting Required Roles for Login?
is there any generic way to get the role which is required for some particular action?
In Detail my problem is, that I have e.g. 2 roles "User" and "Admin" and an action with the following:
...
4
votes
5answers
3k views
ASP.NET Membership - Which RoleProvider to use so User.IsInRole() checks ActiveDirectory Groups?
Very simple question actually:
I currently have IIS anonymous access disabled, users are automatically logged on using their Windows login. However calling User.IsInRole("Role name") returns false. I ...
4
votes
2answers
2k views
allow multiple roles to access controller action
Right now I decorate a method like this to allow "members" to access my controller action
[Authorize(Roles="members")]
How do I allow more than one role? For example the following does not work but ...
4
votes
9answers
3k views
Preferred database design method for assigning user roles? (Hats vs. Groups)
I have medium sized MySQL database with a primary "persons" table which contains basic contact information about every human being connected to the theatre and theatre school for which I am ...
4
votes
2answers
310 views
What's the best way to implement different views for a website based on role?
In ASP.NET what's the best way to do the following:
Show certain controls based on your rights?
For a gridview control, how do you show certain columns based on your role?
I'm thinking for number ...
4
votes
4answers
201 views
How can I wire users with their respective folders in ASP.NET?
When userA uploads a file, his files will be uploaded to folderA, when userB, to folderB, and so on. Roles/Profiles in ASP.NET. Folders will be pre-existing. Anyone?
3
votes
2answers
33 views
Creating a AuthorizeAttribute - what do I need to know?
Here are my requirements:
I'll be adding users to N amount of roles; defined in a database.
I need to protect each controller action with my authorize attribute.
For example, the web application ...
3
votes
1answer
61 views
What's a good PHP permission framework that allows listing resources?
I'm building a new application and I need a permission framework to go along with it.
Here's a quick example of one of the things we need it to support:
With the data model:
user
----
id
role
type
...
3
votes
1answer
128 views
Perl Moose class design
I have a class (Foo), Moose based, that has 4 properties, lets say:
SF1...SF4
each of type HashRef[Any].
Currently all have default values. Later, we are going to get these values from a MySQL ...
3
votes
2answers
91 views
Moose - imported functions don't count as role methods?
I have a role that declares that it requires a method (with requires).
I'm trying to install the method by directly defining it in the class's symbol table.
However, in some cases it works and in ...
3
votes
4answers
153 views
How to work with Roles (asp.net) without hardcoding them?
When Roles are created/deleted I wouldn't want to modify the code.
if (HttpContext.Current.User.IsInRole("Super Admin") ||
HttpContext.Current.User.IsInRole("Admin") ||
...
3
votes
2answers
222 views
Running Capistrano tasks only for certain roles
My project has a multi-step pipeline that includes some steps like Crawling, NLP, etc, but I'll just refer to them as Step1, Step2, etc. Additionally I want to be able to deploy to different ...
3
votes
3answers
418 views
Question about [Authorize] Attribute for Administrators
If i have an Area in my ASP.NET MVC 3 (Razor) Web application, where all controllers derive from a base controller that looks like this:
[Authorize(Roles="Administrator")]
public class ...
3
votes
1answer
866 views
ASP.NET C# Add/Update User to Role
Hi all I have a page that shows Accommodation info and then the UserID of the person that created that information in a DetailsView.
I also have a button that should look at that that UserID and when ...
3
votes
1answer
495 views
Handling Multiple Roles in MVC - Action-based Accessibility
I currently have a project that I seem to have ran into an issue regarding Roles and thought I would get some opinions on how to best handle the problem.
The system will require editable, flexible ...
3
votes
3answers
162 views
How to get users not in role,
Is there any reasonably efficient way to get a list of users who are not in a specific role?
The only methods I can see are
Get all the users from DB and do a check in code
Go directly to the db ...
3
votes
3answers
8k views
can i hide/ show asp:Menu items based on role?
Am i able to hide certain menu items in an asp:Menu control based on role?
<asp:Menu ID="mTopMenu" runat="server" Orientation="Horizontal" />
<Items>
...
3
votes
2answers
360 views
Oracle DBA Role and its specific functions (and possible replacement)
I have to install an application server that requires an user to write to the database, possibly create new schemes and such. However, I've always used the "work around" to assign the DBA Role to that ...
3
votes
3answers
717 views
Multiple user roles in Ruby on Rails
I am building an inventory management application with four different user types: admin, employee, manufacturer, transporter. I haven't started coding yet, but this is what I'm thinking.. ...
3
votes
1answer
157 views
Problem with GRANT in Oracle 10
I have the user admin who has admin privileges and default oracle XE user hr. User admin has created table CAR, role S and has granted to this role SELECT on table CAR. Then admin granted role S to ...
3
votes
1answer
147 views
Checking a Moose role against a non Moose class
let's say you've got a Moose class that requires an attribute that does a Role:
package MyMooseClass;
use Moose;
has 'a' => ( does => 'MyRole' );
Now, I'd like to build an instance of ...