- Dec 17, 2019
-
-
ale authored
Session handling no longer depends on gorilla/sessions.
-
ale authored
Drop gorilla/sessions in favor of using gorilla/securecookie directly (we use a single cookie anyway). Since securecookie already has its own expiration timestamp, we can drop some stuff from httputil as well.
-
ale authored
-
- Dec 16, 2019
-
-
ale authored
There is no need for the complex gorilla/sessions machinery for what is basically a single cookie, so we switch to using gorilla/securecookie directly.
-
ale authored
-
ale authored
There is no point in using the complex gorilla/sessions machinery for storing a simple long-term cookie, just use gorilla/securecookie directly.
-
- Dec 15, 2019
-
-
ale authored
-
ale authored
-
ale authored
If we don't, they will trigger the login handler and invalidate the current session (if any), which prevents the user from being able to log in.
-
ale authored
-
ale authored
Being consistent across runs avoids generating spurious git changes.
-
ale authored
-
ale authored
-
ale authored
Fix a bug where global variables were missing.
-
ale authored
Remove the build-time dependency on Python, the sri_map is now generated via a small Go script.
-
ale authored
The login handler is now a simpler, standalone http.Handler wrapper. The separation between the SSO application and the login handler is now fairly complete. The login handler no longer forces the user to a specific workflow via session cookies, but it works on a request-by-request basis instead, which makes the "back" button works as expected (allowing the user to bail out of a broken 2FA process, for example). Session handling has been simplified as well: there is a single session for authentication and login state, which should remove the opportunity for session synchronization errors.
-
- Oct 24, 2019
-
-
ale authored
-
- Aug 18, 2019
-
-
ale authored
-
- Aug 17, 2019
- Aug 01, 2019
- Jul 03, 2019
-
-
ale authored
-
- Jun 30, 2019
-
-
ale authored
-
- Jun 28, 2019
-
-
godog authored
- Jun 24, 2019
-
-
blallo authored
- Jun 22, 2019
- Jun 21, 2019
-
-
ale authored
This allows eventual future usage of 307 redirects and us accepting POST requests without having to decode the request body.
-