Add OAuth2/OpenID Connect authorization server

Implement a full OAuth2 2.0 and OpenID Connect 1.0 authorization
server with support for authorization code flow (with PKCE),
refresh token rotation, device authorization grant, dynamic
client registration, token introspection, and token revocation.

Includes database schema, coredata layer, service logic, HTTP
handlers, OIDC discovery endpoint, and JWKS publishing.

Signed-off-by: Bryan Frimin <bryan@getprobo.com>
This commit is contained in:
Bryan Frimin
2026-03-30 14:49:18 +02:00
parent e84094e62c
commit 11770b4058
155 changed files with 14483 additions and 223 deletions

View File

@@ -54,6 +54,8 @@ type Client struct {
userID gid.GID
profileID gid.GID
organizationID gid.GID
email string
password string
}
func NewClient(t testing.TB, role TestRole) *Client {
@@ -107,6 +109,9 @@ func (c *Client) setupTestUser() {
password := "TestPassword123!"
fullName := fmt.Sprintf("Test User %s", uniqueID)
c.email = email
c.password = password
// Sign up
c.userID = c.signUp(email, password, fullName)
@@ -491,6 +496,35 @@ func (c *Client) assumeOrganizationSession() {
require.NoError(c.T, err, "assumeOrganizationSession mutation failed")
}
// NewClientWithNewSession creates a new Client that signs in as the same
// identity but with a fresh HTTP session (new cookie jar). This is useful for
// testing session-scoped authorization.
func NewClientWithNewSession(t testing.TB, from *Client) *Client {
t.Helper()
jar, err := cookiejar.New(nil)
require.NoError(t, err, "cannot create cookie jar")
client := &Client{
T: t,
baseURL: from.baseURL,
mailpitBaseURL: from.mailpitBaseURL,
role: from.role,
userID: from.userID,
organizationID: from.organizationID,
email: from.email,
password: from.password,
httpClient: &http.Client{
Jar: jar,
Timeout: 30 * time.Second,
},
}
client.signIn(client.email, client.password)
return client
}
func (c *Client) GetUserID() gid.GID {
return c.userID
}