mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-25 08:43:36 +00:00
- Install mod_auth_pubtkt and generate public/private key-pair. - Redirect user to login page if no cookie is presented. - Add check for authenticated user for login page. - Temporarily switched to DSA because of a bug in mod_auth_pubtkt which causes it to accept only DSA and not RSA. Also had to use SHA1 instead of SHA256. - Enabled SSO for Syncthing, Repro and TT-RSS. - Using tokens to authorize by user groups. - Generate keys during first boot.
87 lines
3.0 KiB
Python
87 lines
3.0 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/>.
|
|
#
|
|
"""
|
|
Views for the Single Sign On module of Plinth
|
|
"""
|
|
|
|
import os
|
|
import urllib
|
|
|
|
from plinth import actions
|
|
from plinth.modules import first_boot
|
|
|
|
from django.urls import reverse
|
|
from django.http import HttpResponseRedirect
|
|
from django.views.generic.base import RedirectView
|
|
from django.contrib.auth import REDIRECT_FIELD_NAME
|
|
from django.contrib.auth.decorators import login_required
|
|
from django.contrib.auth.views import (login as auth_login, logout as
|
|
auth_logout)
|
|
|
|
PRIVATE_KEY_FILE_NAME = 'privkey.pem'
|
|
SSO_COOKIE_NAME = 'auth_pubtkt'
|
|
KEYS_DIRECTORY = '/etc/apache2/auth-pubtkt-keys'
|
|
|
|
|
|
def set_ticket_cookie(user, response):
|
|
"""Generate and set a mod_auth_pubtkt as a cookie in the provided
|
|
response.
|
|
"""
|
|
tokens = list(map(lambda g: g.name, user.groups.all()))
|
|
private_key_file = os.path.join(KEYS_DIRECTORY, PRIVATE_KEY_FILE_NAME)
|
|
ticket = actions.superuser_run('auth-pubtkt', [
|
|
'generate-ticket', '--uid', user.username, '--private-key-file',
|
|
private_key_file, '--tokens', ','.join(tokens)
|
|
])
|
|
response.set_cookie(SSO_COOKIE_NAME, urllib.parse.quote(ticket))
|
|
return response
|
|
|
|
|
|
def login(request):
|
|
"""Login to Plinth and set a auth_pubtkt cookie which will be
|
|
used to provide Single Sign On for some other applications
|
|
"""
|
|
response = auth_login(
|
|
request, template_name='login.html', redirect_authenticated_user=True)
|
|
return set_ticket_cookie(
|
|
request.user, response) if request.user.is_authenticated else response
|
|
|
|
|
|
def logout(request, next_page):
|
|
"""Log out of Plinth and remove auth_pubtkt cookie"""
|
|
response = auth_logout(request, next_page=next_page)
|
|
response.delete_cookie(SSO_COOKIE_NAME)
|
|
return response
|
|
|
|
|
|
@login_required
|
|
def refresh(request):
|
|
"""Simulate cookie refresh - redirect logged in user with a new cookie"""
|
|
redirect_url = request.GET.get(REDIRECT_FIELD_NAME, '')
|
|
response = HttpResponseRedirect(redirect_url)
|
|
response.delete_cookie(SSO_COOKIE_NAME)
|
|
return set_ticket_cookie(request.user, response)
|
|
|
|
|
|
class FirstBootView(RedirectView):
|
|
"""Create keys for Apache server during first boot"""
|
|
|
|
def get_redirect_url(self, *args, **kwargs):
|
|
actions.superuser_run('auth-pubtkt', ['create-key-pair'])
|
|
first_boot.mark_step_done('sso_firstboot')
|
|
return reverse(first_boot.next_step())
|