Bug Report: Node JS: Multiple Roles not working

OS info

  • Operating System : Mac OSX 20.1.0
  • Wappler Version : 3.5.6
  • **App Engine: NodeJs

Problem description

I have an admin page that I want to restrict to an Admin or Super Admin role. When I restrict the security, I’m always getting the ‘unauthorized’ error when accessing the api.

Steps to reproduce

  1. I created 5 different roles in my Security Provider
    I’ve tried 2 different ways to define the role:
    Using Equals

    Or using an IN statement:
  2. On my server connect I have three permissions defined:
  3. I login with an admin user and the response is pulling back my 403 screen. Note on this page the first API call uses a Security Restrict (all users), second has no security restrict, third has the security restrict options from the screenshot above:

Perhaps it is not clear for a lot of users, but there is a difference between permission and role based security. Wappler uses permission based, which means you tell which permissions are required (read AND write), while with role based you tell which roles are allowed to access (admin OR user). The difference is that with permissions it must match all while with roles it must match one of them.

So the behavior is not a bug, but I will have a look if we perhaps could update the security provider to support AND and OR for the restrictions.

1 Like

That makes sense, however, I’m still getting the error when I tried the following:

I updated my Security Provider to have a permission name of ‘Admin’ using an IN statement, then using ‘Admin’ as the role and still get a 403 error:


And then set up my Security Restrict to only use Admin:

Still getting 403 error:
Screen Shot 2020-12-01 at 7.06.28 AM

Is there a different way that I should be setting up the permissions? I tried to follow that other article and came up with the above solution.

Seems you found a bug, the in operator seems not to be working. Here an update, unzip in lib/auth.

database.zip (740 Bytes)

I tried the update, still getting the same 403 error.

I think you have the permission setup incorrectly. I see you set role as identity column (this should point to the column containing the user identity), I think this should be user_id seeing that it uses the user table.

:clap: :clap::clap:
That was it. Thanks much!

This has been fixed in Wappler 3.5.7

1 Like

This topic was automatically closed after 47 hours. New replies are no longer allowed.