Integrating EdgeDB Auth's OAuth provider
Along with using the built-in UI, you can also create your own UI that calls to your own web application backend.
UI considerations
Similar to how the built-in UI works, you can query the database configuration to discover which providers are configured and dynamically build the UI.
select cfg::Config.extensions[is ext::auth::AuthConfig].providers {
name,
[is ext::auth::OAuthProviderConfig].display_name,
};
The name
is a unique string that identifies the Identity Provider. OAuth
providers also have a display_name
that you can use as a label for links or
buttons. In later steps, you’ll be providing this name
as the provider
in various endpoints.
Example implementation
We will demonstrate the various steps below by building a NodeJS HTTP server in a single file that we will use to simulate a typical web application.
We are in the process of publishing helper libraries that you can use with popular languages and web frameworks. The details below show the inner workings of how data is exchanged with the Auth extension from a web app using HTTP. You can use this as a guide to integrate with your application written in any language that can send and receive HTTP requests.
We secure authentication tokens and other sensitive data by using PKCE (Proof Key of Code Exchange).
Start the PKCE flow
Your application server creates a 32-byte Base64 URL-encoded string (which will
be 43 bytes after encoding), called the verifier
. You need to store this
value for the duration of the flow. One way to accomplish this bit of state is
to use an HttpOnly cookie when the browser makes a request to the server for
this value, which you can then use to retrieve it from the cookie store at the
end of the flow. Take this verifier
string, hash it with SHA256, and then
base64url encode the resulting string. This new string is called the
challenge
.
Since =
is not a URL-safe character, if your Base64-URL encoding
function adds padding, you should remove the padding before hashing the
verifier
to derive the challenge
or when providing the verifier
or challenge
in your requests.
If you are familiar with PKCE, you will notice some differences from how RFC 7636 defines PKCE. Our authentication flow is not an OAuth flow, but rather a strict server-to-server flow with Proof Key of Code Exchange added for additional security to avoid leaking the authentication token. Here are some differences between PKCE as defined in RFC 7636 and our implementation:
-
We do not support the
plain
value forcode_challenge_method
, and therefore do not read that value if provided in requests. -
Our parameters omit the
code_
prefix, however we do supportcode_challenge
andcode_verifier
as aliases, preferringchallenge
andverifier
if present.
import http from "node:http";
import { URL } from "node:url";
import crypto from "node:crypto";
/**
* You can get this value by running `edgedb instance credentials`.
* Value should be:
* `${protocol}://${host}:${port}/branch/${branch}/ext/auth/
*/
const EDGEDB_AUTH_BASE_URL = process.env.EDGEDB_AUTH_BASE_URL;
const SERVER_PORT = 3000;
/**
* Generate a random Base64 url-encoded string, and derive a "challenge"
* string from that string to use as proof that the request for a token
* later is made from the same user agent that made the original request
*
* @returns {Object} The verifier and challenge strings
*/
const generatePKCE = () => {
const verifier = crypto.randomBytes(32).toString("base64url");
const challenge = crypto
.createHash("sha256")
.update(verifier)
.digest("base64url");
return { verifier, challenge };
};
For EdgeDB versions before 5.0, the value for EDGEDB_AUTH_BASE_URL
in the above snippet should have the form:
${protocol}://${host}:${port}/db/${database}/ext/auth/
Redirect users to Identity Provider
Next, we implement a route at /auth/authorize
that the application should
link to when signing in with a particular Identity Provider. We will redirect
the end user’s browser to the Identity Provider with the proper setup.
const server = http.createServer(async (req, res) => {
const requestUrl = getRequestUrl(req);
switch (requestUrl.pathname) {
case "/auth/authorize": {
await handleAuthorize(req, res);
break;
}
case "/auth/callback": {
await handleCallback(req, res);
break;
}
default: {
res.writeHead(404);
res.end("Not found");
break;
}
}
});
/**
* Redirects OAuth requests to EdgeDB Auth OAuth authorize redirect
* with the PKCE challenge, and saves PKCE verifier in an HttpOnly
* cookie for later retrieval.
*
* @param {Request} req
* @param {Response} res
*/
const handleAuthorize = async (req, res) => {
const requestUrl = getRequestUrl(req);
const provider = requestUrl.searchParams.get("provider");
if (!provider) {
res.status = 400;
res.end("Must provider a 'provider' value in search parameters");
return;
}
const pkce = generatePKCE();
const redirectUrl = new URL("authorize", EDGEDB_AUTH_BASE_URL);
redirectUrl.searchParams.set("provider", provider);
redirectUrl.searchParams.set("challenge", pkce.challenge);
redirectUrl.searchParams.set(
"redirect_to",
`http://localhost:${SERVER_PORT}/auth/callback`
);
redirectUrl.searchParams.set(
"redirect_to_on_signup",
`http://localhost:${SERVER_PORT}/auth/callback?isSignUp=true`
);
res.writeHead(302, {
"Set-Cookie": `edgedb-pkce-verifier=${pkce.verifier}; HttpOnly; Path=/; Secure; SameSite=Strict`,
Location: redirectUrl.href,
});
res.end();
};
Retrieve auth_token
At the very end of the flow, the EdgeDB server will redirect the user’s browser
to the redirect_to
address with a single query parameter: code
. This
route should be a server route that has access to the verifier
. You then
take that code
and look up the verifier
in the edgedb-pkce-verifier
cookie, and make a request to the EdgeDB Auth extension to exchange these two
pieces of data for an auth_token
.
/**
* Handles the PKCE callback and exchanges the `code` and `verifier
* for an auth_token, setting the auth_token as an HttpOnly cookie.
*
* @param {Request} req
* @param {Response} res
*/
const handleCallback = async (req, res) => {
const requestUrl = getRequestUrl(req);
const code = requestUrl.searchParams.get("code");
if (!code) {
const error = requestUrl.searchParams.get("error");
res.status = 400;
res.end(
`OAuth callback is missing 'code'. OAuth provider responded with error: ${error}`
);
return;
}
const cookies = req.headers.cookie?.split("; ");
const verifier = cookies
?.find((cookie) => cookie.startsWith("edgedb-pkce-verifier="))
?.split("=")[1];
if (!verifier) {
res.status = 400;
res.end(
`Could not find 'verifier' in the cookie store. Is this the same user agent/browser that started the authorization flow?`
);
return;
}
const codeExchangeUrl = new URL("token", EDGEDB_AUTH_BASE_URL);
codeExchangeUrl.searchParams.set("code", code);
codeExchangeUrl.searchParams.set("verifier", verifier);
const codeExchangeResponse = await fetch(codeExchangeUrl.href, {
method: "GET",
});
if (!codeExchangeResponse.ok) {
const text = await codeExchangeResponse.text();
res.status = 400;
res.end(`Error from the auth server: ${text}`);
return;
}
const { auth_token } = await codeExchangeResponse.json();
res.writeHead(204, {
"Set-Cookie": `edgedb-auth-token=${auth_token}; HttpOnly; Path=/; Secure; SameSite=Strict`,
});
res.end();
};
Creating a User object
For some applications, you may want to create a custom User
type in the
default module to attach application-specific information. You can tie this to
an ext::auth::Identity
by using the auth_token
in our
ext::auth::client_token
global and inserting your User
object with a
link to the Identity
.
For this example, we’ll assume you have a one-to-one relationship between
User
objects and ext::auth::Identity
objects. In your own
application, you may instead decide to have a one-to-many relationship.
Given this User
type:
type User {
email: str;
name: str;
required identity: ext::auth::Identity {
constraint exclusive;
};
}
You can update the callback function like this to create a new User
object
when the callback succeeds. Recall that in our handleAuthorize
route
handler, we added a separate callback route for when the extension adds a new
Identity which sets a search parameter on the URL to isSignUp=true
:
const { auth_token } = await codeExchangeResponse.json();
const isSignUp = requestUrl.searchParams.get("isSignUp");
if (isSignUp === "true") {
const authedClient = client.withGlobals({
"ext::auth::client_token": auth_token,
});
await authedClient.query(`
insert User {
identity := (global ext::auth::ClientTokenIdentity)
};
`);
}
res.writeHead(204, {
"Set-Cookie": `edgedb-auth-token=${auth_token}; HttpOnly; Path=/; Secure; SameSite=Strict`,
});
Making authenticated requests to the OAuth resource server
Along with the auth_token
which represents the authenticated user’s
identity within your system, for OAuth providers, we also return a
provider_token
(and optionally a provider_refresh_token
) that you can
use to make requests to the OAuth provider’s resource server on behalf of the
user.
Here is an example of getting the user’s profile information from Google
utilizing OpenID Connect and the provider_token
:
/**
* Get the user's profile information from Google
*/
async function getUserProfile(providerToken) {
const response = await fetch(
"https://accounts.google.com/.well-known/openid-configuration"
);
const discoveryDocument = await response.json();
const response = await fetch(discoveryDocument.userinfo_endpoint, {
headers: {
Authorization: `Bearer ${providerToken}`,
Accept: "application/json",
},
});
return await response.json();
}
Then in our callback handler, we can use the provider_token
to get the
user’s profile information and save it into our User
object when we create
it:
const { auth_token } = await codeExchangeResponse.json();
const { auth_token, provider_token } = await codeExchangeResponse.json();
const isSignUp = requestUrl.searchParams.get("isSignUp");
if (isSignUp === "true") {
const profile = await getUserProfile(provider_token);
const authedClient = client.withGlobals({
"ext::auth::client_token": auth_token,
});
await authedClient.query(
`
with
email := <optional str>$email,
name := <optional str>$name,
insert User {
email := email,
name := name,
identity := (global ext::auth::ClientTokenIdentity)
};
`);
`,
{ email: profile.email, name: profile.name }
);
}
res.writeHead(204, {
"Set-Cookie": `edgedb-auth-token=${auth_token}; HttpOnly; Path=/; Secure; SameSite=Strict`,
});