2014-12-10 15:16:07 +01:00
|
|
|
/**
|
2014-12-10 15:58:53 +01:00
|
|
|
* Copyright 2015 IBM Corp.
|
2014-12-10 15:16:07 +01:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
**/
|
|
|
|
|
|
|
|
var util = require('util');
|
|
|
|
|
2015-01-28 23:41:13 +01:00
|
|
|
var readRE = /^((.+)\.)?read$/
|
|
|
|
var writeRE = /^((.+)\.)?write$/
|
2014-12-10 15:16:07 +01:00
|
|
|
|
2015-03-29 22:59:48 +02:00
|
|
|
function hasPermission(userScope,permission) {
|
|
|
|
var i;
|
|
|
|
if (util.isArray(userScope)) {
|
|
|
|
if (userScope.length === 0) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
for (i=0;i<userScope.length;i++) {
|
|
|
|
if (!hasPermission(userScope[i],permission)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
2014-12-10 15:16:07 +01:00
|
|
|
}
|
2015-07-15 11:11:16 +02:00
|
|
|
|
|
|
|
if (permission === "") {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (userScope === "*") {
|
2014-12-10 15:16:07 +01:00
|
|
|
return true;
|
|
|
|
}
|
2015-07-15 11:11:16 +02:00
|
|
|
|
2015-03-29 22:59:48 +02:00
|
|
|
if (util.isArray(permission)) {
|
2015-03-29 23:27:07 +02:00
|
|
|
for (i=0;i<permission.length;i++) {
|
2015-03-29 22:59:48 +02:00
|
|
|
if (!hasPermission(userScope,permission[i])) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
2014-12-10 15:16:07 +01:00
|
|
|
}
|
2015-07-15 11:11:16 +02:00
|
|
|
|
|
|
|
if (userScope === "read") {
|
2015-03-29 22:59:48 +02:00
|
|
|
return readRE.test(permission);
|
|
|
|
} else {
|
2015-03-07 14:22:21 +01:00
|
|
|
return false; // anything not allowed is disallowed
|
|
|
|
}
|
2014-12-10 15:16:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
hasPermission: hasPermission,
|
|
|
|
}
|