mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-28 08:03:36 +00:00
monkeysphere: Run publish as background task, allow user to cancel. Small fixes to names module: - Remove unused ugettext import. - Change SERVICES to tuple. - If a domain is not available for a service type, return None instead of (translated) "Not Available". - Rename get_services -> get_enabled_services.
53 lines
1.7 KiB
Python
53 lines
1.7 KiB
Python
#
|
|
# This file is part of Plinth.
|
|
#
|
|
# 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/>.
|
|
#
|
|
|
|
"""
|
|
Plinth module for name services
|
|
"""
|
|
|
|
from django.template.response import TemplateResponse
|
|
from django.utils.translation import ugettext as _
|
|
|
|
from . import SERVICES, get_domain_types, get_description
|
|
from . import get_domain, get_services_status
|
|
|
|
|
|
def index(request):
|
|
"""Serve name services page."""
|
|
status = get_status()
|
|
|
|
return TemplateResponse(request, 'names.html',
|
|
{'title': _('Name Services'),
|
|
'status': status})
|
|
|
|
|
|
def get_status():
|
|
"""Get configured services per name."""
|
|
name_services = []
|
|
for domain_type in sorted(get_domain_types()):
|
|
domain = get_domain(domain_type)
|
|
name_services.append({
|
|
'type': get_description(domain_type),
|
|
'name': domain or _('Not Available'),
|
|
'services_enabled': get_services_status(domain_type, domain),
|
|
})
|
|
|
|
return {
|
|
'services': [service[1] for service in SERVICES],
|
|
'name_services': name_services,
|
|
}
|