Adding permissionsUtil

This commit is contained in:
Rasika Perera 2016-10-29 23:13:52 +05:30
parent 8293ed43ae
commit b1b6b94570
4 changed files with 98 additions and 0 deletions

View File

@ -0,0 +1,32 @@
/*
* Copyright (c) 2015, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
*
* WSO2 Inc. licenses this file to you 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 permissionsUtil = function () {
var publicMethods = {};
publicMethods.hasPermission = function (permission) {
if(uiPermissions[permission] == undefined){
return false;
} else {
return uiPermissions[permission];
}
};
return publicMethods;
}();

View File

@ -0,0 +1,33 @@
{{!
Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
WSO2 Inc. licenses this file to you 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.
}}
{{#zone "topJs"}}
<script type="text/javascript">
{{!
NOTES:
1. We are maintaining permissions on the client-side only for the client-side templating purpose.
2. Any functionality should NOT solely depend on the client-side permission check.
3. Using '{\{\{' here as a workaround as not to escape special characters.
}}
var uiPermissions = {{{permissions}}};
</script>
{{/zone}}
{{#zone "bottomJs"}}
{{js "js/permissions-lib.js"}}
{{/zone}}

View File

@ -0,0 +1,25 @@
/*
* Copyright (c) 2015, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
*
* WSO2 Inc. licenses this file to you 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.
*/
function onRequest(context) {
var userModule = require("/app/modules/business-controllers/user.js")["userModule"];
var uiPermissions = userModule.getUIPermissions();
var viewModel = {};
viewModel.permissions = stringify(uiPermissions);
return viewModel;
}

View File

@ -0,0 +1,8 @@
{
"version": "1.0.0",
"index": 21,
"pushedUris": [
"/",
"/{+any}"
]
}