luci-app-samba4: switch to luci static javascript api
[project/luci.git] / applications / luci-app-samba4 / htdocs / luci-static / resources / view / samba4.js
1 'use strict';
2 'require fs';
3 'require form';
4 'require tools.widgets as widgets';
5
6 return L.view.extend({
7 load: function() {
8 return Promise.all([
9 L.resolveDefault(fs.stat('/sbin/block'), null),
10 L.resolveDefault(fs.stat('/etc/config/fstab'), null),
11 L.resolveDefault(fs.stat('/usr/sbin/nmbd'), {}),
12 L.resolveDefault(fs.stat('/usr/sbin/samba'), {}),
13 L.resolveDefault(fs.stat('/usr/sbin/winbindd'), {}),
14 L.resolveDefault(fs.exec('/usr/sbin/smbd', ['-V']), null),
15 ]);
16 },
17 render: function(stats) {
18 var m, s, o, v;
19 v = '';
20
21 m = new form.Map('samba4', _('Network Shares'));
22
23 if (stats[5] && stats[5].code === 0) {
24 v = stats[5].stdout.trim();
25 }
26 s = m.section(form.TypedSection, 'samba', 'Samba ' + v);
27 s.anonymous = true;
28
29 s.tab('general', _('General Settings'));
30 s.tab('template', _('Edit Template'));
31
32 s.taboption('general', widgets.NetworkSelect, 'interface', _('Interface'),
33 _('Listen only on the given interface or, if unspecified, on lan'));
34
35 o = s.taboption('general', form.Value, 'workgroup', _('Workgroup'));
36 o.placeholder = 'WORKGROUP';
37
38 o = s.taboption('general', form.Value, 'description', _('Description'));
39 o.placeholder = 'Samba4 on OpenWrt';
40
41 s.taboption('general', form.Flag, 'disable_async_io', _('Force synchronous I/O'),
42 _('On lower-end devices may increase speeds, by forceing synchronous I/O instead of the default asynchronous.'));
43
44 o = s.taboption('general', form.Flag, 'macos', _('Enable macOS compatible shares'),
45 _('Enables Apple\'s AAPL extension globally and adds macOS compatibility options to all shares.'));
46
47 if (stats[2].type === 'file') {
48 s.taboption('general', form.Flag, 'disable_netbios', _('Disable Netbios'))
49 }
50 if (stats[3].type === 'file') {
51 s.taboption('general', form.Flag, 'disable_ad_dc', _('Disable Active Directory Domain Controller'))
52 }
53 if (stats[4].type === 'file') {
54 s.taboption('general', form.Flag, 'disable_winbind', _('Disable Winbind'))
55 }
56
57 o = s.taboption('template', form.TextValue, '_tmpl',
58 _('Edit the template that is used for generating the samba configuration.'),
59 _("This is the content of the file '/etc/samba/smb.conf.template' from which your samba configuration will be generated. \
60 Values enclosed by pipe symbols ('|') should not be changed. They get their values from the 'General Settings' tab."));
61 o.rows = 20;
62 o.cfgvalue = function(section_id) {
63 return fs.trimmed('/etc/samba/smb.conf.template');
64 };
65 o.write = function(section_id, formvalue) {
66 return fs.write('/etc/samba/smb.conf.template', formvalue.trim().replace(/\r\n/g, '\n') + '\n');
67 };
68
69
70 s = m.section(form.TableSection, 'sambashare', _('Shared Directories'),
71 _('Please add directories to share. Each directory refers to a folder on a mounted device.'));
72 s.anonymous = true;
73 s.addremove = true;
74
75 s.option(form.Value, 'name', _('Name'));
76 o = s.option(form.Value, 'path', _('Path'));
77 if (stats[0] && stats[1]) {
78 o.titleref = L.url('admin', 'system', 'mounts');
79 }
80
81 o = s.option(form.Flag, 'browseable', _('Browse-able'));
82 o.enabled = 'yes';
83 o.disabled = 'no';
84 o.default = 'yes';
85
86 o = s.option(form.Flag, 'read_only', _('Read-only'));
87 o.enabled = 'yes';
88 o.disabled = 'no';
89 o.default = 'no';
90
91 s.option(form.Flag, 'force_root', _('Force Root'));
92
93 o = s.option(form.Value, 'users', _('Allowed users'));
94 o.rmempty = true;
95
96 o = s.option(form.Flag, 'guest_ok', _('Allow guests'));
97 o.enabled = 'yes';
98 o.disabled = 'no';
99 o.default = 'Yes';
100
101 o = s.option(form.Flag, 'guest_only', _('Guests only'));
102 o.enabled = 'yes';
103 o.disabled = 'no';
104 o.default = 'no';
105
106 o = s.option(form.Flag, 'inherit_owner', _('Inherit owner'));
107 o.enabled = 'yes';
108 o.disabled = 'no';
109 o.default = 'no';
110
111 o = s.option(form.Value, 'create_mask', _('Create mask'));
112 o.rmempty = true;
113 o.maxlength = 4;
114 o.placeholder = '0666';
115
116 o = s.option(form.Value, 'dir_mask', _('Directory mask'));
117 o.rmempty = true;
118 o.maxlength = 4;
119 o.placeholder = '0777';
120
121 o = s.option(form.Value, 'vfs_objects', _('Vfs objects'));
122 o.rmempty = true;
123
124 s.option(form.Flag, 'timemachine', _('Apple Time-machine share'));
125
126 o = s.option(form.Value, 'timemachine_maxsize', _('Time-machine size in GB'));
127 o.rmempty = true;
128 o.maxlength = 5;
129
130 return m.render();
131 }
132 });