Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Understanding the use of /saml2/metadata #346

Open
lucrem78 opened this issue Oct 4, 2022 · 6 comments
Open

Understanding the use of /saml2/metadata #346

lucrem78 opened this issue Oct 4, 2022 · 6 comments
Labels
Documentation Issues that document features and specific configuration/use cases question

Comments

@lucrem78
Copy link

lucrem78 commented Oct 4, 2022

Hello,
I'm manage to integrate SAML authentication in my Django 3.2 application using the package Djangosaml2 and Pysaml2 with Azure as IdP provider.

In Azure I created a SAML application with these url :
my entityid : https://company.website.com/
assertion consumer service : https://company.website.com/saml/acs/

this is my login and logout redirection url : https://login.microsoftonline.com/***-***-***6c/saml2
my Azure identifier : https://sts.windows.net/***-***-***/ present in my remote metadata.

With this configuration my authentication works very well, I can login through https://company.website.com/saml/login/ and logout with https://company.website.com/saml/logout/

SAML_CONFIG = {
  # full path to the xmlsec1 binary programm
  'xmlsec_binary': '/usr/bin/xmlsec1',

  # your entity id, usually your subdomain plus the url to the metadata view
  'entityid': 'https://company.website.com/',

  # directory with attribute mapping
  'attribute_map_dir': os.path.join(BASE_DIR, 'attribute-maps'),

  # this block states what services we provide
  'service': {
      # we are just a lonely SP
      'sp' : {
          'name': 'SP',
          'name_id_format': saml2.saml.NAMEID_FORMAT_EMAILADDRESS,
          # Enable AllowCreate in NameIDPolicy.
          'name_id_format_allow_create': False,

          # For Okta add signed logout requests. Enable this:
          # "logout_requests_signed": True,

          'endpoints': {
              # url and binding to the assetion consumer service view
              # do not change the binding or service name
              'assertion_consumer_service': [
                  ('https://company.website.com/saml/acs/',
                   saml2.BINDING_HTTP_REDIRECT),
                  ('https://company.website.com/saml/acs/',
                   saml2.BINDING_HTTP_POST),
               ],
              # url and binding to the single logout service view
              # do not change the binding or service name
              'single_logout_service': [
                  ('https://company.website.com/saml/ls/', saml2.BINDING_HTTP_REDIRECT),
               ],
           },

             # attributes that this project need to identify a user
             'required_attributes': ['UserName'],
             # attributes that may be useful to have but not required
             'optional_attributes': ['Email'],

             'want_response_signed': False,
             'authn_requests_signed': False,
             'logout_requests_signed': False,
             # Indicates that Authentication Responses to this SP must
             # be signed. If set to True, the SP will not consume
             # any SAML Responses that are not signed.
             'want_assertions_signed': True,

             'only_use_keys_in_metadata': True,
             'force_authn': False,

             # When set to true, the SP will consume unsolicited SAML
             # Responses, i.e. SAML Responses for which it has not sent
             # a respective SAML Authentication Request.
             'allow_unsolicited': True,

          },
      },

  # where the remote metadata is stored, local, remote or mdq server.
  # One metadatastore or many ...
  'metadata': {
      'local': [os.path.join(BASE_DIR, 'remote_company.xml')],
      },

  # how long is our metadata valid
  'valid_for': 24 * 10,

  # set to 1 to output debugging information
  'debug': 1,

  }

But what I don't understand is what the use of the metadata present in my url https://company.website.com/saml/metatdata
and this url https://company.website.com/saml/ls/ ?
In the doc it's says that : you need to send the entity id and the metadata of this new SP to the IdP administrators so they can add it to their list of trusted services.

If someone can explain it to me that would be very helpfull. Thanks in advance

@peppelinux
Copy link
Member

To enable a sp to request an authentication to an idp the RP have to save the idp metadata in its metadata storie (you have configured a local folder, so download the idp metadata and Place It in that folder)

Then the idp have to save the RP metadata

Once you've done this and if both metadata are valid and also their urls reachable over internet you'll be able to start your First authentication

Welcome to the saml2 world

@lucrem78
Copy link
Author

lucrem78 commented Oct 5, 2022

thank you for the explanations, and I take the opportunity to ask you a question, you see I added the groups in the SAML response and my question is there a way to fetch this groups and after authentication of the user, the user get the group attribute to it automatically in django database. If you any idea that will point me in the right direction. Thanks.

@peppelinux
Copy link
Member

you can inherit class AssertionConsumerServiceView and overload this method

def customize_session(self, user, session_info: dict):

then you just have to point to your class in your project urls.py
https://github.com/IdentityPython/djangosaml2/blob/master/tests/testprofiles/urls.py

related to
https://github.com/IdentityPython/djangosaml2/blob/master/djangosaml2/urls.py

@peppelinux
Copy link
Member

feel free to push your contribution in the documentation with a PR to help other developers to get a better understanding of the internal API

@peppelinux peppelinux added Documentation Issues that document features and specific configuration/use cases question labels Oct 5, 2022
@lucrem78
Copy link
Author

lucrem78 commented Oct 5, 2022

Sorry, I'm sure you explained it well but I don't follow, do you have a concrete example?

@peppelinux
Copy link
Member

In the current documentation we may have a section related to your use case and how you implemented it, few lines of text that points to the inheritance of the method customize_session

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Documentation Issues that document features and specific configuration/use cases question
Projects
None yet
Development

No branches or pull requests

2 participants