]> git.proxmox.com Git - pmg-gui.git/blob - js/QuarantineView.js
let the default token be chosen by the view
[pmg-gui.git] / js / QuarantineView.js
1 Ext.define('PMG.QuarantineNavigationTree', {
2 extend: 'Ext.list.Tree',
3 xtype: 'quarantinenavigationtree',
4
5 select: function(path) {
6 var me = this;
7 var item = me.getStore().findRecord('path', path, 0, false, true, true);
8 me.setSelection(item);
9 },
10
11 store: {
12 xcalss: 'Ext.data.TreeStore',
13 root: {
14 expanded: true,
15 children: [
16 {
17 text: gettext('Spam Quarantine'),
18 iconCls: 'fa fa-cubes',
19 path: 'pmgSpamQuarantine',
20 expanded: true,
21 children: [
22 {
23 text: gettext('Whitelist'),
24 //iconCls: 'fa fa-cubes',
25 path: 'pmgUserWhitelist',
26 leaf: true,
27 },
28 {
29 text: gettext('Blacklist'),
30 //iconCls: 'fa fa-cubes',
31 path: 'pmgUserBlacklist',
32 leaf: true,
33 }
34 ]
35 }
36 ]
37 }
38 },
39
40 animation: false,
41 expanderOnly: true,
42 expanderFirst: false,
43 ui: 'nav'
44 });
45
46 Ext.define('PMG.QuarantineView', {
47 extend: 'Ext.container.Container',
48 xtype: 'quarantineview',
49
50 title: 'Proxmox Mail Gateway Quarantine',
51
52 controller: {
53 xclass: 'Ext.app.ViewController',
54 routes: {
55 ':path:subpath': {
56 action: 'changePath',
57 before: 'beforeChangePath',
58 conditions : {
59 ':path' : '(?:([%a-zA-Z0-9\-\_\s,]+))',
60 ':subpath' : '(?:(?::)([%a-zA-Z0-9\-\_\s,]+))?'
61 }
62 }
63 },
64
65 beforeChangePath: function(path, subpath, action) {
66 var me = this;
67
68 if (!Ext.ClassManager.getByAlias('widget.'+ path)) {
69 console.warn('xtype "'+path+'" not found');
70 action.stop();
71 return;
72 }
73
74 var lastpanel = me.lookupReference('contentpanel').getLayout().getActiveItem();
75 if (lastpanel && lastpanel.xtype === path) {
76 // we have the right component already,
77 // we just need to select the correct tab
78 // default to the first
79 subpath = subpath || 0;
80 if (lastpanel.getActiveTab) {
81 // we assume lastpanel is a tabpanel
82 if (lastpanel.getActiveTab().getItemId() === subpath) {
83 // we are already there
84 } else {
85 // set the active tab
86 lastpanel.setActiveTab(subpath);
87 }
88 }
89 action.stop();
90 return;
91 }
92
93 action.resume();
94 },
95
96 changePath: function(path,subpath) {
97 var me = this;
98 var contentpanel = me.lookupReference('contentpanel');
99 var lastpanel = contentpanel.getLayout().getActiveItem();
100
101 var obj = contentpanel.add({ xtype: path });
102 var treelist = me.lookupReference('navtree');
103
104 treelist.suspendEvents();
105 treelist.select(path);
106 treelist.resumeEvents();
107
108 if (Ext.isFunction(obj.setActiveTab)) {
109 obj.setActiveTab(subpath || 0);
110 obj.addListener('tabchange', function(tabpanel, newc, oldc) {
111 var newpath = path;
112
113 // only add the subpath part for the
114 // non-default tabs
115 if (tabpanel.items.findIndex('id', newc.id) !== 0) {
116 newpath += ":" + newc.getItemId();
117 }
118
119 me.redirectTo(newpath);
120 });
121 }
122
123 contentpanel.setActiveItem(obj);
124
125 if (lastpanel) {
126 contentpanel.remove(lastpanel, { destroy: true });
127 }
128 },
129
130 logout: function() {
131 var me = this;
132 Proxmox.Utils.authClear();
133 me.getView().destroy();
134 Ext.create({ xtype: 'loginview'});
135 },
136
137 navigate: function(treelist, item) {
138 this.redirectTo(item.get('path'));
139 },
140
141 execQuarantineAction: function(qa) {
142 Proxmox.Utils.API2Request({
143 url: '/api2/extjs/quarantine/content',
144 params: {
145 id: qa.cselect,
146 action: qa.action
147 },
148 method: 'POST',
149 success: function(response) {
150 Ext.Msg.alert(gettext('Info'), "Action " + qa.action + ' ' +
151 qa.cselect + ' successful');
152 },
153 failure: function(response, opts) {
154 Ext.Msg.alert(gettext('Error'), response.htmlStatus);
155 }
156 });
157 },
158
159 init: function(view) {
160 var me = this;
161
162 // load username
163 me.lookupReference('usernameinfo').update({username:Proxmox.UserName});
164
165 // show login on requestexception
166 // fixme: what about other errors
167 Ext.Ajax.on('requestexception', function(conn, response, options) {
168 if (response.status == 401) { // auth failure
169 me.logout();
170 }
171 });
172
173 var qa = PMG.Utils.extractQuarantineAction();
174 if (qa) {
175 var token = 'pmgSpamQuarantine';
176 if (qa.action === 'blacklist') { token = 'pmgUserBlacklist'; }
177 if (qa.action === 'whitelist') { token = 'pmgUserWhitelist'; }
178 this.redirectTo(token, true);
179 me.execQuarantineAction(qa);
180 } else {
181 // select treeitem and load page from url fragment
182 var token = Ext.util.History.getToken() || 'pmgSpamQuarantine';
183 this.redirectTo(token, true);
184 }
185 }
186 },
187
188 plugins: 'viewport',
189
190 layout: 'border',
191
192 items: [
193 {
194 region: 'north',
195 xtype: 'container',
196 layout: {
197 type: 'hbox',
198 align: 'middle'
199 },
200 margin: '4 5 4 5',
201 items: [
202 {
203 xtype: 'proxmoxlogo'
204 },
205 {
206 xtype: 'versioninfo'
207 },
208 {
209 flex: 1
210 },
211 {
212 baseCls: 'x-plain',
213 reference: 'usernameinfo',
214 padding: '0 5',
215 tpl: Ext.String.format(gettext("You are logged in as '{0}'"), '{username}')
216 }
217 ]
218 },
219 {
220 xtype: 'quarantinenavigationtree',
221 reference: 'navtree',
222 minWidth: 177,
223 border: false,
224 region: 'west',
225 // we have to define it here until extjs 6.2
226 // because of a bug where a viewcontroller does not detect
227 // the selectionchange event of a treelist
228 listeners: {
229 selectionchange: 'navigate'
230 }
231 },
232 {
233 xtype: 'panel',
234 layout: 'card',
235 region: 'center',
236 border: false,
237 reference: 'contentpanel',
238 }
239 ]
240 });