mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-28 08:03:36 +00:00
- This is so that the methods will be checked by mypy. This should help identify any incorrect initialization of components. - Remove unused self.repos in GitwebApp. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
44 lines
1.3 KiB
Python
44 lines
1.3 KiB
Python
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
"""FreedomBox app to configure Single Sign On services."""
|
|
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
from plinth import app as app_module
|
|
from plinth.config import DropinConfigs
|
|
from plinth.package import Packages
|
|
|
|
from . import privileged
|
|
|
|
|
|
class SSOApp(app_module.App):
|
|
"""FreedomBox app for single sign on."""
|
|
|
|
app_id = 'sso'
|
|
|
|
_version = 2
|
|
|
|
def __init__(self) -> None:
|
|
"""Create components for the app."""
|
|
super().__init__()
|
|
|
|
info = app_module.Info(app_id=self.app_id, version=self._version,
|
|
is_essential=True,
|
|
depends=['security',
|
|
'apache'], name=_('Single Sign On'))
|
|
self.add(info)
|
|
|
|
packages = Packages('packages-sso', [
|
|
'libapache2-mod-auth-pubtkt', 'openssl', 'python3-openssl', 'flite'
|
|
])
|
|
self.add(packages)
|
|
|
|
dropin_configs = DropinConfigs('dropin-configs-sso', [
|
|
'/etc/apache2/includes/freedombox-single-sign-on.conf',
|
|
])
|
|
self.add(dropin_configs)
|
|
|
|
def setup(self, old_version):
|
|
"""Install and configure the app."""
|
|
super().setup(old_version)
|
|
privileged.create_key_pair()
|