| /* |
| * Licensed to the Apache Software Foundation (ASF) under one |
| * or more contributor license agreements. See the NOTICE file |
| * distributed with this work for additional information |
| * regarding copyright ownership. The ASF 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. |
| */ |
| |
| |
| define(function(require){ |
| 'use strict'; |
| |
| var XAGlobals = {}; |
| |
| XAGlobals.settings = {}; |
| XAGlobals.settings.PAGE_SIZE = 25; |
| XAGlobals.settings.AUDIT_REPORT_POLLING = 100000; |
| XAGlobals.settings.uploadDefaultOpts = { |
| disableImageResize: false, |
| maxFileSize: 5000000, |
| autoUpload : false |
| //maxNumberOfFiles : 2 |
| }; |
| XAGlobals.settings.MAX_VALUE = 2147483647; |
| |
| XAGlobals.keys = {}; |
| XAGlobals.keys.ENTER_KEY = 13; |
| XAGlobals.keys.ESC_KEY = 27; |
| |
| //XAGlobals.baseURL = '../'; |
| XAGlobals.baseURL = 'service/'; |
| |
| XAGlobals.version = 0;//0 : production version 1: any other |
| XAGlobals.AppTabs = { |
| Dashboard : { value:1, valStr: 'Dashboard'}, |
| AccessManager : { value:2, valStr: 'Access Manager'}, |
| Audit : { value:3, valStr: 'Audit'}, |
| Encryption : { value:4, valStr: 'Encryption'}, |
| Settings : { value:5, valStr: 'Settings'}, |
| None : { value:6, valStr: 'None'} |
| }; |
| |
| XAGlobals.BooleanValue = { |
| BOOL_TRUE:{value:"true", label:'True'}, |
| BOOL_FALSE:{value:"false", label:'False'} |
| }; |
| XAGlobals.hardcoded = {}; |
| XAGlobals.hardcoded.HDFSAssetId = 1; |
| XAGlobals.hardcoded.HBaseAssetId = 2; |
| XAGlobals.hardcoded.HiveAssetId = 3; |
| XAGlobals.DenyControllerActions = ['userManagerAction','userCreateAction','userEditAction','groupCreateAction', |
| 'groupEditAction','auditReportAction','loginSessionDetail','serviceCreateAction','serviceEditAction','modulePermissionsAction','modulePermissionEditAction']; |
| |
| XAGlobals.ListOfModuleActions = { |
| 'Access Manager' : { 'Resource Based Policies' : ['serviceManagerAction','serviceCreateAction','serviceEditAction', 'policyManageAction','RangerPolicyCreateAction','RangerPolicyEditAction'], |
| 'Reports' : ['userAccessReportAction'], |
| 'Tag Based Policies' : ['serviceManagerAction','serviceCreateAction','serviceEditAction', 'policyManageAction','RangerPolicyCreateAction','RangerPolicyEditAction'] |
| }, |
| 'Audit' : ['auditReportAction','loginSessionDetail'], |
| 'Encryption' : {'Key Manager' : ['kmsManagerAction','kmsKeyCreateAction'] }, |
| 'Settings' : {'Users/Groups' : ['userManagerAction','userCreateAction','userEditAction','groupCreateAction','groupEditAction'], |
| 'Permissions' : ['modulePermissionsAction','modulePermissionEditAction'] }, |
| }; |
| |
| XAGlobals.ActionType = { |
| Create : { value: 'create', label: 'Create' }, |
| Update : { value: 'update', label: 'Update' }, |
| Delete : { value: 'delete', label: 'Delete' }, |
| Password_Change : { value: 'password change', label: 'Password Change' }, |
| Export_Json : { value: 'EXPORT JSON', label: 'Export Json' }, |
| Export_Csv : { value: 'EXPORT CSV', label: 'Export Csv' }, |
| Export_Excel : { value: 'EXPORT EXCEL', label: 'Export Excel' }, |
| Import_End : { value: 'IMPORT END', label: 'Import End' }, |
| Import_Start : { value: 'IMPORT START', label: 'Import Start'} |
| }; |
| return XAGlobals; |
| }); |