Adding permissionsUtil

revert-70aa11f8
Rasika Perera 8 years ago
parent 8293ed43ae
commit b1b6b94570

@ -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;
}();

@ -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}}

@ -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;
}
Loading…
Cancel
Save