mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-03-11 09:04:54 +00:00
- Since we are going to be an OpenID Provider, we need to fix the URLs that
other apps will be configured with for authentication. So change now from
/plinth to /freedombox. If done later, it will be harder since all the
configuration files for all dependent apps will need to be updated.
Tests:
- App availability checking works. Request goes to /freedombox URL
- Favicon is served properly and through /favicon.ico URL
- Redirection happens from / to /freedombox directly
- UI is available on /freedombox and on /plinth
- Manual page show /freedombox as the URL in two places
- Static files are successfully served from /freedombox URLs. URLs inside page
start with /freedombox
- backup, bepasty, calibre, config, dynamicdns, ejabberd, featherwiki, gitweb,
ikiwiki, kiwix, miniflux, names, openvpn, shadowsocks, shadowsocksserver,
sharing, shapshot, tiddlywiki, users, wireguard, jsxc, matrixsynapse, first
wizard, storage, samba, tags functional tests work. Backup/restore test for
matrixsynapse fails due to an unrelated bug (server not restarted after
restore).
- Setting the home page works:
- Having /plinth in the home page configuration works. Shows selection
correctly.
- Setting to app works. Shows selection correctly.
- Setting to user home page (sets /freedombox). Shows selection correctly.
- Setting to apache default works. Shows selection correctly.
- Changing back to FreedomBox service works. Shows selection correctly.
- Unit tests work
- Configuration page shows /freedombox in description but not /plinth
- Diagnostics show /freedombox in tests
- Roundcube URL link in email app has /freedombox
- email loads the page /.well-known/autoconfig/mail/config-v1.1.xml correctly
- email app shows /freedombox/apps/roundcube for /roundcube if roundcube is not
installed.
- networks: router configuration page shows URL starting with /freedombox.
- snapshot: Shows URL starting with /freedombox on the app page
- js licenses page uses /freedombox prefix for JSXC.
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
64 lines
2.6 KiB
Python
64 lines
2.6 KiB
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""
|
|
Forms for basic system configuration
|
|
"""
|
|
|
|
from django import forms
|
|
from django.utils.translation import gettext as _
|
|
from django.utils.translation import gettext_lazy
|
|
|
|
from plinth import cfg, frontpage
|
|
from plinth.modules.apache import get_users_with_website
|
|
from plinth.utils import format_lazy
|
|
|
|
from . import home_page_url2scid
|
|
|
|
|
|
def get_homepage_choices():
|
|
"""Return list of drop down choices for home page."""
|
|
shortcuts = frontpage.Shortcut.list(web_apps_only=True)
|
|
shortcut_choices = [(shortcut.component_id, shortcut.name)
|
|
for shortcut in shortcuts if shortcut.is_enabled()]
|
|
uws_choices = \
|
|
[(home_page_url2scid(url),
|
|
format_lazy(gettext_lazy("{user}'s website"), user=user))
|
|
for user, url in get_users_with_website().items()]
|
|
apache_default = ('apache-default', _('Apache Default'))
|
|
freedombox = ('freedombox', _('FreedomBox Service (Plinth)'))
|
|
return [apache_default, freedombox] + uws_choices + shortcut_choices
|
|
|
|
|
|
class ConfigurationForm(forms.Form):
|
|
"""Main system configuration form"""
|
|
|
|
homepage = forms.ChoiceField(
|
|
label=gettext_lazy('Webserver Home Page'), help_text=format_lazy(
|
|
gettext_lazy(
|
|
'Choose the default page that must be served when '
|
|
'someone visits your {box_name} on the web. A typical use '
|
|
'case is to set your blog or wiki as the home page when '
|
|
'someone visits the domain name. Note that once the home '
|
|
'page is set to something other than {box_name} Service '
|
|
'(Plinth), your users must explicitly type /freedombox to '
|
|
'reach {box_name} Service (Plinth).'),
|
|
box_name=gettext_lazy(cfg.box_name)), required=False,
|
|
choices=get_homepage_choices)
|
|
|
|
advanced_mode = forms.BooleanField(
|
|
label=gettext_lazy('Show advanced apps and features'), required=False,
|
|
help_text=gettext_lazy(
|
|
'Show apps and features that require more technical '
|
|
'knowledge.'))
|
|
|
|
logging_mode = forms.ChoiceField(
|
|
label=gettext_lazy('System-wide logging'),
|
|
choices=(('none', gettext_lazy('Disable logging, for privacy')),
|
|
('volatile',
|
|
gettext_lazy('Keep some in memory until a restart, '
|
|
'for performance')),
|
|
('persistent',
|
|
gettext_lazy('Write to disk, useful for debugging'))),
|
|
help_text=gettext_lazy(
|
|
'Logs contain information about who accessed the system and debug '
|
|
'information from various services'))
|