Skip to main content

Basic Auth Identity Policy for Morepath

Project description

more.basicauth: HTTP Basic Authentication integration for Morepath

Overview

This is a Morepath authentication extension for HTTP Basic Authentication. It was originally part of Morepath, but since basic auth is almost always what you don’t want we decide to move it to a separate extension.

Some Pros and Cons:

Alternative authentication extensions for morepath are:

  • more.jwtauth: A token based authentication sytem using JSON Web Token (JWT).

  • more.isdangerous: A cookie based identity policy using isdangerous.

Introduction

Basic authentication is special in a number of ways:

  • The HTTP response status that triggers basic auth is Unauthorized (401), not the default Forbidden (403). This needs to be sent back to the browser each time login fails, so that the browser asks the user for a username and a password.

  • The username and password combination is sent to the server by the browser automatically; there is no need to set some type of cookie on the response. Therefore remember_identity does nothing.

  • With basic auth, there is no universal way for a web application to trigger a log out. Therefore forget_identity does nothing either.

To trigger a 401 status when time Morepath raises a 403 status, we can use an exception view, something like this:

from webob.exc import HTTPForbidden

@App.view(model=HTTPForbidden)
def make_unauthorized(self, request):
    @request.after
    def set_status_code(response):
        response.status_code = 401
    return "Unauthorized"

For the login code, as remember_identity is not an option, you can just check the password:

# check whether user has password, using password hash and database
if not user_has_password(username, password):
    return "Sorry, login failed" # or something more fancy

Note that user_has_password stands in for whatever method you use to check a user’s password; it’s not part of Morepath.

Usage

Here a full example for a basic setup:

import morepath
from more.basicauth import BasicAuthIdentityPolicy
from webob.exc import HTTPForbidden


class App(morepath.App):
    pass


@App.identity_policy()
def get_identity_policy():
    return BasicAuthIdentityPolicy()


@App.verify_identity()
def verify_identity(identity):
    # Do the password validation.
    return user_has_password(identity.username, identity.password)


@App.view(model=HTTPForbidden)
def make_unauthorized(self, request):
    @request.after
    def set_status_code(response):
        response.status_code = 401

    return "Unauthorized"

The login form could look like:

from webob.exc import HTTPProxyAuthenticationRequired


class Login(object):
    pass


@App.path(model=Login, path='login')
def get_login():
    return Login()


@App.view(model=Login, request_method='POST')
def login(self, request):
    username = request.POST['username']
    password = request.POST['password']

    # Do the password validation.
    if not user_has_password(username, password):
        raise HTTPProxyAuthenticationRequired('Invalid username/password')

    return "You're logged in."  # or something more fancy

Requirements

  • Python (2.7, 3.3, 3.4, 3.5)

  • morepath (>= 0.14)

CHANGES

0.2 (2016-04-25)

  • Upgrade to Morepath 0.14.

  • Some minor improvements to the buildout setup workflow.

0.1 (2016-04-16)

  • Extract Basic Auth from Morepath.

  • Return NO_IDENTITY instead of None, if user cannot identify.

  • Replace class ‘app’ with ‘App’ in tests.

  • Add a login test.

  • Enhance documentation.

Project details


Download files

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

Source Distribution

more.basicauth-0.2.tar.gz (9.7 kB view details)

Uploaded Source

Built Distribution

more.basicauth-0.2-py2.py3-none-any.whl (9.4 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file more.basicauth-0.2.tar.gz.

File metadata

File hashes

Hashes for more.basicauth-0.2.tar.gz
Algorithm Hash digest
SHA256 20f325ce4475deeafd42262b7a902fd8cfa4ff6461dd01802af7f716850b906d
MD5 fd609f5a9ffcab2b2824d2d4efc415a9
BLAKE2b-256 c0c7fb6197d01553a2b455f8717be45ac183746ad818a950637d995045c423b4

See more details on using hashes here.

Provenance

File details

Details for the file more.basicauth-0.2-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for more.basicauth-0.2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 9a3d42059f7a566303b60c16e137b4bd69093115a2cbeb18716f1ae1d6963bc1
MD5 d301c2567ec1885ad342f214145d5546
BLAKE2b-256 bbc0793cde6b26b939cdde8e98c10a755415b8949f93521d3f2264ef75e76259

See more details on using hashes here.

Provenance

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