Skip to main content

Generate login URL's for unstandardized SSO systems.

Project description

https://badge.fury.io/py/django-url-sso.png https://secure.travis-ci.org/visualspace/django-url-sso.png?branch=master https://pypip.in/d/django-url-sso/badge.png

Generate login URL’s for unstandardized SSO systems.

What is it?

We all know it is better for single sign-on systems to make use of properly standardized, tested and known secure protocols. That it is bad practise to put login tokens in HTTP query parameters.

However, sometimes things just aren’t as you wish they would be. Bad API’s are out there and are numerous. And sometimes, we cannot avoid having to talk to them. That’s what this module is for:

It allows configurable plugins to generate login URL’s and use a RequestContextProcessor to make them available in templates.

Status

Well tested and stable, though documentation is still a work in progress.

Compatibility

Tested to work with Django 1.4, 1.5 and 1.6 and Python 2.6 as well as 2.7.

Requirements

Please refer to requirements.txt for an updated list of required packages.

Settings

There are two types of settigns in this package: common settings across plugins and plugin specifc settings. Currently the only common setting is URL_SSO_PLUGINS which lists the enabled plugins. Example:

URL_SSO_PLUGINS = [
    'url_sso.plugins.intershift.intershift_plugin',
    'url_sso.plugins.iprova.iprova_plugin'
]

Also, be sure to enable the RequestContextProcessor if you want the URL’s to be available in your template context (and you do):

TEMPLATE_CONTEXT_PROCESSORS = [
    ...
    'url_sso.context_processors.login_urls'
    ...
]

Plugins

Currently, SSO for two systems are implemented:

Intershift

Plugin name: url_sso.plugins.intershift.intershift_plugin

For each configured site in sites (see below), this plugin makes a URL available by the following name:

`INTERSHIFT_<SITENAME>_SSO_URL`
Settings

Example settings:

URL_SSO_INTERSHIFT = {
    # Secret key as specified by Intershift
    'secret': '12345678',
    # Sites enabled for SSO
    'sites': {
        'site1': {
            # Users never have access to site1
            'has_access': lambda request: False,
            'url': 'https://customer1.intershift.nl/site1/cust/singlesignon.asp',
            'has_access': lambda request: request.user.groups.filter(name='some_group').exists()
        },
        'site2': {
            # Users always have acces to site2
            'has_access': lambda request: True,
            'url': 'https://customer1.intershift.nl/site2/cust/singlesignon.asp',
        },
        'site3': {
            # No explicit access rules; same result as site2
            'url': 'https://customer1.intershift.nl/site3/cust/singlesignon.asp',
        },
    },
    # Key expiration in seconds, use one day here
    'key_expiration': 86400
}

Infoland iProva

Plugin name: url_sso.plugins.iprova.iprova_plugin

This plugin makes the following login URL’s available, depending on which services are configured in the services setting below:

  • IPROVA_MANAGEMENT_SSO_URL

  • IPROVA_IDOCUMENT_SSO_URL

  • IPROVA_IPORTAL_SSO_URL

  • IPROVA_ITASK_SSO_URL

Settings

Example settings:

URL_SSO_IPROVA = iprova_settings = {
    # Service root URL
    'root_url': 'http://intranet.organisation.com/',

    # Services available for SSO
    'services': ('management', 'idocument', 'iportal', 'itask'),

    # Key expiration in seconds, use one hour here
    'key_expiration': 3600,

    'application_id': 'SharepointIntranet_Production',

    'has_access': lambda request, service: request.user.groups.filter(name='some_group').exists()
}

Tests

Tests for pull req’s and the master branch are automatically run through Travis CI.

License

This application is released under the GNU Affero General Public License version 3.

Project details


Release history Release notifications | RSS feed

This version

0.9

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-url-sso-0.9.tar.gz (37.8 kB view hashes)

Uploaded Source

Built Distribution

django_url_sso-0.9-py2.py3-none-any.whl (43.7 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page