forked from truenas/middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
choices.py
1263 lines (1062 loc) · 35.2 KB
/
choices.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Copyright 2010 iXsystems, Inc.
# All rights reserved
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted providing that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
# IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
#####################################################################
import freenasUI.settings
import csv
import io
import logging
import os
import re
import sqlite3
import copy
import subprocess
import codecs
from os import popen
from django.utils.translation import ugettext_lazy as _
log = logging.getLogger('choices')
HTAUTH_CHOICES = (
('none', _('No Authentication')),
('basic', _('Basic Authentication')),
('digest', _('Digest Authentication')),
)
SMTPAUTH_CHOICES = (
('plain', _('Plain')),
('ssl', _('SSL')),
('tls', _('TLS')),
)
# GUI protocol choice
PROTOCOL_CHOICES = (
('http', _('HTTP')),
('https', _('HTTPS')),
('httphttps', _('HTTP+HTTPS')),
)
TRANSFERMODE_CHOICES = (
('Auto', _('Auto')),
('PIO0', _('PIO0')),
('PIO1', _('PIO1')),
('PIO2', _('PIO2')),
('PIO3', _('PIO3')),
('PIO4', _('PIO4')),
('WDMA0', _('WDMA0')),
('WDMA1', _('WDMA1')),
('WDMA2', _('WDMA2')),
('UDMA16', _('UDMA-16')),
('UDMA33', _('UDMA-33')),
('UDMA66', _('UDMA-66')),
('UDMA100', _('UDMA-100')),
('UDMA133', _('UDMA-133')),
('SATA150', _('SATA 1.5Gbit/s')),
('SATA300', _('SATA 3.0Gbit/s')),
)
HDDSTANDBY_CHOICES = (
('Always On', _('Always On')),
('5', '5'),
('10', '10'),
('20', '20'),
('30', '30'),
('60', '60'),
('120', '120'),
('180', '180'),
('240', '240'),
('300', '300'),
('330', '330'),
)
ADVPOWERMGMT_CHOICES = (
('Disabled', _('Disabled')),
('1', _('Level 1 - Minimum power usage with Standby (spindown)')),
('64', _('Level 64 - Intermediate power usage with Standby')),
('127', _('Level 127 - Maximum power usage with Standby')),
('128', _('Level 128 - Minimum power usage without Standby (no spindown)')),
('192', _('Level 192 - Intermediate power usage without Standby')),
('254', _('Level 254 - Maximum performance, maximum power usage')),
)
ACOUSTICLVL_CHOICES = (
('Disabled', _('Disabled')),
('Minimum', _('Minimum')),
('Medium', _('Medium')),
('Maximum', _('Maximum')),
)
MINUTES1_CHOICES = tuple([(str(x), str(x)) for x in range(0, 12)])
MINUTES2_CHOICES = tuple([(str(x), str(x)) for x in range(12, 24)])
MINUTES3_CHOICES = tuple([(str(x), str(x)) for x in range(24, 36)])
MINUTES4_CHOICES = tuple([(str(x), str(x)) for x in range(36, 48)])
MINUTES5_CHOICES = tuple([(str(x), str(x)) for x in range(48, 60)])
HOURS1_CHOICES = tuple([(str(x), str(x)) for x in range(0, 12)])
HOURS2_CHOICES = tuple([(str(x), str(x)) for x in range(12, 24)])
DAYS1_CHOICES = tuple([(str(x), str(x)) for x in range(1, 13)])
DAYS2_CHOICES = tuple([(str(x), str(x)) for x in range(13, 25)])
DAYS3_CHOICES = tuple([(str(x), str(x)) for x in range(25, 32)])
MONTHS_CHOICES = (
('1', _('January')),
('2', _('February')),
('3', _('March')),
('4', _('April')),
('5', _('May')),
('6', _('June')),
('7', _('July')),
('8', _('August')),
('9', _('September')),
('10', _('October')),
('11', _('November')),
('12', _('December')),
)
WEEKDAYS_CHOICES = (
('1', _('Monday')),
('2', _('Tuesday')),
('3', _('Wednesday')),
('4', _('Thursday')),
('5', _('Friday')),
('6', _('Saturday')),
('7', _('Sunday')),
)
VolumeEncrypt_Choices = (
(0, _('Unencrypted')),
(1, _('Encrypted, no passphrase')),
(2, _('Encrypted, with passphrase')),
)
CIFS_SMB_PROTO_CHOICES = (
('CORE', _('CORE')),
('COREPLUS', _('COREPLUS')),
('LANMAN1', _('LANMAN1')),
('LANMAN2', _('LANMAN2')),
('NT1', _('NT1')),
('SMB2', _('SMB2')),
('SMB2_02', _('SMB2_02')),
('SMB2_10', _('SMB2_10')),
('SMB3', _('SMB3')),
('SMB3_00', _('SMB3_00')),
('SMB3_02', _('SMB3_02')),
('SMB3_11', _('SMB3_11')),
)
DOSCHARSET_CHOICES = (
'CP437',
'CP850',
'CP852',
'CP866',
'CP932',
'CP949',
'CP950',
'CP1026',
'CP1251',
'ASCII',
)
UNIXCHARSET_CHOICES = (
'UTF-8',
'ISO-8859-1',
'ISO-8859-15',
'GB2312',
'EUC-JP',
'ASCII',
)
class CHARSET(object):
__CODEPAGE = re.compile("(?P<name>CP|GB|ISO-8859-|UTF-)(?P<num>\d+)").match
__canonical = {'UTF-8', 'ASCII', 'GB2312', 'HZ-GB-2312', 'CP1361'}
def __check_codec(self, encoding):
try:
if codecs.lookup(encoding):
return encoding.upper()
except LookupError:
pass
return
def __key_cp(self, encoding):
cp = CHARSET.__CODEPAGE(encoding)
if cp:
return tuple((cp.group('name'), int(cp.group('num'), 10)))
return tuple((encoding, float('inf')))
def __init__(self, popular=[]):
self.__popular = popular
out = subprocess.Popen(['/usr/bin/iconv', '-l'], stdout=subprocess.PIPE, encoding='utf8').communicate()[0]
encodings = set()
for line in out.splitlines():
enc = [e for e in line.split() if self.__check_codec(e)]
if enc:
cp = enc[0]
for e in enc:
if e in CHARSET.__canonical:
cp = e
break
encodings.add(cp)
self.__charsets = [c for c in sorted(encodings, key=self.__key_cp) if c not in self.__popular]
def __iter__(self):
if self.__popular:
for c in self.__popular:
yield(c, c)
yield('', '-----')
for c in self.__charsets:
yield(c, c)
LOGLEVEL_CHOICES = (
('0', _('None')),
('1', _('Minimum')),
('2', _('Normal')),
('3', _('Full')),
('10', _('Debug')),
)
CASEFOLDING_CHOICES = (
('none', _('No case folding')),
('lowercaseboth', _('Lowercase names in both directions')),
('uppercaseboth', _('Lowercase names in both directions')),
('lowercaseclient', _('Client sees lowercase, server sees uppercase')),
('uppercaseclient', _('Client sees uppercase, server sees lowercase')),
)
TARGET_BLOCKSIZE_CHOICES = (
(512, '512'),
(1024, '1024'),
(2048, '2048'),
(4096, '4096'),
)
EXTENT_RPM_CHOICES = (
('Unknown', _('Unknown')),
('SSD', _('SSD')),
('5400', _('5400')),
('7200', _('7200')),
('10000', _('10000')),
('15000', _('15000')),
)
AUTHMETHOD_CHOICES = (
('None', _('None')),
('CHAP', _('CHAP')),
('CHAP Mutual', _('Mutual CHAP')),
)
AUTHGROUP_CHOICES = (
('None', _('None')),
)
DYNDNSPROVIDER_CHOICES = (
('[email protected]', '3322.org'),
('[email protected]', 'changeip.com'),
('[email protected]', 'cloudxns.net'),
('[email protected]', 'ddnss.de'),
('[email protected]', 'dhis.org'),
('[email protected]', 'dnsexit.com'),
('[email protected]', 'dnsomatic.com'),
('[email protected]', 'dnspod.cn'),
('[email protected]', 'domains.google.com'),
('[email protected]', 'dtdns.com'),
('[email protected]', 'duckdns.org'),
('[email protected]', 'duiadns.net'),
('[email protected]', 'dyndns.org'),
('[email protected]', 'dynsip.org'),
('[email protected]', 'dynv6.com'),
('[email protected]', 'easydns.com'),
('[email protected]', 'freedns.afraid.org'),
('[email protected]', 'freemyip.com'),
('[email protected]', 'gira.de'),
('[email protected]', 'he.net'),
('[email protected]', 'ipv4.dynv6.com'),
('[email protected]', 'loopia.com'),
('[email protected]', 'no-ip.com'),
('[email protected]', 'nsupdate.info'),
('[email protected]', 'ovh.com'),
('[email protected]', 'sitelutions.com'),
('[email protected]', 'spdyn.de'),
('[email protected]', 'strato.com'),
('[email protected]', 'tunnelbroker.net'),
('[email protected]', 'tzo.com'),
('[email protected]', 'zerigo.com'),
('[email protected]', 'zoneedit.com'),
('custom', 'Custom Provider')
)
SNMP_CHOICES = (
('mibll', 'Mibll'),
('netgraph', 'Netgraph'),
('hostresources', 'Host resources'),
('UCD-SNMP-MIB ', 'UCD-SNMP-MIB'),
)
SNMP_LOGLEVEL = (
(0, _('Emergency')),
(1, _('Alert')),
(2, _('Critical')),
(3, _('Error')),
(4, _('Warning')),
(5, _('Notice')),
(6, _('Info')),
(7, _('Debug')),
)
UPS_CHOICES = (
('lowbatt', _('UPS reaches low battery')),
('batt', _('UPS goes on battery')),
)
BTENCRYPT_CHOICES = (
('preferred', _('Preferred')),
('tolerated', _('Tolerated')),
('required', _('Required')),
)
PWEncryptionChoices = (
('clear', 'clear'),
('crypt', 'crypt'),
('md5', 'md5'),
('nds', 'nds'),
('racf', 'racf'),
('ad', 'ad'),
('exop', 'exop'),
)
LAGGType = (
('failover', 'Failover'),
('lacp', 'LACP'),
('loadbalance', 'Load Balance'),
('roundrobin', 'Round Robin'),
('none', 'None'),
)
VLAN_PCP_CHOICES = (
(0, _('Best effort (default)')),
(1, _('Background (lowest)')),
(2, _('Excellent effort')),
(3, _('Critical applications')),
(4, _('Video, < 100ms latency')),
(5, _('Video, < 10ms latency')),
(6, _('Internetwork control')),
(7, _('Network control (highest)')),
)
ZFS_AtimeChoices = (
('inherit', _('Inherit')),
('on', _('On')),
('off', _('Off')),
)
ZFS_ReadonlyChoices = (
('inherit', _('Inherit')),
('on', _('On')),
('off', _('Off')),
)
ZFS_ExecChoices = (
('inherit', _('Inherit')),
('on', _('On')),
('off', _('Off')),
)
ZFS_SyncChoices = (
('inherit', _('Inherit')),
('standard', _('Standard')),
('always', _('Always')),
('disabled', _('Disabled')),
)
ZFS_CompressionChoices = (
('inherit', _('Inherit')),
('off', _('Off')),
('lz4', _('lz4 (recommended)')),
('gzip', _('gzip (default level, 6)')),
('gzip-1', _('gzip (fastest)')),
('gzip-9', _('gzip (maximum, slow)')),
('zle', _('zle (runs of zeros)')),
('lzjb', _('lzjb (legacy, not recommended)')),
)
Repl_CompressionChoices = (
('off', _('Off')),
('lz4', _('lz4 (fastest)')),
('pigz', _('pigz (all rounder)')),
('plzip', _('plzip (best compression)')),
)
class whoChoices:
"""Populate a list of system user choices"""
def __init__(self):
# This doesn't work right, lol
pipe = popen("pw usershow -a | cut -d: -f1")
self._wholist = pipe.read().strip().split('\n')
self.max_choices = len(self._wholist)
def __iter__(self):
return iter((i, i) for i in self._wholist)
# Network|Interface Management
class NICChoices(object):
"""Populate a list of NIC choices"""
def __init__(self, nolagg=False, novlan=False, noloopback=True, notap=True,
exclude_configured=True, include_vlan_parent=False,
exclude_unconfigured_vlan_parent=False,
with_alias=False, nobridge=True, noepair=True):
self.nolagg = nolagg
self.novlan = novlan
self.noloopback = noloopback
self.notap = notap
self.exclude_configured = exclude_configured
self.include_vlan_parent = include_vlan_parent
self.exclude_unconfigured_vlan_parent = exclude_unconfigured_vlan_parent
self.with_alias = with_alias
self.nobridge = noepair
self.noepair = noepair
def __iter__(self):
pipe = popen("/sbin/ifconfig -l")
self._NIClist = pipe.read().strip().split(' ')
self._NIClist = [y for y in self._NIClist if y not in ('lo0', 'pfsync0', 'pflog0', 'ipfw0')]
if self.noloopback is False:
self._NIClist.append('lo0')
from freenasUI.middleware.notifier import notifier
# Remove internal interfaces for failover
if (
hasattr(notifier, 'failover_status') and
notifier().failover_licensed()
):
for iface in notifier().failover_internal_interfaces():
if iface in self._NIClist:
self._NIClist.remove(iface)
conn = sqlite3.connect(freenasUI.settings.DATABASES['default']['NAME'])
c = conn.cursor()
# Remove interfaces that are parent devices of a lagg
# Database queries are wrapped in try/except as this is run
# before the database is created during syncdb and the queries
# will fail
try:
c.execute("SELECT lagg_physnic FROM network_lagginterfacemembers")
except sqlite3.OperationalError:
pass
else:
for interface in c:
if interface[0] in self._NIClist:
self._NIClist.remove(interface[0])
if self.nolagg:
# vlan devices are not valid parents of laggs
self._NIClist = [nic for nic in self._NIClist if not nic.startswith("lagg")]
self._NIClist = [nic for nic in self._NIClist if not nic.startswith("vlan")]
if self.novlan:
self._NIClist = [nic for nic in self._NIClist if not nic.startswith("vlan")]
else:
# This removes devices that are parents of vlans. We don't
# remove these devices if we are adding a vlan since multiple
# vlan devices may share the same parent.
# The exception to this case is when we are getting the NIC
# list for the GUI, in which case we want the vlan parents
# as they may have a valid config on them.
if not self.include_vlan_parent or self.exclude_unconfigured_vlan_parent:
try:
c.execute("SELECT vlan_pint FROM network_vlan")
except sqlite3.OperationalError:
pass
else:
for interface in c:
if interface[0] in self._NIClist:
self._NIClist.remove(interface[0])
if self.exclude_unconfigured_vlan_parent:
# Add the configured VLAN parents back in
try:
c.execute("SELECT vlan_pint FROM network_vlan "
"INNER JOIN network_interfaces ON "
"network_vlan.vlan_pint=network_interfaces.int_interface "
"WHERE network_interfaces.int_interface IS NOT NULL "
"AND ((network_interfaces.int_ipv4address != '' "
"AND network_interfaces.int_ipv4address IS NOT NULL) "
"OR network_interfaces.int_dhcp = 1)")
except sqlite3.OperationalError:
pass
else:
for interface in c:
if interface[0] not in self._NIClist:
self._NIClist.append(interface[0])
if self.with_alias:
try:
sql = """
SELECT
int_interface
FROM
network_interfaces as ni
INNER JOIN
network_alias as na
ON
na.alias_interface_id = ni.id
"""
c.execute(sql)
except sqlite3.OperationalError:
pass
else:
aliased_nics = [x[0] for x in c]
niclist = copy.deepcopy(self._NIClist)
for interface in niclist:
if interface not in aliased_nics:
self._NIClist.remove(interface)
if self.exclude_configured:
try:
# Exclude any configured interfaces
c.execute("SELECT int_interface FROM network_interfaces")
except sqlite3.OperationalError:
pass
else:
for interface in c:
if interface[0] in self._NIClist:
self._NIClist.remove(interface[0])
if self.nobridge:
self._NIClist = [nic for nic in self._NIClist if not nic.startswith("bridge")]
if self.noepair:
niclist = copy.deepcopy(self._NIClist)
for nic in niclist:
if nic.startswith('epair'):
self._NIClist.remove(nic)
if self.notap:
taplist = copy.deepcopy(self._NIClist)
for nic in taplist:
if nic.startswith('tap'):
self._NIClist.remove(nic)
self.max_choices = len(self._NIClist)
return iter((i, i) for i in self._NIClist)
class IPChoices(NICChoices):
def __init__(
self,
ipv4=True,
ipv6=True,
nolagg=False,
novlan=False,
noloopback=True,
exclude_configured=False,
include_vlan_parent=True
):
super(IPChoices, self).__init__(
nolagg=nolagg,
novlan=novlan,
noloopback=noloopback,
exclude_configured=exclude_configured,
include_vlan_parent=include_vlan_parent
)
self.ipv4 = ipv4
self.ipv6 = ipv6
def __iter__(self):
self._NIClist = list(super(IPChoices, self).__iter__())
from freenasUI.middleware.notifier import notifier
_n = notifier()
carp = False
if not _n.is_freenas():
try:
if _n.failover_status() not in ('SINGLE', 'ERROR'):
carp = True
except sqlite3.OperationalError:
pass
self._IPlist = []
for iface in self._NIClist:
pipe = popen("/sbin/ifconfig %s" % iface[0])
lines = pipe.read().strip().split('\n')
for line in lines:
if carp:
reg = re.search(r' vhid (\d+)', line)
if not reg:
continue
if line.startswith('\tinet6'):
if self.ipv6 is True:
self._IPlist.append(line.split(' ')[1].split('%')[0])
elif line.startswith('\tinet'):
if self.ipv4 is True:
self._IPlist.append(line.split(' ')[1])
pipe.close()
self._IPlist.sort()
if not self._IPlist:
return iter([('0.0.0.0', '0.0.0.0')])
return iter((i, i) for i in self._IPlist)
class TimeZoneChoices:
"""Populate timezone from /usr/share/zoneinfo choices"""
def __init__(self):
pipe = popen('find /usr/share/zoneinfo/ -type f -not -name '
'zone.tab -not -regex \'.*/Etc/GMT.*\'')
self._TimeZoneList = pipe.read().strip().split('\n')
self._TimeZoneList = [x[20:] for x in self._TimeZoneList]
self._TimeZoneList.sort()
self.max_choices = len(self._TimeZoneList)
def __iter__(self):
return iter((i, i) for i in self._TimeZoneList)
v4NetmaskBitList = (
('32', '/32 (255.255.255.255)'),
('31', '/31 (255.255.255.254)'),
('30', '/30 (255.255.255.252)'),
('29', '/29 (255.255.255.248)'),
('28', '/28 (255.255.255.240)'),
('27', '/27 (255.255.255.224)'),
('26', '/26 (255.255.255.192)'),
('25', '/25 (255.255.255.128)'),
('24', '/24 (255.255.255.0)'),
('23', '/23 (255.255.254.0)'),
('22', '/22 (255.255.252.0)'),
('21', '/21 (255.255.248.0)'),
('20', '/20 (255.255.240.0)'),
('19', '/19 (255.255.224.0)'),
('18', '/18 (255.255.192.0)'),
('17', '/17 (255.255.128.0)'),
('16', '/16 (255.255.0.0)'),
('15', '/15 (255.254.0.0)'),
('14', '/14 (255.252.0.0)'),
('13', '/13 (255.248.0.0)'),
('12', '/12 (255.240.0.0)'),
('11', '/11 (255.224.0.0)'),
('10', '/10 (255.192.0.0)'),
('9', '/9 (255.128.0.0)'),
('8', '/8 (255.0.0.0)'),
('7', '/7 (254.0.0.0)'),
('6', '/6 (252.0.0.0)'),
('5', '/5 (248.0.0.0)'),
('4', '/4 (240.0.0.0)'),
('3', '/3 (224.0.0.0)'),
('2', '/2 (192.0.0.0)'),
('1', '/1 (128.0.0.0)'),
)
v6NetmaskBitList = tuple([(str(i), '/' + str(i)) for i in range(0, 132, 4)])
RetentionUnit_Choices = (
('hour', _('Hour(s)')),
('day', _('Day(s)')),
('week', _('Week(s)')),
('month', _('Month(s)')),
('year', _('Year(s)')),
)
RepeatUnit_Choices = (
('daily', _('Everyday')),
('weekly', _('Every selected weekday')),
# ('monthly', _('Every these days of month')),
# ('yearly', _('Every these days of specified months')),
)
ACCESS_MODE = (
('ro', _('Read-only')),
('wo', _('Write-only')),
('rw', _('Read and Write')),
)
ZFS_DEDUP = (
('on', _('On')),
('verify', _('Verify')),
('off', _('Off')),
)
ZFS_DEDUP_INHERIT = (
('inherit', _('Inherit')),
) + ZFS_DEDUP
TASK_INTERVAL = (
(5, _("%(minutes)s minutes") % {'minutes': '5'}),
(10, _("%(minutes)s minutes") % {'minutes': '10'}),
(15, _("%(minutes)s minutes") % {'minutes': '15'}),
(30, _("%(minutes)s minutes") % {'minutes': '30'}),
(60, _("%(hour)s hour") % {'hour': '1'}),
(120, _("%(hours)s hours") % {'hours': '2'}),
(180, _("%(hours)s hours") % {'hours': '3'}),
(240, _("%(hours)s hours") % {'hours': '4'}),
(360, _("%(hours)s hours") % {'hours': '6'}),
(720, _("%(hours)s hours") % {'hours': '12'}),
(1440, _("%(day)s day") % {'day': '1'}),
(10080, _("%(week)s week") % {'week': '1'}),
(20160, _("%(weeks)s weeks") % {'weeks': '2'}),
(40320, _("%(weeks)s weeks") % {'weeks': '4'}),
)
SMART_POWERMODE = (
('never', _("Never - Check the device regardless of its power mode")),
('sleep', _("Sleep - Check the device unless it is in SLEEP mode")),
('standby', _("Standby - Check the device unless it is in SLEEP or STANDBY"
" mode")),
('idle', _("Idle - Check the device unless it is in SLEEP, STANDBY or IDLE"
" mode")),
)
SMART_TEST = (
('L', _('Long Self-Test')),
('S', _('Short Self-Test')),
('C', _('Conveyance Self-Test (ATA only)')),
('O', _('Offline Immediate Test (ATA only)')),
)
SERIAL_SPEED = (
('9600', _('9600')),
('19200', _('19200')),
('38400', _('38400')),
('57600', _('57600')),
('115200', _('115200')),
)
SED_USER = (
('user', _('User')),
('master', _('Master')),
)
class UPSDRIVER_CHOICES(object):
"Populate choices from /usr/local/etc/nut/driver.list"
def __iter__(self):
if os.path.exists("/conf/base/etc/local/nut/driver.list"):
with open('/conf/base/etc/local/nut/driver.list', 'rb') as f:
d = f.read().decode('utf8', 'ignore')
r = io.StringIO()
for line in re.sub(r'[ \t]+', ' ', d, flags=re.M).split('\n'):
r.write(line.strip() + '\n')
r.seek(0)
reader = csv.reader(r, delimiter=' ', quotechar='"')
for row in reader:
if len(row) == 0 or row[0].startswith('#'):
continue
if row[-2] == '#':
last = -3
else:
last = -1
if row[last].find(' (experimental)') != -1:
row[last] = row[last].replace(' (experimental)', '').strip()
for i, field in enumerate(list(row)):
row[i] = field
yield ("$".join([row[last], row[3]]), "%s (%s)" %
(" ".join(row[0:last]), row[last]))
LDAP_SSL_CHOICES = (
('off', _('Off')),
('on', _('SSL')),
('start_tls', _('TLS')),
)
RSYNC_MODE_CHOICES = (
('module', _('Rsync module')),
('ssh', _('Rsync over SSH')),
)
RSYNC_DIRECTION = (
('push', _('Push')),
('pull', _('Pull')),
)
class KBDMAP_CHOICES(object):
"""Populate choices from /usr/share/vt/keymaps/INDEX.keymaps"""
INDEX = "/usr/share/vt/keymaps/INDEX.keymaps"
def __iter__(self):
if not os.path.exists(self.INDEX):
return
with open(self.INDEX, 'rb') as f:
d = f.read().decode('utf8', 'ignore')
_all = re.findall(r'^(?P<name>[^#\s]+?)\.kbd:en:(?P<desc>.+)$', d, re.M)
for name, desc in _all:
yield name, desc
SFTP_LOG_LEVEL = (
('QUIET', _('Quiet')),
('FATAL', _('Fatal')),
('ERROR', _('Error')),
('INFO', _('Info')),
('VERBOSE', _('Verbose')),
('DEBUG', _('Debug')),
('DEBUG2', _('Debug2')),
('DEBUG3', _('Debug3')),
)
SFTP_LOG_FACILITY = (
('DAEMON', _('Daemon')),
('USER', _('User')),
('AUTH', _('Auth')),
('LOCAL0', _('Local 0')),
('LOCAL1', _('Local 1')),
('LOCAL2', _('Local 2')),
('LOCAL3', _('Local 3')),
('LOCAL4', _('Local 4')),
('LOCAL5', _('Local 5')),
('LOCAL6', _('Local 6')),
('LOCAL7', _('Local 7')),
)
DIRECTORY_SERVICE_CHOICES = (
('activedirectory', _('Active Directory')),
('domaincontroller', _('Domain Controller')),
('ldap', _('LDAP')),
('nis', _('NIS')),
)
SYS_LOG_LEVEL = (
('f_emerg', _('Emergency')),
('f_alert', _('Alert')),
('f_crit', _('Critical')),
('f_err', _('Error')),
('f_warning', _('Warning')),
('f_notice', _('Notice')),
('f_info', _('Info')),
('f_debug', _('Debug')),
('f_is_debug', _('Is_Debug')),
)
# on|off|ctrl|[!]data|auth|auth+[!]data
FTP_TLS_POLICY_CHOICES = (
('on', _('on')),
('off', _('off')),
('data', _('data')),
('!data', _('!data')),
('auth', _('auth')),
('ctrl', _('ctrl')),
('ctrl+data', _('ctrl+data')),
('ctrl+!data', _('ctrl+!data')),
('auth+data', _('auth+data')),
('auth+!data', _('auth+!data'))
)
ZFS_RECORDSIZE = (
('512', '512'),
('1K', '1K'),
('2K', '2K'),
('4K', '4K'),
('8K', '8K'),
('16K', '16K'),
('32K', '32K'),
('64K', '64K'),
('128K', '128K'),
('256K', '256K'),
('512K', '512K'),
('1024K', '1024K'),
)
ZFS_VOLBLOCKSIZE = (
('512', '512'),
('1K', '1K'),
('2K', '2K'),
('4K', '4K'),
('8K', '8K'),
('16K', '16K'),
('32K', '32K'),
('64K', '64K'),
('128K', '128K'),
)
JAIL_TEMPLATE_OS_CHOICES = (
('FreeBSD', 'FreeBSD'),
('Linux', 'Linux')
)
JAIL_TEMPLATE_ARCH_CHOICES = (
('x64', 'x64'),
('x86', 'x86')
)
class JAIL_TEMPLATE_CHOICES(object):
def __iter__(self):
from freenasUI.jails.models import JailTemplate
yield ('', '-----')
for jt in JailTemplate.objects.exclude(jt_system=True):
yield (jt.jt_name, jt.jt_name)
REPL_CIPHER = (
('standard', _('Standard')),
('fast', _('Fast')),
('disabled', _('Disabled')),
)
SAMBA4_ROLE_CHOICES = (
# ('auto', 'auto'),
# ('classic', 'classic primary domain controller'),
# ('netbios', 'netbios backup domain controller'),
('dc', 'active directory domain controller'),
# ('sdc', 'active directory secondary domain controller'),
# ('member', 'member server'),
# ('standalone', 'standalone')
)
SAMBA4_DNS_BACKEND_CHOICES = (
('SAMBA_INTERNAL', 'SAMBA_INTERNAL'),
('BIND9_FLATFILE', 'BIND9_FLATFILE'),
('BIND9_DLZ', 'BIND9_DLZ'),
('NONE', 'NONE')
)
SAMBA4_FOREST_LEVEL_CHOICES = (
('2000', '2000'),
('2003', '2003'),
('2008', '2008'),
('2008_R2', '2008_R2'),
('2012', '2012'),
('2012_R2', '2012_R2')
)
SHARE_TYPE_CHOICES = (
('unix', 'UNIX'),
('windows', 'Windows'),
('mac', 'Mac')
)
CASE_SENSITIVITY_CHOICES = (
('sensitive', _('Sensitive')),
('insensitive', _('Insensitive')),
('mixed', _('Mixed'))
)
class SERIAL_CHOICES(object):
def __iter__(self):
from freenasUI.middleware.notifier import notifier
_n = notifier()
if not _n.is_freenas() and _n.failover_hardware() == "ECHOSTREAM":
yield ('0x3f8', '0x3f8')
else:
pipe = popen("/usr/sbin/devinfo -u | "
"grep -A 99999 '^I/O ports:' | "
"sed -En 's/ *([0-9a-fA-Fx]+).*\(uart[0-9]+\)/\\1/p'")
ports = [y for y in pipe.read().strip().strip('\n').split('\n') if y]