| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390 |
- /**
- * Loads the panel for managing access policies.
- *
- * @class MODx.panel.AccessPolicies
- * @extends MODx.FormPanel
- * @param {Object} config An object of configuration properties
- * @xtype modx-panel-access-policies
- */
- MODx.panel.AccessPolicies = function(config) {
- config = config || {};
- Ext.applyIf(config,{
- id: 'modx-panel-access-policies'
- ,bodyStyle: ''
- ,defaults: { collapsible: false ,autoHeight: true }
- ,items: [{
- html: _('policies')
- ,id: 'modx-policies-header'
- ,xtype: 'modx-header'
- },{
- layout: 'form'
- ,cls: 'main-wrapper'
- ,items: [{
- html: '<p>'+_('policy_management_msg')+'</p>'
- ,border: false
- },{
- xtype: 'modx-grid-access-policy'
- ,preventRender: true
- }]
- }]
- });
- MODx.panel.AccessPolicies.superclass.constructor.call(this,config);
- };
- Ext.extend(MODx.panel.AccessPolicies,MODx.FormPanel);
- Ext.reg('modx-panel-access-policies',MODx.panel.AccessPolicies);
- /**
- * Loads a grid of modAccessPolicies.
- *
- * @class MODx.grid.AccessPolicy
- * @extends MODx.grid.Grid
- * @param {Object} config An object of options.
- * @xtype modx-grid-access-policy
- */
- MODx.grid.AccessPolicy = function(config) {
- config = config || {};
- this.sm = new Ext.grid.CheckboxSelectionModel();
- Ext.applyIf(config,{
- id: 'modx-grid-access-policy'
- ,url: MODx.config.connector_url
- ,baseParams: {
- action: 'security/access/policy/getlist'
- }
- ,fields: ['id','name','description','class','data','parent','template','template_name','active_permissions','total_permissions','active_of','cls']
- ,paging: true
- ,autosave: true
- ,save_action: 'security/access/policy/updatefromgrid'
- ,remoteSort: true
- ,sm: this.sm
- ,columns: [this.sm,{
- header: _('policy_name')
- ,dataIndex: 'name'
- ,width: 200
- ,editor: { xtype: 'textfield' ,allowBlank: false }
- ,sortable: true
- },{
- header: _('description')
- ,dataIndex: 'description'
- ,width: 375
- ,editor: { xtype: 'textfield' }
- },{
- header: _('policy_template')
- ,dataIndex: 'template_name'
- ,width: 375
- },{
- header: _('active_permissions')
- ,dataIndex: 'active_of'
- ,width: 100
- ,editable: false
- }]
- ,tbar: [{
- text: _('policy_create')
- ,cls:'primary-button'
- ,scope: this
- ,handler: this.createPolicy
- },{
- text: _('import')
- ,scope: this
- ,handler: this.importPolicy
- },{
- text: _('bulk_actions')
- ,menu: [{
- text: _('policy_remove_multiple')
- ,handler: this.removeSelected
- ,scope: this
- }]
- },'->',{
- xtype: 'textfield'
- ,name: 'search'
- ,id: 'modx-policy-search'
- ,cls: 'x-form-filter'
- ,emptyText: _('search_ellipsis')
- ,listeners: {
- 'change': {fn: this.search, scope: this}
- ,'render': {fn: function(cmp) {
- new Ext.KeyMap(cmp.getEl(), {
- key: Ext.EventObject.ENTER
- ,fn: function() {
- this.fireEvent('change',this.getValue());
- this.blur();
- return true;}
- ,scope: cmp
- });
- },scope:this}
- }
- },{
- xtype: 'button'
- ,id: 'modx-sacpol-filter-clear'
- ,cls: 'x-form-filter-clear'
- ,text: _('filter_clear')
- ,listeners: {
- 'click': {fn: this.clearFilter, scope: this},
- 'mouseout': { fn: function(evt){
- this.removeClass('x-btn-focus');
- }
- }
- }
- }]
- });
- MODx.grid.AccessPolicy.superclass.constructor.call(this,config);
- };
- Ext.extend(MODx.grid.AccessPolicy,MODx.grid.Grid,{
- search: function(tf,newValue,oldValue) {
- var nv = newValue || tf;
- this.getStore().baseParams.query = Ext.isEmpty(nv) || Ext.isObject(nv) ? '' : nv;
- this.getBottomToolbar().changePage(1);
- //this.refresh();
- return true;
- }
- ,clearFilter: function() {
- this.getStore().baseParams = {
- action: 'security/access/policy/getList'
- };
- Ext.getCmp('modx-policy-search').reset();
- this.getBottomToolbar().changePage(1);
- //this.refresh();
- }
- ,editPolicy: function(itm,e) {
- MODx.loadPage('security/access/policy/update', 'id='+this.menu.record.id);
- }
- ,createPolicy: function(btn,e) {
- var r = this.menu.record;
- if (!this.windows.apc) {
- this.windows.apc = MODx.load({
- xtype: 'modx-window-access-policy-create'
- ,record: r
- ,plugin: this.config.plugin
- ,listeners: {
- 'success': {fn:function(r) {
- this.refresh();
- },scope:this}
- }
- });
- }
- this.windows.apc.reset();
- this.windows.apc.show(e.target);
- }
- ,exportPolicy: function(btn,e) {
- var id = this.menu.record.id;
- MODx.Ajax.request({
- url: this.config.url
- ,params: {
- action: 'security/access/policy/export'
- ,id: id
- }
- ,listeners: {
- 'success': {fn:function(r) {
- location.href = this.config.url+'?action=security/access/policy/export&download=1&id='+id+'&HTTP_MODAUTH='+MODx.siteId;
- },scope:this}
- }
- });
- }
- ,importPolicy: function(btn,e) {
- var r = {};
- if (!this.windows.importPolicy) {
- this.windows.importPolicy = MODx.load({
- xtype: 'modx-window-policy-import'
- ,record: r
- ,listeners: {
- 'success': {fn:function(o) {
- this.refresh();
- },scope:this}
- }
- });
- }
- this.windows.importPolicy.reset();
- this.windows.importPolicy.setValues(r);
- this.windows.importPolicy.show(e.target);
- }
- ,getMenu: function() {
- var r = this.getSelectionModel().getSelected();
- var p = r.data.cls;
- var m = [];
- if (this.getSelectionModel().getCount() > 1) {
- m.push({
- text: _('policy_remove_multiple')
- ,handler: this.removeSelected
- });
- } else {
- if (p.indexOf('pedit') != -1) {
- m.push({
- text: _('policy_update')
- ,handler: this.editPolicy
- });
- m.push({
- text: _('policy_duplicate')
- ,handler: this.confirm.createDelegate(this,["security/access/policy/duplicate","policy_duplicate_confirm"])
- });
- }
- if (m.length > 0) { m.push('-'); }
- m.push({
- text: _('policy_export')
- ,handler: this.exportPolicy
- });
- if (p.indexOf('premove') != -1) {
- if (m.length > 0) m.push('-');
- m.push({
- text: _('policy_remove')
- ,handler: this.confirm.createDelegate(this,["security/access/policy/remove","policy_remove_confirm"])
- });
- }
- }
- if (m.length > 0) {
- this.addContextMenuItem(m);
- }
- }
- ,removeSelected: function() {
- var cs = this.getSelectedAsList();
- if (cs === false) return false;
- MODx.msg.confirm({
- title: _('policy_remove_multiple')
- ,text: _('policy_remove_multiple_confirm')
- ,url: this.config.url
- ,params: {
- action: 'security/access/policy/removeMultiple'
- ,policies: cs
- }
- ,listeners: {
- 'success': {fn:function(r) {
- this.getSelectionModel().clearSelections(true);
- this.refresh();
- },scope:this}
- }
- });
- return true;
- }
- });
- Ext.reg('modx-grid-access-policy',MODx.grid.AccessPolicy);
- /**
- * Generates a window for creating Access Policies.
- *
- * @class MODx.window.CreateAccessPolicy
- * @extends MODx.Window
- * @param {Object} config An object of options.
- * @xtype modx-window-access-policy-create
- */
- MODx.window.CreateAccessPolicy = function(config) {
- config = config || {};
- this.ident = config.ident || 'cacp'+Ext.id();
- Ext.applyIf(config,{
- // width: 500
- title: _('policy_create')
- ,url: MODx.config.connector_url
- ,action: 'security/access/policy/create'
- ,fields: [{
- fieldLabel: _('name')
- ,description: MODx.expandHelp ? '' : _('policy_desc_name')
- ,name: 'name'
- ,id: 'modx-'+this.ident+'-name'
- ,xtype: 'textfield'
- ,anchor: '100%'
- },{
- xtype: MODx.expandHelp ? 'label' : 'hidden'
- ,forId: 'modx-'+this.ident+'-name'
- ,html: _('policy_desc_name')
- ,cls: 'desc-under'
- },{
- fieldLabel: _('policy_template')
- ,description: MODx.expandHelp ? '' : _('policy_desc_template')
- ,name: 'template'
- ,hiddenName: 'template'
- ,id: 'modx-'+this.ident+'-template'
- ,xtype: 'modx-combo-access-policy-template'
- ,anchor: '100%'
- },{
- xtype: MODx.expandHelp ? 'label' : 'hidden'
- ,forId: 'modx-'+this.ident+'-template'
- ,html: _('policy_desc_template')
- ,cls: 'desc-under'
- },{
- fieldLabel: _('description')
- ,description: MODx.expandHelp ? '' : _('policy_desc_description')
- ,name: 'description'
- ,id: 'modx-'+this.ident+'-description'
- ,xtype: 'textarea'
- ,anchor: '100%'
- ,height: 50
- },{
- xtype: MODx.expandHelp ? 'label' : 'hidden'
- ,forId: 'modx-'+this.ident+'-description'
- ,html: _('policy_desc_description')
- ,cls: 'desc-under'
- },{
- name: 'class'
- ,id: 'modx-'+this.ident+'-class'
- ,xtype: 'hidden'
- },{
- name: 'id'
- ,id: 'modx-'+this.ident+'-id'
- ,xtype: 'hidden'
- }]
- ,keys: []
- });
- MODx.window.CreateAccessPolicy.superclass.constructor.call(this,config);
- };
- Ext.extend(MODx.window.CreateAccessPolicy,MODx.Window);
- Ext.reg('modx-window-access-policy-create',MODx.window.CreateAccessPolicy);
- MODx.combo.AccessPolicyTemplate = function(config) {
- config = config || {};
- Ext.applyIf(config,{
- name: 'template'
- ,hiddenName: 'template'
- ,fields: ['id','name','description']
- ,forceSelection: true
- ,typeAhead: false
- ,editable: false
- ,allowBlank: false
- // ,listWidth: 300
- ,pageSize: 20
- ,url: MODx.config.connector_url
- ,baseParams: {
- action: 'security/access/policy/template/getlist'
- }
- ,tpl: new Ext.XTemplate('<tpl for="."><div class="x-combo-list-item"><span style="font-weight: bold">{name:htmlEncode}</span>'
- ,'<p style="margin: 0; font-size: 11px; color: gray;">{description:htmlEncode}</p></div></tpl>')
- });
- MODx.combo.AccessPolicyTemplate.superclass.constructor.call(this,config);
- };
- Ext.extend(MODx.combo.AccessPolicyTemplate,MODx.combo.ComboBox);
- Ext.reg('modx-combo-access-policy-template',MODx.combo.AccessPolicyTemplate);
- MODx.window.ImportPolicy = function(config) {
- config = config || {};
- this.ident = config.ident || 'imppol-'+Ext.id();
- Ext.applyIf(config,{
- title: _('policy_import')
- ,id: 'modx-window-policy-import'
- ,url: MODx.config.connector_url
- ,action: 'security/access/policy/import'
- ,fileUpload: true
- ,saveBtnText: _('import')
- ,fields: [{
- html: _('policy_import_msg')
- ,id: this.ident+'-desc'
- ,xtype: 'modx-description'
- ,style: 'margin-bottom: 10px;'
- },{
- xtype: 'fileuploadfield'
- ,fieldLabel: _('file')
- ,buttonText: _('upload.buttons.upload')
- ,name: 'file'
- ,id: this.ident+'-file'
- ,anchor: '100%'
- // ,inputType: 'file'
- }]
- });
- MODx.window.ImportPolicy.superclass.constructor.call(this,config);
- };
- Ext.extend(MODx.window.ImportPolicy,MODx.Window);
- Ext.reg('modx-window-policy-import',MODx.window.ImportPolicy);
|