OpenID Provider framework for sanic
Project description
It’s a work-in-progress, Alpha stage I would say. If anyone finds this useful / wants to use it, drop an issue I’d be more than happy to fix it up so its actually helpful to someone other than myself.
Last time I checked it passed around 82 / 93 of the OpenID Connect Provider Certification tests that appear when you tick webfinger, dynamic info discovery, dynamic client registration and select code response type.
It’s pretty usable for the authorization code flow. Still needs a fair amount of re-architecting and cleaning up but I’m trying to make it so you can plug it into various backends like DynamoDB/Redis for token/client storage.
Docs and examples will be coming soon.
Preconditions
The package expects sanic_jinja2 and sanic_session to be in use and configured.
Testing
As said above it passes most of the OpenID tests I’ve ran against it. Below are the ones I haven’t passed yet
Signature + Encryption
Haven’t figured out why the userinfo enc/sig doesnt work yet.
OP-IDToken-SigEnc
OP-UserInfo-SigEnc
OP-request_uri-SigEnc
Claims
Haven’t got around to this bit yet
OP-claims-acr-essential
OP-claims-acr-voluntary
OP-claims-acr=1
Popup
Doesnt display in a popup box
OP-display-popup
Misc Request Parameters
Haven’t dealt with this yet.
OP-Req-acr_values
Key Rotation
Need some methods to rotate keys
OP-Rotation-OP-Enc
OP-Rotation-OP-Sig
OP-Rotation-RP-Enc
OP-Rotation-RP-Sig
Key creation
RSA Key
openssl genrsa -nodes -out rsa.pem 4096
ECDSA Key
openssl ecparam -name prime256v1 -genkey -noout -out ec.pem
openssl ec -in ec.pem -pubout -out ec.pub
OpenID Connect Node Example
app.js
const express = require('express')
const session = require('express-session');
const OICStrategy = require('passport-openid-connect').Strategy;
const app = express()
const passport = require('passport');
const port = 3000
app.use(session({
secret: 'words',
resave: true,
saveUninitialized: true
}));
app.use(passport.initialize());
app.use(passport.session());
const oic = new OICStrategy({
"issuerHost": "http://9765fb31.ngrok.io",
"client_id": "kbyuFDidLLm280LIwVFiazOqjO3ty8KH",
"client_secret": "60Op4HFM0I8ajz0WdiStAbziZ-VFQttXuxixHHs2R7r7-CW8GR79l-mmLqMhc-Sa",
"redirect_uri": "http://127.0.0.1:3000/callback",
"scope": "openid email profile"
});
passport.use(oic);
passport.serializeUser(OICStrategy.serializeUser);
passport.deserializeUser(OICStrategy.deserializeUser);
app.get('/login', passport.authenticate('passport-openid-connect', {"successReturnToOrRedirect": "/"}))
app.get('/callback', passport.authenticate('passport-openid-connect', {"callback": true, "successReturnToOrRedirect": "/"}))
app.get('/', (req, res) => {
console.log(req.user)
res.json({
"hello": "world",
"user": req.user
})
})
app.listen(port, () => console.log(`Example OpenID Connect app listening on port ${port}!`))
package.json
{
"name": "openidtest",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.16.4",
"express-session": "^1.15.6",
"passport": "^0.4.0",
"passport-openid-connect": "^0.1.0"
}
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file sanic_openid_connect_provider-0.3.2.tar.gz
.
File metadata
- Download URL: sanic_openid_connect_provider-0.3.2.tar.gz
- Upload date:
- Size: 38.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 337a0879b0e2722d2dbc94f1158d5603070f1c9135c8af39822210816a4afe0e |
|
MD5 | c424151a0c39b515f21f0b484270c55d |
|
BLAKE2b-256 | 5fa5b5ae476b1c8b671f73ba18cc63bb12d0c15eafa661e9a291e0f5b7768f85 |
Provenance
File details
Details for the file sanic_openid_connect_provider-0.3.2-py3-none-any.whl
.
File metadata
- Download URL: sanic_openid_connect_provider-0.3.2-py3-none-any.whl
- Upload date:
- Size: 39.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dd05e15d2d8148c233e8dd914d1b187e9b626f98664192a31f2d4c7fc87fd96d |
|
MD5 | 69e9283ee30788308d0cf280a9ee5b46 |
|
BLAKE2b-256 | 085aebed1598d6c52cfcb5beb131a3e529370f0148fc26a2581a4791f58feb55 |