mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-28 08:03:36 +00:00
Certificate can be setup for a single domain at a time in Mumble. So, allow the user to choose the domain purely for this propose even though Mumble can work with multiple domains. Tell Let's Encrypt to work with this domain. Tests: - Without Mumble installed, change the domain name. Notice the mumble related certificate events are ignored. - Install Mumble, a TLS domain is automatically selected. Certificate is setup for that domain. - Ensure at least two domains are setup in the system. See the list in the Mumble app page. Choose a non-default domain. Domain should change and cert should be setup for that domain. - Go to config app and change the domain. Mumble domain should get set to a different domain and cert should get updated. - Install mumble without these changes. Apply the changes and start FreedomBox. Mumble app should get upgraded and certificate should get setup for a domain. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
42 lines
1.3 KiB
Python
42 lines
1.3 KiB
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
from django.contrib import messages
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from plinth import actions
|
|
from plinth.modules import mumble
|
|
from plinth.modules.mumble.forms import MumbleForm
|
|
from plinth.views import AppView
|
|
|
|
|
|
class MumbleAppView(AppView):
|
|
app_id = 'mumble'
|
|
form_class = MumbleForm
|
|
|
|
def get_initial(self):
|
|
"""Return the values to fill in the form."""
|
|
initial = super().get_initial()
|
|
initial['domain'] = mumble.get_domain()
|
|
return initial
|
|
|
|
def form_valid(self, form):
|
|
"""Apply new superuser password if it exists"""
|
|
new_config = form.cleaned_data
|
|
|
|
if mumble.get_domain() != new_config['domain']:
|
|
mumble.set_domain(new_config['domain'])
|
|
mumble.app.get_component('letsencrypt-mumble').setup_certificates()
|
|
messages.success(self.request, _('Configuration updated'))
|
|
|
|
password = new_config.get('super_user_password')
|
|
if password:
|
|
actions.run_as_user(
|
|
'mumble',
|
|
['create-password'],
|
|
input=password.encode(),
|
|
become_user="mumble-server",
|
|
)
|
|
messages.success(self.request,
|
|
_('SuperUser password successfully updated.'))
|
|
|
|
return super().form_valid(form)
|