Sunil Mohan Adapa b576a77c3d
app: Refactor all apps to use the Info component
- Remove the need to pass all the individual information elements to the AppView
  separately. This eliminates many issues with elements that were mistakenly not
  sent to AppView. Also reduces a lot of code duplication.

- Create App classes for power and sso for consistency.

Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
2020-02-16 18:22:01 -05:00

91 lines
3.0 KiB
Python

#
# This file is part of FreedomBox.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
"""
Views for BIND module.
"""
from django.contrib import messages
from django.utils.translation import ugettext_lazy as _
from plinth import actions
from plinth.views import AppView
from plinth.modules import bind, names
from . import get_config, port_forwarding_info
from .forms import BindForm
class BindAppView(AppView): # pylint: disable=too-many-ancestors
"""A specialized view for configuring Bind."""
app_id = 'bind'
show_status_block = True
form_class = BindForm
template_name = 'bind.html'
port_forwarding_info = port_forwarding_info
def get_context_data(self, *args, **kwargs):
"""
Get/append information for domains bind is configured to respond for
and additional names from the names module
"""
context = super().get_context_data(**kwargs)
served_domains = bind.get_served_domains()
context['domains_table'] = []
for key, val in served_domains.items():
if key == 'localhost.':
continue
context['domains_table'].append({
'type': 'Domain Name',
'domain_name': key[:-1:],
'serving': 'Yes',
'ip_address': ', '.join(val),
})
for item in names.components.DomainName.list():
context['domains_table'].append({
'type': item.domain_type.display_name,
'domain_name': item.name,
'serving': '-',
'ip_address': ''
})
return context
def get_initial(self):
"""Return the values to fill in the form."""
initial = super().get_initial()
initial.update(get_config())
return initial
def form_valid(self, form):
"""Change the configurations of Bind service."""
data = form.cleaned_data
old_config = get_config()
if old_config['forwarders'] != data['forwarders'] \
or old_config['enable_dnssec'] != data['enable_dnssec']:
dnssec_setting = 'enable' if data['enable_dnssec'] else 'disable'
actions.superuser_run('bind', [
'configure', '--forwarders', data['forwarders'], '--dnssec',
dnssec_setting
])
messages.success(self.request, _('Configuration updated'))
return super().form_valid(form)