]> git.proxmox.com Git - pmg-gui.git/blob - js/QuarantineView.js
improve gettext usage
[pmg-gui.git] / js / QuarantineView.js
1 /*global Proxmox*/
2 Ext.define('PMG.QuarantineNavigationTree', {
3 extend: 'Ext.list.Tree',
4 xtype: 'quarantinenavigationtree',
5
6 select: function(path) {
7 var me = this;
8 var item = me.getStore().findRecord('path', path, 0, false, true, true);
9 me.setSelection(item);
10 },
11
12 store: {
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-file-o',
25 path: 'pmgUserWhitelist',
26 leaf: true
27 },
28 {
29 text: gettext('Blacklist'),
30 iconCls: 'fa fa-file',
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 // set the active tab
84 lastpanel.setActiveTab(subpath);
85 }
86 // else we are already there
87 }
88 action.stop();
89 return;
90 }
91
92 action.resume();
93 },
94
95 changePath: function(path,subpath) {
96 var me = this;
97 var contentpanel = me.lookupReference('contentpanel');
98 var lastpanel = contentpanel.getLayout().getActiveItem();
99
100 var obj = contentpanel.add({ xtype: path, cselect: subpath });
101 var treelist = me.lookupReference('navtree');
102
103 treelist.suspendEvents();
104 treelist.select(path);
105 treelist.resumeEvents();
106
107 if (Ext.isFunction(obj.setActiveTab)) {
108 obj.setActiveTab(subpath || 0);
109 obj.addListener('tabchange', function(tabpanel, newc, oldc) {
110 var newpath = path;
111
112 // only add the subpath part for the
113 // non-default tabs
114 if (tabpanel.items.findIndex('id', newc.id) !== 0) {
115 newpath += ":" + newc.getItemId();
116 }
117
118 me.redirectTo(newpath);
119 });
120 }
121
122 contentpanel.setActiveItem(obj);
123
124 if (lastpanel) {
125 contentpanel.remove(lastpanel, { destroy: true });
126 }
127 },
128
129 logout: function() {
130 PMG.app.logout();
131 },
132
133 navigate: function(treelist, item) {
134 this.redirectTo(item.get('path'));
135 },
136
137 execQuarantineAction: function(qa) {
138 PMG.Utils.doQuarantineAction(qa.action, qa.cselect);
139 },
140
141 control: {
142 'button[reference=logoutButton]': {
143 click: 'logout'
144 }
145 },
146
147 init: function(view) {
148 var me = this;
149
150 // load username
151 var username = Proxmox.UserName.replace(/\@quarantine$/, '');
152 me.lookupReference('usernameinfo').update({username: username});
153
154 // show login on requestexception
155 // fixme: what about other errors
156 Ext.Ajax.on('requestexception', function(conn, response, options) {
157 if (response.status == 401) { // auth failure
158 me.logout();
159 }
160 });
161
162 var qa = PMG.Utils.extractQuarantineAction();
163 var token;
164 if (qa) {
165 token = 'pmgSpamQuarantine';
166 if (qa.action === 'blacklist') { token = 'pmgUserBlacklist'; }
167 if (qa.action === 'whitelist') { token = 'pmgUserWhitelist'; }
168 if (qa.cselect) {
169 token += ':' + qa.cselect;
170 }
171 this.redirectTo(token, true);
172 if (qa.action) {
173 me.execQuarantineAction(qa);
174 }
175 } else {
176 // select treeitem and load page from url fragment
177
178 token = Ext.util.History.getToken() || 'pmgSpamQuarantine';
179 this.redirectTo(token, true);
180 }
181 }
182 },
183
184 plugins: 'viewport',
185
186 layout: {
187 type: 'border'
188 },
189
190 items: [
191 {
192 region: 'north',
193 xtype: 'container',
194 layout: {
195 type: 'hbox',
196 align: 'middle'
197 },
198 margin: '2 5 2 5',
199 height: 38,
200 items: [
201 {
202 xtype: 'proxmoxlogo'
203 },
204 {
205 xtype: 'versioninfo'
206 },
207 {
208 flex: 1
209 },
210 {
211 baseCls: 'x-plain',
212 reference: 'usernameinfo',
213 padding: '0 5',
214 tpl: Ext.String.format(gettext("You are logged in as {0}"), "'{username}'")
215 },
216 {
217 reference: 'logoutButton',
218 xtype: 'button',
219 iconCls: 'fa fa-sign-out',
220 text: gettext('Logout')
221 }
222 ]
223 },
224 {
225 xtype: 'quarantinenavigationtree',
226 reference: 'navtree',
227 minWidth: 177,
228 border: false,
229 region: 'west',
230 // we have to define it here until extjs 6.2
231 // because of a bug where a viewcontroller does not detect
232 // the selectionchange event of a treelist
233 listeners: {
234 selectionchange: 'navigate'
235 }
236 },
237 {
238 xtype: 'panel',
239 layout: {
240 type: 'card'
241 },
242 region: 'center',
243 border: false,
244 reference: 'contentpanel'
245 }
246 ]
247 });