luci-proto-{wireguard,yggdrasil}: remove unnecessary PROVIDES
[project/luci.git] / applications / luci-app-adblock / htdocs / luci-static / resources / view / adblock / overview.js
1 'use strict';
2 'require view';
3 'require poll';
4 'require fs';
5 'require ui';
6 'require uci';
7 'require form';
8 'require tools.widgets as widgets';
9
10 /*
11 button handling
12 */
13 function handleAction(ev) {
14 if (ev === 'timer') {
15 L.ui.showModal(_('Refresh Timer'), [
16 E('p', _('To keep your adblock lists up-to-date, you should set up an automatic update job for these lists.')),
17 E('div', { 'class': 'left', 'style': 'display:flex; flex-direction:column' }, [
18 E('h5', _('Existing job(s)')),
19 E('textarea', {
20 'id': 'cronView',
21 'style': 'width: 100% !important; padding: 5px; font-family: monospace',
22 'readonly': 'readonly',
23 'wrap': 'off',
24 'rows': 5
25 })
26 ]),
27 E('div', { 'class': 'left', 'style': 'display:flex; flex-direction:column' }, [
28 E('label', { 'class': 'cbi-input-select', 'style': 'padding-top:.5em' }, [
29 E('h5', _('Set a new adblock job')),
30 E('select', { 'class': 'cbi-input-select', 'id': 'timerA' }, [
31 E('option', { 'value': 'start' }, 'Start'),
32 E('option', { 'value': 'reload' }, 'Reload'),
33 E('option', { 'value': 'restart' }, 'Restart'),
34 E('option', { 'value': 'suspend' }, 'Suspend'),
35 E('option', { 'value': 'resume' }, 'Resume'),
36 E('option', { 'value': 'report gen' }, 'Report'),
37 E('option', { 'value': 'report mail' }, 'Report & Mail')
38 ]),
39 '\xa0\xa0\xa0',
40 _('Adblock action')
41 ]),
42 E('label', { 'class': 'cbi-input-text', 'style': 'padding-top:.5em' }, [
43 E('input', { 'class': 'cbi-input-text', 'id': 'timerH', 'maxlength': '2' }, [
44 ]),
45 '\xa0\xa0\xa0',
46 _('The hours portition (req., range: 0-23)')
47 ]),
48 E('label', { 'class': 'cbi-input-text', 'style': 'padding-top:.5em' }, [
49 E('input', { 'class': 'cbi-input-text', 'id': 'timerM', 'maxlength': '2' }),
50 '\xa0\xa0\xa0',
51 _('The minutes portion (opt., range: 0-59)')
52 ]),
53 E('label', { 'class': 'cbi-input-text', 'style': 'padding-top:.5em' }, [
54 E('input', { 'class': 'cbi-input-text', 'id': 'timerD', 'maxlength': '13' }),
55 '\xa0\xa0\xa0',
56 _('The day of the week (opt., values: 0-6 possibly sep. by , or -)')
57 ])
58 ]),
59 E('div', { 'class': 'left', 'style': 'display:flex; flex-direction:column' }, [
60 E('label', { 'class': 'cbi-input-select', 'style': 'padding-top:.5em' }, [
61 E('h5', _('Remove an existing job')),
62 E('input', { 'class': 'cbi-input-text', 'id': 'lineno', 'maxlength': '2' }, [
63 ]),
64 '\xa0\xa0\xa0',
65 _('Line number to remove')
66 ])
67 ]),
68 E('div', { 'class': 'right' }, [
69 E('button', {
70 'class': 'btn cbi-button',
71 'click': L.hideModal
72 }, _('Cancel')),
73 ' ',
74 E('button', {
75 'class': 'btn cbi-button-action',
76 'click': ui.createHandlerFn(this, function(ev) {
77 var lineno = document.getElementById('lineno').value;
78 var action = document.getElementById('timerA').value;
79 var hours = document.getElementById('timerH').value;
80 var minutes = document.getElementById('timerM').value || '0';
81 var days = document.getElementById('timerD').value || '*';
82 if (hours) {
83 L.resolveDefault(fs.exec_direct('/etc/init.d/adblock', ['timer', 'add', action, hours, minutes, days]))
84 .then(function(res) {
85 if (res) {
86 ui.addNotification(null, E('p', _('The Refresh Timer could not been updated.')), 'error');
87 } else {
88 ui.addNotification(null, E('p', _('The Refresh Timer has been updated.')), 'info');
89 }
90 });
91 } else if (lineno) {
92 L.resolveDefault(fs.exec_direct('/etc/init.d/adblock', ['timer', 'remove', lineno]))
93 .then(function(res) {
94 if (res) {
95 ui.addNotification(null, E('p', _('The Refresh Timer could not been updated.')), 'error');
96 } else {
97 ui.addNotification(null, E('p', _('The Refresh Timer has been updated.')), 'info');
98 }
99 });
100 } else {
101 document.getElementById('timerH').focus();
102 return
103 }
104 L.hideModal();
105 })
106 }, _('Save'))
107 ])
108 ]);
109 L.resolveDefault(fs.exec_direct('/etc/init.d/adblock', ['timer', 'list']))
110 .then(function(res) {
111 document.getElementById('cronView').value = res.trim();
112 });
113 document.getElementById('timerH').focus();
114 return
115 }
116
117 if (document.getElementById('status') && document.getElementById('status').textContent.substr(0,6) === 'paused') {
118 ev = 'resume';
119 }
120
121 fs.exec_direct('/etc/init.d/adblock', [ev])
122 }
123
124 return view.extend({
125 load: function() {
126 return Promise.all([
127 L.resolveDefault(fs.exec_direct('/etc/init.d/adblock', ['list']), {}),
128 L.resolveDefault(fs.read_direct('/etc/adblock/adblock.categories'), ''),
129 uci.load('adblock')
130 ]);
131 },
132
133 render: function(result) {
134 var m, s, o;
135
136 m = new form.Map('adblock', 'Adblock', _('Configuration of the adblock package to block ad/abuse domains by using DNS. \
137 For further information <a href="https://github.com/openwrt/packages/blob/master/net/adblock/files/README.md" target="_blank" rel="noreferrer noopener" >check the online documentation</a>'));
138
139 /*
140 poll runtime information
141 */
142 pollData: poll.add(function() {
143 return L.resolveDefault(fs.read_direct('/tmp/adb_runtime.json'), 'null').then(function(res) {
144 var info = JSON.parse(res);
145 var status = document.getElementById('status');
146 if (status && info) {
147 status.textContent = (info.adblock_status || '-') + ' / ' + (info.adblock_version || '-');
148 if (info.adblock_status === "running") {
149 if (!status.classList.contains("spinning")) {
150 status.classList.add("spinning");
151 }
152 } else {
153 if (status.classList.contains("spinning")) {
154 status.classList.remove("spinning");
155 if (document.getElementById('btn_suspend')) {
156 if (status.textContent.substr(0,6) === 'paused') {
157 document.querySelector('#btn_suspend').textContent = 'Resume';
158 }
159 if (document.getElementById('status').textContent.substr(0,7) === 'enabled') {
160 document.querySelector('#btn_suspend').textContent = 'Suspend';
161 }
162 }
163 }
164 }
165 if (status.textContent.substr(0,6) === 'paused' && document.getElementById('btn_suspend')) {
166 document.querySelector('#btn_suspend').textContent = 'Resume';
167 }
168 } else if (status) {
169 status.textContent = '-';
170 if (status.classList.contains("spinning")) {
171 status.classList.remove("spinning");
172 }
173 }
174 var domains = document.getElementById('domains');
175 if (domains && info) {
176 domains.textContent = parseInt(info.blocked_domains, 10).toLocaleString() || '-';
177 }
178 var sources = document.getElementById('sources');
179 var src_array = [];
180 if (sources && info) {
181 for (var i = 0; i < info.active_sources.length; i++) {
182 if (i < info.active_sources.length-1) {
183 src_array += info.active_sources[i].source + ', ';
184 } else {
185 src_array += info.active_sources[i].source
186 }
187 }
188 sources.textContent = src_array || '-';
189 }
190 var backend = document.getElementById('backend');
191 if (backend && info) {
192 backend.textContent = info.dns_backend || '-';
193 }
194 var utils = document.getElementById('utils');
195 if (utils && info) {
196 utils.textContent = info.run_utils || '-';
197 }
198 var ifaces = document.getElementById('ifaces');
199 if (ifaces && info) {
200 ifaces.textContent = info.run_ifaces || '-';
201 }
202 var dirs = document.getElementById('dirs');
203 if (dirs && info) {
204 dirs.textContent = info.run_directories || '-';
205 }
206 var flags = document.getElementById('flags');
207 if (flags && info) {
208 flags.textContent = info.run_flags || '-';
209 }
210 var run = document.getElementById('run');
211 if (run && info) {
212 run.textContent = info.last_run || '-';
213 }
214 });
215 }, 1);
216
217 /*
218 runtime information and buttons
219 */
220 s = m.section(form.NamedSection, 'global');
221 s.render = L.bind(function(view, section_id) {
222 return E('div', { 'class': 'cbi-section' }, [
223 E('h3', _('Information')),
224 E('div', { 'class': 'cbi-value' }, [
225 E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Status / Version')),
226 E('div', { 'class': 'cbi-value-field spinning', 'id': 'status', 'style': 'color:#37c' },'\xa0')
227 ]),
228 E('div', { 'class': 'cbi-value' }, [
229 E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Blocked Domains')),
230 E('div', { 'class': 'cbi-value-field', 'id': 'domains', 'style': 'color:#37c' },'-')
231 ]),
232 E('div', { 'class': 'cbi-value' }, [
233 E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Active Sources')),
234 E('div', { 'class': 'cbi-value-field', 'id': 'sources', 'style': 'color:#37c' },'-')
235 ]),
236 E('div', { 'class': 'cbi-value' }, [
237 E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('DNS Backend')),
238 E('div', { 'class': 'cbi-value-field', 'id': 'backend', 'style': 'color:#37c' },'-')
239 ]),
240 E('div', { 'class': 'cbi-value' }, [
241 E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Run Utils')),
242 E('div', { 'class': 'cbi-value-field', 'id': 'utils', 'style': 'color:#37c' },'-')
243 ]),
244 E('div', { 'class': 'cbi-value' }, [
245 E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Run Interfaces')),
246 E('div', { 'class': 'cbi-value-field', 'id': 'ifaces', 'style': 'color:#37c' },'-')
247 ]),
248 E('div', { 'class': 'cbi-value' }, [
249 E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Run Directories')),
250 E('div', { 'class': 'cbi-value-field', 'id': 'dirs', 'style': 'color:#37c' },'-')
251 ]),
252 E('div', { 'class': 'cbi-value' }, [
253 E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Run Flags')),
254 E('div', { 'class': 'cbi-value-field', 'id': 'flags', 'style': 'color:#37c' },'-')
255 ]),
256 E('div', { 'class': 'cbi-value' }, [
257 E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Last Run')),
258 E('div', { 'class': 'cbi-value-field', 'id': 'run', 'style': 'color:#37c' },'-')
259 ]),
260 E('div', { class: 'right' }, [
261 E('button', {
262 'class': 'btn cbi-button cbi-button-apply',
263 'click': ui.createHandlerFn(this, function() {
264 return handleAction('timer');
265 })
266 }, [ _('Refresh Timer...') ]),
267 '\xa0\xa0\xa0',
268 E('button', {
269 'class': 'btn cbi-button cbi-button-apply',
270 'id': 'btn_suspend',
271 'click': ui.createHandlerFn(this, function() {
272 return handleAction('suspend');
273 })
274 }, [ _('Suspend') ]),
275 '\xa0\xa0\xa0',
276 E('button', {
277 'class': 'btn cbi-button cbi-button-positive',
278 'click': ui.createHandlerFn(this, function() {
279 return handleAction('reload');
280 })
281 }, [ _('Reload') ]),
282 '\xa0\xa0\xa0',
283 E('button', {
284 'class': 'btn cbi-button cbi-button-negative',
285 'click': ui.createHandlerFn(this, function() {
286 return handleAction('restart');
287 })
288 }, [ _('Restart') ])
289 ])
290 ]);
291 }, o, this);
292 this.pollData;
293
294 /*
295 tabbed config section
296 */
297 s = m.section(form.NamedSection, 'global', 'adblock', _('Settings'));
298 s.addremove = false;
299 s.tab('general', _('General Settings'));
300 s.tab('additional', _('Additional Settings'));
301 s.tab('adv_dns', _('Advanced DNS Settings'));
302 s.tab('adv_report', _('Advanced Report Settings'));
303 s.tab('adv_email', _('Advanced E-Mail Settings'));
304 s.tab('sources', _('Blocklist Sources'));
305
306 /*
307 general settings tab
308 */
309 o = s.taboption('general', form.Flag, 'adb_enabled', _('Enabled'), _('Enable the adblock service.'));
310 o.rmempty = false;
311
312 o = s.taboption('general', widgets.NetworkSelect, 'adb_trigger', _('Startup Trigger Interface'), _('List of available network interfaces to trigger the adblock start. \
313 Choose \'unspecified\' to use a classic startup timeout instead of a network trigger.'));
314 o.unspecified = true;
315 o.nocreate = true;
316 o.rmempty = true;
317
318 o = s.taboption('general', form.Flag, 'adb_forcedns', _('Force Local DNS'), _('Redirect all DNS queries from specified zones to the local DNS resolver, applies to UDP and TCP protocol.'));
319 o.rmempty = false;
320
321 o = s.taboption('general', widgets.ZoneSelect, 'adb_zonelist', _('Forced Zones'), _('Firewall source zones that should be forced locally.'));
322 o.depends('adb_forcedns', '1');
323 o.unspecified = true;
324 o.multiple = true;
325 o.nocreate = true;
326 o.rmempty = true;
327
328 o = s.taboption('general', form.DynamicList, 'adb_portlist', _('Forced Ports'), _('Firewall ports that should be forced locally.'));
329 o.depends('adb_forcedns', '1');
330 o.unspecified = true;
331 o.multiple = true;
332 o.nocreate = false;
333 o.datatype = 'port';
334 o.value('53');
335 o.value('853');
336 o.value('5353');
337 o.rmempty = true;
338
339 o = s.taboption('general', form.Flag, 'adb_safesearch', _('Enable SafeSearch'), _('Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and pixabay.'));
340 o.rmempty = false;
341
342 o = s.taboption('general', form.MultiValue, 'adb_safesearchlist', _('Limit SafeSearch'), _('Limit SafeSearch to certain providers.'));
343 o.depends('adb_safesearch', '1');
344 o.value('google');
345 o.value('bing');
346 o.value('duckduckgo');
347 o.value('yandex');
348 o.value('youtube');
349 o.value('pixabay');
350 o.rmempty = true;
351
352 o = s.taboption('general', form.Flag, 'adb_safesearchmod', _('Relax SafeSearch'), _('Enable moderate SafeSearch filters for youtube.'));
353 o.depends('adb_safesearch', '1');
354 o.rmempty = true;
355
356 o = s.taboption('general', form.Flag, 'adb_report', _('DNS Report'), _('Gather DNS related network traffic via tcpdump and provide a DNS Report on demand. \
357 Please note: this needs additional \'tcpdump\' or \'tcpdump-mini\' package installation and a full adblock service restart to take effect.'));
358 o.rmempty = false;
359
360 o = s.taboption('general', form.Flag, 'adb_mail', _('E-Mail Notification'), _('Send adblock related notification e-mails. \
361 Please note: this needs additional \'msmtp\' package installation.'));
362 o.rmempty = false;
363
364 o = s.taboption('general', form.Value, 'adb_mailreceiver', _('E-Mail Receiver Address'), _('Receiver address for adblock notification e-mails.'));
365 o.depends('adb_mail', '1');
366 o.placeholder = 'name@example.com';
367 o.rmempty = true;
368
369 /*
370 additional settings tab
371 */
372 o = s.taboption('additional', form.Flag, 'adb_debug', _('Verbose Debug Logging'), _('Enable verbose debug logging in case of any processing errors.'));
373 o.rmempty = false;
374
375 o = s.taboption('additional', form.Flag, 'adb_nice', _('Low Priority Service'), _('Reduce the priority of the adblock background processing to take fewer resources from the system. \
376 Please note: This change requires a full adblock service restart to take effect.'));
377 o.enabled = '10';
378 o.rmempty = true;
379
380 o = s.taboption('additional', form.Value, 'adb_triggerdelay', _('Trigger Delay'), _('Additional trigger delay in seconds before adblock processing begins.'));
381 o.placeholder = '2';
382 o.datatype = 'range(1,300)';
383 o.rmempty = true;
384
385 o = s.taboption('additional', form.ListValue, 'adb_maxqueue', _('Download Queue'), _('Size of the download queue for download processing (incl. sorting, merging etc.) in parallel.'));
386 o.value('1');
387 o.value('2');
388 o.value('4');
389 o.value('8');
390 o.value('16');
391 o.value('32');
392 o.rmempty = false;
393
394 o = s.taboption('additional', form.Value, 'adb_tmpbase', _('Base Temp Directory'), _('Base Temp Directory for all adblock related runtime operations, \
395 e.g. downloading, sorting, merging etc.'));
396 o.placeholder = '/tmp';
397 o.rmempty = true;
398
399 o = s.taboption('additional', form.Flag, 'adb_backup', _('Blocklist Backup'), _('Create compressed blocklist backups, they will be used in case of download errors or during startup.'));
400 o.default = 1
401 o.rmempty = false;
402
403 o = s.taboption('additional', form.Value, 'adb_backupdir', _('Backup Directory'), _('Target directory for blocklist backups.'));
404 o.depends('adb_backup', '1');
405 o.placeholder = '/tmp/adblock-Backup';
406 o.rmempty = true;
407
408 o = s.taboption('additional', form.ListValue, 'adb_fetchutil', _('Download Utility'), _('List of supported and fully pre-configured download utilities.'));
409 o.value('uclient-fetch');
410 o.value('wget');
411 o.value('curl');
412 o.value('aria2c');
413 o.optional = true;
414 o.rmempty = true;
415
416 o = s.taboption('additional', form.Flag, 'adb_fetchinsecure', _('Download Insecure'), _('Don\'t check SSL server certificates during download.'));
417 o.default = 0
418 o.rmempty = true;
419
420 o = s.taboption('additional', form.Value, 'adb_fetchparm', _('Download Parameters'), _('Manually override the pre-configured download options for the selected download utility.'));
421 o.optional = true;
422 o.rmempty = true;
423
424 /*
425 advanced dns settings tab
426 */
427 o = s.taboption('adv_dns', form.ListValue, 'adb_dns', _('DNS Backend'), _('List of supported DNS backends with their default list directory. \
428 To overwrite the default path use the \'DNS Directory\' option.'));
429 o.value('dnsmasq', _('dnsmasq (/tmp/dnsmasq.d)'));
430 o.value('unbound', _('unbound (/var/lib/unbound)'));
431 o.value('named', _('bind (/var/lib/bind)'));
432 o.value('kresd', _('kresd (/etc/kresd)'));
433 o.value('raw', _('raw (/tmp)'));
434 o.optional = true;
435 o.rmempty = true;
436
437 o = s.taboption('adv_dns', form.Value, 'adb_dnsdir', _('DNS Directory'), _('Target directory for the generated blocklist \'adb_list.overall\'.'));
438 o.placeholder = '/tmp';
439 o.rmempty = true;
440
441 o = s.taboption('adv_dns', form.ListValue, 'adb_dnsinstance', _('DNS Instance'), _('Set the dns backend instance used by adblock.'));
442 o.value('0', _('First instance (default)'));
443 o.value('1', _('Second instance'));
444 o.value('2', _('Third instance'));
445 o.value('3', _('Fourth instance'));
446 o.value('4', _('Fifth instance'));
447 o.depends('adb_dns', 'dnsmasq');
448 o.optional = true;
449 o.rmempty = true;
450
451 o = s.taboption('adv_dns', form.Value, 'adb_dnstimeout', _('DNS Restart Timeout'), _('Timeout to wait for a successful DNS backend restart.'));
452 o.placeholder = '20';
453 o.datatype = 'range(1,60)';
454 o.rmempty = true;
455
456 o = s.taboption('adv_dns', form.Value, 'adb_lookupdomain', _('External DNS Lookup Domain'), _('External domain to check for a successful DNS backend restart. \
457 Please note: To disable this check set this option to \'false\'.'));
458 o.placeholder = 'example.com';
459 o.rmempty = true;
460
461 o = s.taboption('adv_dns', form.Flag, 'adb_dnsflush', _('Flush DNS Cache'), _('Empty the DNS cache before adblock processing starts to reduce the memory consumption.'));
462 o.rmempty = true;
463
464 o = s.taboption('adv_dns', form.Flag, 'adb_dnsallow', _('Disable DNS Allow'), _('Disable selective DNS whitelisting (RPZ-PASSTHRU).'));
465 o.rmempty = true;
466
467 o = s.taboption('adv_dns', form.DynamicList, 'adb_denyip', _('Block Local Client IPs'), _('Block all requests of certain DNS clients based on their IP address (RPZ-CLIENT-IP). \
468 Please note: This feature is currently only supported by bind DNS backend.'));
469 o.datatype = 'or(ip4addr("nomask"),ip6addr("nomask"))';
470 o.optional = true;
471 o.rmempty = true;
472
473 o = s.taboption('adv_dns', form.DynamicList, 'adb_allowip', _('Allow Local Client IPs'), _('Allow all requests of certain DNS clients based on their IP address (RPZ-CLIENT-IP). \
474 Please note: This feature is currently only supported by bind DNS backend.'));
475 o.datatype = 'or(ip4addr("nomask"),ip6addr("nomask"))';
476 o.optional = true;
477 o.rmempty = true;
478
479 o = s.taboption('adv_dns', form.Flag, 'adb_jail', _('Additional Jail Blocklist'), _('Builds an additional DNS blocklist to block access to all domains except those listed in the whitelist. \
480 Please note: You can use this restrictive blocklist e.g. for guest wifi or kidsafe configurations.'));
481 o.rmempty = true;
482
483 o = s.taboption('adv_dns', form.Value, 'adb_jaildir', _('Jail Directory'), _('Target directory for the generated jail blocklist \'adb_list.jail\'.'));
484 o.depends('adb_jail', '1');
485 o.placeholder = '/tmp';
486 o.rmempty = true;
487
488 o = s.taboption('adv_dns', form.Flag, 'adb_dnsinotify', _('Disable DNS Restarts'), _('Disable adblock triggered restarts for dns backends with autoload/inotify functions.'));
489 o.depends('adb_dnsflush', '0');
490 o.rmempty = true;
491
492 /*
493 advanced report settings tab
494 */
495 o = s.taboption('adv_report', form.DummyValue, '_sub');
496 o.rawhtml = true;
497 o.default = '<em><b>Changes on this tab needs a full adblock service restart to take effect.</b></em>';
498
499 o = s.taboption('adv_report', widgets.DeviceSelect, 'adb_repiface', _('Report Interface'), _('List of available network devices used by tcpdump.'));
500 o.unspecified = true;
501 o.nocreate = false;
502 o.rmempty = true;
503
504 o = s.taboption('adv_report', form.Value, 'adb_reportdir', _('Report Directory'), _('Target directory for DNS related report files.'));
505 o.placeholder = '/tmp/adblock-Report';
506 o.rmempty = true;
507
508 o = s.taboption('adv_report', form.Value, 'adb_repchunkcnt', _('Report Chunk Count'), _('Report chunk count used by tcpdump.'));
509 o.placeholder = '5';
510 o.datatype = 'range(1,10)';
511 o.rmempty = true;
512
513 o = s.taboption('adv_report', form.Value, 'adb_repchunksize', _('Report Chunk Size'), _('Report chunk size used by tcpdump in MByte.'));
514 o.placeholder = '1';
515 o.datatype = 'range(1,10)';
516 o.rmempty = true;
517
518 o = s.taboption('adv_report', form.Value, 'adb_replisten', _('Report Ports'), _('Space separated list of ports used by tcpdump.'));
519 o.placeholder = '53';
520 o.rmempty = true;
521
522 o = s.taboption('adv_report', form.Flag, 'adb_represolve', _('Resolve IPs'), _('Resolve reporting IP addresses by using reverse DNS (PTR) lookups.'));
523 o.rmempty = true;
524
525 /*
526 advanced email settings tab
527 */
528 o = s.taboption('adv_email', form.Value, 'adb_mailsender', _('E-Mail Sender Address'), _('Sender address for adblock notification E-Mails.'));
529 o.placeholder = 'no-reply@adblock';
530 o.rmempty = true;
531
532 o = s.taboption('adv_email', form.Value, 'adb_mailtopic', _('E-Mail Topic'), _('Topic for adblock notification E-Mails.'));
533 o.placeholder = 'adblock notification';
534 o.rmempty = true;
535
536 o = s.taboption('adv_email', form.Value, 'adb_mailprofile', _('E-Mail Profile'), _('Profile used by \'msmtp\' for adblock notification E-Mails.'));
537 o.placeholder = 'adb_notify';
538 o.rmempty = true;
539
540 o = s.taboption('adv_email', form.Value, 'adb_mailcnt', _('E-Mail Notification Count'), _('Raise the notification count, to get E-Mails if the overall blocklist count is less or equal to the given limit.'));
541 o.placeholder = '0';
542 o.datatype = 'min(0)';
543 o.rmempty = true;
544
545 /*
546 blocklist sources tab
547 */
548 o = s.taboption('sources', form.DummyValue, '_sub');
549 o.rawhtml = true;
550 o.default = '<em><b>List of supported and fully pre-configured adblock sources.</b></em><br /> \
551 List size information with the respective domain ranges as follows:<br /> \
552 &#8226;&#xa0;<b>S</b> (-10k), <b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 MByte devices,<br /> \
553 &#8226;&#xa0;<b>XL</b> (80k-200k) should work for 256-512 MByte devices,<br /> \
554 &#8226;&#xa0;<b>XXL</b> (200k-) needs more RAM and Multicore support, e.g. x86 or raspberry devices.<br /> \
555 &#8226;&#xa0;<b>VAR</b> (50k-500k) variable size depending on the selection.<br />';
556
557 var name, size, focus, sources = [];
558 if (result[0]) {
559 sources = result[0].trim().split('\n');
560 }
561
562 o = s.taboption('sources', form.MultiValue, 'adb_sources', _('Sources (Size, Focus)'));
563 for (var i = 0; i < sources.length; i++) {
564 if (sources[i].match(/^\s+\+/)) {
565 name = sources[i].match(/^\s+\+\s(\w+)\s/)[1] || '-';
566 size = sources[i].match(/^\s+\+\s\w+[\sx]+(\w+)/)[1] || '-';
567 focus = sources[i].match(/^\s+\+\s\w+[\sx]+\w+\s+([\w\+]+)/)[1] || '-';
568 o.value(name, name + ' (' + size + ', ' + focus + ')');
569 }
570 }
571 o.optional = true;
572 o.rmempty = true;
573
574 /*
575 prepare category data
576 */
577 var code, category, list, path, categories = [];
578 if (result[1]) {
579 categories = result[1].trim().split('\n');
580 }
581
582 o = s.taboption('sources', form.DummyValue, '_sub');
583 o.rawhtml = true;
584 o.default = '<em><b>UTCapitole Archive Selection</b></em>';
585
586 o = s.taboption('sources', form.DynamicList, 'adb_utc_sources', _('Categories'));
587 for (var i = 0; i < categories.length; i++) {
588 code = categories[i].match(/^(\w+);/)[1].trim();
589 if (code === 'utc') {
590 category = categories[i].match(/^\w+;(.*$)/)[1].trim();
591 o.value(category);
592 }
593 }
594 o.optional = true;
595 o.rmempty = true;
596
597 o = s.taboption('sources', form.DummyValue, '_sub');
598 o.rawhtml = true;
599 o.default = '<em><b>Energized List Selection</b></em>';
600
601 o = s.taboption('sources', form.DynamicList, 'adb_eng_sources', _('Variants'));
602 for (var i = 0; i < categories.length; i++) {
603 code = categories[i].match(/^(\w+);/)[1].trim();
604 if (code === 'eng') {
605 list = categories[i].match(/^\w+;(.*);/)[1].trim();
606 path = categories[i].match(/^.*;(.*$)/)[1].trim();
607 o.value(path, list);
608 }
609 }
610 o.optional = true;
611 o.rmempty = true;
612
613 o = s.taboption('sources', form.DummyValue, '_sub');
614 o.rawhtml = true;
615 o.default = '<em><b>StevenBlack List Selection</b></em>';
616
617 o = s.taboption('sources', form.DynamicList, 'adb_stb_sources', _('Variants'));
618 for (var i = 0; i < categories.length; i++) {
619 code = categories[i].match(/^(\w+);/)[1].trim();
620 if (code === 'stb') {
621 list = categories[i].match(/^\w+;(.*);/)[1].trim();
622 path = categories[i].match(/^.*;(.*$)/)[1].trim();
623 o.value(path, list);
624 }
625 }
626 o.optional = true;
627 o.rmempty = true;
628
629 return m.render();
630 },
631 handleReset: null
632 });