Sunil Mohan Adapa 9368504da5
*.py: Use SPDX license identifier
Reviewed-by: Veiko Aasa <veiko17@disroot.org>
2020-02-19 14:38:55 +02:00

51 lines
1.7 KiB
Python

# SPDX-License-Identifier: AGPL-3.0-or-later
"""
Forms for configuring date and time
"""
import logging
import subprocess
from django import forms
from django.utils.translation import ugettext_lazy as _
from plinth.forms import AppForm
logger = logging.getLogger(__name__)
class DateTimeForm(AppForm):
"""Date/time configuration form."""
time_zone = forms.ChoiceField(
label=_('Time Zone'),
help_text=_('Set your time zone to get accurate timestamps. '
'This will set the system-wide time zone.'))
def __init__(self, *args, **kwargs):
"""Initialize the date/time form."""
forms.Form.__init__(self, *args, **kwargs)
time_zone_options = [(zone, zone) for zone in self.get_time_zones()]
# Show not-set option only when time zone is not set
current_time_zone = self.initial.get('time_zone')
if current_time_zone == 'none':
time_zone_options.insert(0, ('none', _('-- no time zone set --')))
elif (current_time_zone, current_time_zone) not in time_zone_options:
time_zone_options.insert(0, (current_time_zone, current_time_zone))
self.fields['time_zone'].choices = time_zone_options
@staticmethod
def get_time_zones():
"""Return the list time zones."""
command = ['timedatectl', 'list-timezones']
try:
process = subprocess.run(command, stdout=subprocess.PIPE,
check=True)
except subprocess.CalledProcessError as exception:
logger.exception('Error getting time zones: %s', exception)
return []
output = process.stdout.decode()
return output.splitlines()