This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2018-11-16 08:10:35 +00:00
|
|
|
"""passbook saml_idp Models"""
|
|
|
|
|
|
|
|
from django.db import models
|
|
|
|
|
|
|
|
from passbook.core.models import Application
|
|
|
|
from passbook.lib.utils.reflection import class_to_path
|
|
|
|
from passbook.saml_idp.base import Processor
|
|
|
|
|
|
|
|
|
2018-11-16 10:41:14 +00:00
|
|
|
class SAMLApplication(Application):
|
2018-11-16 08:10:35 +00:00
|
|
|
"""Model to save information about a Remote SAML Endpoint"""
|
|
|
|
|
|
|
|
acs_url = models.URLField()
|
|
|
|
processor_path = models.CharField(max_length=255, choices=[])
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super().__init__(*args, **kwargs)
|
|
|
|
processors = [(class_to_path(x), x.__name__) for x in Processor.__subclasses__()]
|
|
|
|
self._meta.get_field('processor_path').choices = processors
|
|
|
|
|
|
|
|
def __str__(self):
|
2018-11-16 10:41:14 +00:00
|
|
|
return "SAMLApplication %s (processor=%s)" % (self.name, self.processor_path)
|
2018-11-16 12:08:37 +00:00
|
|
|
|
|
|
|
def user_is_authorized(self):
|
|
|
|
raise NotImplementedError()
|