Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Different Permissions in Apache Shiro for every User?

I built a database with the entity user and permission

user (id, email, password, permission) permission (id, create_user, delete_user, user_fk)

create_user and delete_user is BOOLEAN.

Relationship: One-One

Now every user can have it's own permissions.

My question is: How can I use shiro to read the permissions from the database?

like image 932
internet Avatar asked Jan 13 '23 00:01

internet


1 Answers

If you really only wish to assign permissions on user level, you can "fake" the roles table to make Shiro happy.

As Wouter mentioned, use the JdbcRealm and specify the 3 queries for your table setup. You should modify your permission table to have this structure:

permission (id, permissionname, user_fk)

Then you insert rows for the create_user/delete_user rights as needed. This way it's very simple to add another permission (reset_password for example) to your setup, without the need to modify the db schema.

In the shiro.ini (or how you call the your shiro config file):

jdbcRealm = org.apache.shiro.realm.jdbc.JdbcRealm

For the queries use then this:

jdbcRealm.authenticationQuery = select password from user where email=?
jdbcRealm.userRolesQuery = select id from user where email=?
jdbcRealm.authenticationQuery = select permissionname from permission where user_fk=?

The small trick in your setup is: you don't have roles at all, so we just return the id of the user as the role name. When the lookup in the permission table is done, it then uses the role name (=user pk) and returns the associated permissions.

like image 142
André Schild Avatar answered Feb 04 '23 03:02

André Schild