Coverage for src/postorius/auth/utils.py : 100%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
# -*- coding: utf-8 -*- # Copyright (C) 1998-2019 by the Free Software Foundation, Inc. # # This file is part of Postorius. # # Postorius is free software: you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free # Software Foundation, either version 3 of the License, or (at your option) # any later version. # # Postorius 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 General Public License for # more details. # # You should have received a copy of the GNU General Public License along with # Postorius. If not, see <http://www.gnu.org/licenses/>.
Authentication and authorization-related utilities. """
"""Checks if a user is in a MailingList roster.
:param user: User to check access permissions for. :type user: django.contrib.auth.model.User :param mailing_list: MailingList to check permissions for. :type mailing_list: postorius.models.List :param roster: Access permissions required. :type roster: str """ user=user, verified=True).values_list("email", flat=True)) [member.email for member in getattr(mailing_list, roster)] )
"""Update user's access permissions of a MailingList.
:param user: The user to check permissions for. :type user: django.contrib.auth.model.User :param mlist: MailingList to check permissions for. :type mlist: postorius.models.List """ user, mlist, "owners") user, mlist, "moderators")
"""Update user's access permissions for a domain.
:param user: The user to check permissions for. :type user: django.contrib.auth.model.User :param domain: Domain to check permissions for. :type domain: postorius.models.Domain """ # TODO: This is very slow as it involves first iterating over every domain # owner and then each of their addresses. Create an API in Core to # facilitate this. user=user, verified=True).values_list("email", flat=True)) |