oauth

module
v1.0.9 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 15, 2021 License: GPL-3.0

README

Atomic Auth Provider

Go

The oauth.Controller interface provides simple user, application, and audience management for api servers.

This library does not implment this interface, which is outside the scope of its definition. Other services like (libatomic/atomic)[https://github.com/libatomic/atomic] provide examples this interface in the backend definition.

Auth Server

This server implements a simple http auth server that attempts to remain simple and yet implement many of the common flows using the oauth.Controller interface. You can use this template to create a more custom provider as needed.

This library is meant to be consumed by other services and does not provide an independent functionality.

Integrating the server

Integration begins with instantiating a api/server.Server object.

This object implements the http.Hander interface, provides a gorilla/mux.Router as well as a standalone http.Server. These options provide considerable flexibility. If you need more, simply fork, hack, repeat.

Integrators will need to implement the pkg/oauth.Controller interface.

The api/server.Server implements the pkg/oauth.Authorizer interface which can be used to validate incoming bearer tokens on http.Request objects.

OAuth 2.0 flow support

This library supports client_credentials, authorization_code, and refresh_token grants. The parameters are documented in the api/swagger.yaml spefification.

The api/server.Server object can be passed a mux/sessions.Store option for alternate session cookie storage for browser based flows. The default store is mux/sessions.CookieStore.

AuthCode storage

AuthCodes require semi-persistence between the /authorize call and the /token call. The default store is the in-memory cache store provided by pkg/codestore/memstore.

Directories

Path Synopsis
api
server
Package server provides an http oauth REST API
Package server provides an http oauth REST API
pkg
codestore/memstore
Package memstore provides an in-memory auth.CodeStore implementation
Package memstore provides an in-memory auth.CodeStore implementation
oauth
Package oauth provides the base auth interfaces Package oauth provides the base auth interfaces Package oauth provides the base auth interfaces
Package oauth provides the base auth interfaces Package oauth provides the base auth interfaces Package oauth provides the base auth interfaces
sessions/cookiestore
Package cookiestore provides a cookie based session storage
Package cookiestore provides a cookie based session storage

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL