grep -r 'http.Handle(' --no-filename services/ | sed 's/\s\+//'
Download a go compiler, at least version 1.22
If you will modify any .sql
files, download sqlc. It's
probably best to get the latest version, using:
go install github.com/sqlc-dev/sqlc/cmd/sqlc@latest
But to see which version was last used, look at the top of any generated file, e.g. pkg/database/models.go
.
If you will modify style.css
or any .templ
files you need to download templ and tailwind.
Download the correct version of templ using:
go install github.com/a-h/templ/cmd/templ@$(grep -oPm1 'github.com/a-h/templ \K[^ ]*' go.sum)
(It should be the same version as is imported by the then generated go code)
Download tailwind, using npm, your favourite or second-favourite package manager, or:
TAILWIND_VERSION=$(head -n2 services/static/public/style.dist.css | grep -oP 'v\K\S+') # or use latest, it probably won't hurt.
curl -Lo tailwindcss https://github.com/tailwindlabs/tailwindcss/releases/download/v$TAILWIND_VERSION/tailwindcss-linux-x64
chmod +x tailwindcss
and then move it to a directory in your $PATH
or set $TAILWIND_PATH
to it's location.
Start a postgresql database, using e.g.:
docker run -d --name logout-db -p 5432:5432 -e POSTGRES_PASSWORD=logout -e POSTGRES_DB=logout -e POSTGRES_USER=logout postgres:16-alpine3.19
...or add a user and database to an existing instance:
CREATE USER logout WITH PASSWORD 'logout';
CREATE DATABASE logout WITH OWNER logout;
Copy example.env
to .env
and change anything if needed.
The best way (objectively, of course) to load them is by installing direnv.
If you don't want to do that, you'll have to figure it out on your own. The
application will not load the file .env
.
go run ./cmd/dev
This also updates generated files and they're tracked by the git repository so you better.
Only needed if you want to test the "Login with KTH" button.
Start a vault dev server (tested with version v1.16.2):
vault server -dev
In another terminal, set it up with the following:
export VAULT_ADDR=http://127.0.0.1:8200
vault auth enable userpass
vault auth tune -listing-visibility=unauth userpass
vault write auth/userpass/users/turetek password=turetek
vault write identity/entity name=turetek
vault write identity/entity-alias \
name=turetek \
canonical_id=$(vault read -field=id identity/entity/name/turetek) \
mount_accessor=$(vault auth list -detailed -format json | jq -r '.["userpass/"].accessor')
vault write identity/oidc/scope/profile template=$(echo '{"username":{{identity.entity.name}}}' | base64 -)
vault write identity/oidc/provider/default scopes_supported="profile"
vault write identity/oidc/client/logout redirect_uris="http://localhost:7000/oidc/kth/callback" assignments=allow_all
echo -n "
KTH_ISSUER_URL=$(vault read -field=issuer identity/oidc/provider/default)
KTH_CLIENT_ID=$(vault read -field=client_id identity/oidc/client/logout)
KTH_CLIENT_SECRET=$(vault read -field=client_secret identity/oidc/client/logout)
KTH_RP_ORIGIN=http://localhost:7000
"
Then set the env variables printed at the end. Then you can log in using
turetek
as username and password when you've registered turetek
in the
system. Note that it doesn't mock all the claims we get from kth.
{
"affiliation": [
"member",
"student"
],
"appid": "bad94f41-8323-4c26-8c59-fb6d6b8384db",
"apptype": "Confidential",
"aud": "bad94f41-8323-4c26-8c59-fb6d6b8384db",
"auth_time": 1717086052,
"authmethod": "urn:oasis:names:tc:SAML:2.0:ac:classes:PasswordProtectedTransport",
"email": "[email protected]",
"exp": 1717090261,
"iat": 1717086661,
"iss": "https://login.ug.kth.se/adfs",
"kthid": "u1jwkms6",
"nbf": 1717086661,
"scp": "openid",
"sid": "S-1-1-11-1111111111-1111111111-1111111111-1111111",
"sub": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=",
"unique_name": [
"Ture Teknokrat",
"UG\\turetek"
],
"upn": "[email protected]",
"username": "turetek",
"ver": "1.0"
}
Cookie SameSite
mode
It may seem like most cookies could and should have the SameSite
attribute
set to Strict
, but when the user is redirected back from the KTH login page
to /oidc/kth/callback
that redirects the user further within this system and
then cookies must be sent, but from some local testing it seems they're not
since the user was (indirectly) redirected from KTH. Therefore they're set to
Lax
.
The schema is defined by the migrations in ./pkg/database/migrations/
. A new
one can be created using go run ./cmd/manage goose create some_fancy_name sql
.