Access Levels

Introduction


Access Levels state which services or services APIs are accessible and which are prohibited. Access Levels (ACL) are applied through product packages. ACL can be overridden by tenants applications and URAC.

SOAJS ACL offers a lot of flexibility and can be used to grant access to a service or a particular API in that service for anonymous or logged in users or even users of specific groups.


The default ACL configuration is located in product packages. When this product is used by tenant applications, the ACL it contains is loaded and used to validate the access to the services it contains in its configuration.

The following code snippet states that this package grants access to the dashboard service for logged in members who are also in the administrator group.

Sample ACL Configuration
{
    "_id": "5512867be603d7e01ab1688d",
    "locked": true,
    "code": "DSBRD",
    "name": "Console UI Product",
    "description": "This is the main Console UI Product.",
    "scope": {
        "acl": {
            "dashboard": {
                "urac": {
                    "2": {
	 					"access": ['administrator'] 
					}
				}
			}
        }
    }
}


Service Access


ACL provides access to a service by simply adding the service name to its list. The access is granted in three different methods: PUBLIC - PRIVATE for logged in users - PRIVATE for specific groups.

The code snippet below shows the three possible ACL combinations:

Service Access Example
"scope": {
	"acl":{
		"dashboard": { //Environment
    		"serviceName0":{
				 "2": { } //public
			}, 
    		"serviceName1":{
				"1": { //Version
        			"access": false //public
				}
    		},
    		"serviceName2":{
				"1": {
        			"access": true //private for logged in users
				}
    		},
    		"serviceName3":{
				"1": {
        			"access": ['admin', 'vip'] //private for groups: admin & vip
				}
    		}
		}
	}
}


both "serviceName0" and "serviceName1" are public.

Either add the service name in the acl object with value equal to an empty object "{}" or add give it a value of "access" equal to false; both are evaluated the same way.

"ServiceName2" on the other hand is only accessible by logged in users and finally "serviceName3" is only accessible by members of Groups admin and/or vip.


Access Specific APIs


Access Levels (ACL) can provide access to specific APIs in a service not just access to the whole service.
Two methods are provided to get this job done:

  1. Add the APIs one at a time in a list, and the ACL will provide access these APIs only.
  2. Use Regular Expressions to group APIs that have common path parameters and apply the same access right on them.


Access to Specific APIs
"scope": {
	"acl": {
		"dev": {
    		"serviceName1":{
				"1": {
        			"access": false,
        			"apis": {
            			"/account/myAccount": { "access": true },
            			"/admin/listUsers": { "access": ["admin"] }
        			}
				}
			}
		}
    }
}

The above snippet states the following:

  • The access to "serviceName1" is public and anyone can use its APIs.
  • But to access /account/myAccount API specifically, you need be a logged in user.
  • And to access /admin/listUsers you need to be logged in and you need to belong to the admin group.
  • All other APIs of this service, except /account/myAccount and /admin/listUsers are available for public users.

The above method demonstrated how to specify each API in a service explicitly.

In the event of having 10 APIs that start with /account/ or 20 APIs starting with /admin/, specifying these APIs one by one is not a good practice.

You can group similar APIs under one entry and apply the same ACL on all of them once using Regular Expressions.


Using Regular Expressions
"acl": {
    "serviceName1":{
        "access": false,
        "apisRegExp": [
            {
                "regExp": /^\/admin\/.+$/ , //All APIs starting with /admin/...
                "access": ["admin"] 
            },
            {
                "regExp": /^\/account\/.+$/ , //All APIs starting with /account/...
                "access": true  
            }
        ]
    }
}

The above code uses Regular expressions to apply the same ACL permissions on groups of APIs in a service; all APIs starting with /admin/... are accessible by Admin group only, those that begin with /account required a logged in user like "/account/editProfile", "/account/ChangePassword" ...etc, and the remaining service APIs are public.



Restricted Access


There are cases where access to only certain APIs in a service should be granted. All other APIs are not permitted to be used by this package.

Restricting Access
"acl": {
    "serviceName1":{
        "apisPermission": "restricted",
        "apis": {
            "/account/myAccount" : { "access" : true }
        }
    },
    "serviceName2":{
        "apisPermission": "restricted",
        "apisRegExp": [
            {
                "regExp": /^\/account\/.+$/ , //All APIs starting with /account/...
                "access": true  
            }
        ]
    }
}

The above snippet demonstrates the usage of apisPermission; it forces the ACL to restrict access to all APIs of a service except the ones mentioned in either apis or apisRegExp.For serviceName1, only /account/myAccount is available in this acl, and for serviceName2, only the API routes that start with /account/ are available. All other APIs are not accessible by this package.

SOAJS provides all possible ACL combinations regarding how to grant access to services. Keep in mind that the above only shows the ACL of one package in a product. You can have different packages in a product with different ACL and you can also have different products with different packages.



Overriding Access Levels


Access levels start with product packages. These packages are then used by tenant applications so the ACL of the packages is inherited and passed on to these applications. There are cases where a certain tenant application requires to override the default ACL inherited from a package. That can be achieved in multitenancy by specifying an acl entry in the application record. If provided, SOAJS will load the application ACL instead of the package ACL that the application uses.

Tenant Overriding Default ACL
"applications": [
    {
        "product": "DSBRD",
        "package": "DSBRD_DEFLT",
        "appId": ObjectId('5512926a7a1f0e2123f638de'),
        "description": "this is the main application for the dashboard tenant",
        "_TTL": 604800000,
        "acl": {
            "dashboard": { "access": true
        },
        "keys": [
            {
                "key" : "19c03e42c750467c3f8481fbe26f2fef"
                //...
            }
        ]
    }
]

The above snippet shows a tenant application that uses the package we showed at the top but it overrides the package acl and grants access to the dashboard for logged in users. This means that if the key of this application is used, if a user is logged in, he doesn't have to be member of the administrator group to access the APIs of the dashboard service.



URAC


Overriding the access level does not stop at the tenant level, but goes all the way to the Urac. Users can override the ACL of the tenants they use when they make requests and even the packages that the tenants applications use.

If we consider the above two examples where the dashboard is only accessible by administrators at the package level and neither the package nor the tenant provide access to a service called serviceName2 and we want user johndoe to access both these services, here is what the ACL at the Urac level for this user looks like:

URAC Overriding Default or Tenant ACL
{
    "_id": ObjectId('54ee1bf91856706c2363930a'),
    "username": "johndoe",
    "password": "$2a$04$IYQThNn52hRm/DfZdanbkO/iTL5ytuoGBy6hQJX03ZcqDSA0KFFNq",
    //...
    "config": {
        "packages": {
            "PROD1_PCK1": {
                "acl": {
                    "dashboard": { "access": true } //access to dashboard overriding package
                }
            }
        },
        "keys": {
            "19c03e42c750467c3f8481fbe26f2fef": {
                //...
                "acl": {
                    "serviceName2": {} //access to the serviceName2 overriding tenant
                }
            }
        }
    }
}

The above snippet shows how the user overrides the ACL of the package and grants access to the dashboard and how he overrides the ACL of the tenant and grants access to serviceName2.

This in user using this tenant key ONLY, and because the tenant application that this key belongs to uses package PROD1_PCK1, will override the ACL of that package as show on (Line 9). Adding to that this user overrides the tenant ACL at (line 18) and gets access to serviceName2.

If this user uses another tenant key, he cannot override the ACL of the tenant anymore and if the other key belongs to an application that does not use PROD1_PCK1, he cannot override the ACL of that package either.