mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-11 08:23:49 +00:00
- ugettext functions will be removed in Django 4.0. Each use emits a warning when running with Django 3.2. Since we have warnings enabled in developer mode, we see quite a few messages because of this. - ugettext is already a simple alias of gettext. So, no regressions are expected. Tests: - Accessing an affected app in UI with Django 3.2 and Django 2.2 works fine. - Using Django 3.2 there are no warnings related to removal of ugettext functions. - Ran regular unit tests. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
41 lines
1.2 KiB
Python
41 lines
1.2 KiB
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""
|
|
Views for the minidlna module
|
|
"""
|
|
import os
|
|
|
|
from django.contrib import messages
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
from plinth.modules import minidlna
|
|
from plinth.views import AppView
|
|
|
|
from .forms import MiniDLNAServerForm
|
|
|
|
|
|
class MiniDLNAAppView(AppView):
|
|
app_id = 'minidlna'
|
|
form_class = MiniDLNAServerForm
|
|
|
|
def get_initial(self):
|
|
"""Initial form value as found in the minidlna.conf"""
|
|
initial = super().get_initial()
|
|
initial.update({'media_dir': minidlna.get_media_dir()})
|
|
|
|
return initial
|
|
|
|
def form_valid(self, form):
|
|
"""Apply changes from the form"""
|
|
old_config = form.initial
|
|
new_config = form.cleaned_data
|
|
|
|
if old_config['media_dir'].strip() != new_config['media_dir']:
|
|
if os.path.isdir(new_config['media_dir']) is False:
|
|
messages.error(self.request,
|
|
_('Specified directory does not exist.'))
|
|
else:
|
|
minidlna.set_media_dir(new_config['media_dir'])
|
|
messages.success(self.request, _('Updated media directory'))
|
|
|
|
return super().form_valid(form)
|