mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
Closes: #2326. There are plans to remove /etc/timezone from Debian (Debian bug: #822733). It has been removed temporarily and that caused failures in FreedomBox. Since we use systemd-timesyncd and timedatectl, use timedatectl to retrieve the currently set timezone value. This eliminates the need to read timezone at a lower level. Tests: - Getting and setting the timezone works. - Removing /etc/timezone and /etc/localtime then visiting the Date & Time app works. After setting the timezone, /etc/localtime file is created as symlink. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
59 lines
1.7 KiB
Python
59 lines
1.7 KiB
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""FreedomBox app for configuring date and time."""
|
|
|
|
import logging
|
|
import subprocess
|
|
|
|
from django.contrib import messages
|
|
from django.utils.translation import gettext as _
|
|
|
|
from plinth.views import AppView
|
|
|
|
from . import privileged
|
|
from .forms import DateTimeForm
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class DateTimeAppView(AppView):
|
|
"""Serve configuration page."""
|
|
|
|
form_class = DateTimeForm
|
|
app_id = 'datetime'
|
|
|
|
def get_initial(self):
|
|
"""Return the values to fill in the form."""
|
|
status = super().get_initial()
|
|
status['time_zone'] = self.get_current_time_zone() or 'none'
|
|
return status
|
|
|
|
@staticmethod
|
|
def get_current_time_zone():
|
|
"""Get current time zone."""
|
|
try:
|
|
process = subprocess.run(
|
|
['timedatectl', 'show', '--property', 'Timezone', '--value'],
|
|
stdout=subprocess.PIPE, check=True)
|
|
return process.stdout.decode().strip()
|
|
except subprocess.CalledProcessError:
|
|
return None
|
|
|
|
def form_valid(self, form):
|
|
"""Change the timezone."""
|
|
old_status = form.initial
|
|
new_status = form.cleaned_data
|
|
|
|
if old_status['time_zone'] != new_status['time_zone'] and \
|
|
new_status['time_zone'] != 'none':
|
|
try:
|
|
privileged.set_timezone(new_status['time_zone'])
|
|
except Exception as exception:
|
|
messages.error(
|
|
self.request,
|
|
_('Error setting time zone: {exception}').format(
|
|
exception=exception))
|
|
else:
|
|
messages.success(self.request, _('Time zone set'))
|
|
|
|
return super().form_valid(form)
|