Brendan Abolivier 55affb7e95 Typo | 8 anni fa | |
---|---|---|
auth | 8 anni fa | |
service1 | 8 anni fa | |
README.md | 8 anni fa |
Decentral Authentication Service
DAS is a proof of concept of a digital workspace as used in school. Most of them use Apereo's CAS (sometimes known as Jasig), which handles authentification in a centralised way.
There's one downside to this: it requires a JEE server to run, now always easy to configure, sometimes ressources-hungry, and slows each authentication to a service by requiring additional requests between both the service and the CAS server, and the CAS server and the client.
That's where Macaroons come in the game. Macaroons are an easy way to implement decentralised authentication, and we'll use them to get rid of the CAS server, and allow an user to authenticate to a service without having to talk that often with the authentication service.
In most school (and organisations, in general), students have access to a digital workspace, which really is a set of services directed to them (lectures' PDFs, mails client, courses planning, etc). In most cases, all these services are designed and built by different companies, in different ways, and with different authentication processes. To authenticate them, schools usually use a Central Authentication Service (or CAS) which will interact with a directory server (usually LDAP) and will verify the identity of an user. This is all explained in the CAS protocol.
At the time this file was written, the repository contains the following directories:
auth
is a small authentication server written in Node.js. In our very simple case, it will only ask for an username, but we can think of improving it to interact with a LDAP server. Once the user authenticated itself, it server will place a Macaroon in the user's browser, with a status caveat, depending on the route used:
/
, they will have the "student" status./teacher
, they will have the "teacher" status.service1
is a PHP service which authenticate an user based on their Macaroons, and only allow a teacher to access it.Please keep in mind that, although this might not a very impressive use of Macaroons, it is still a work in progress.