Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion components/server/src/github/github-auth-provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,13 @@ export class GitHubAuthProvider extends GenericAuthProvider {
data: { id, login, avatar_url, name, company, created_at },
headers,
} = currentUser;
const publicAvatarURL = new URL(avatar_url);
if (publicAvatarURL.host === "private-avatars.githubusercontent.com") {
// github has recently been rolling out private JWT-signed avatar URLs which expire after a short time
// we need to use the public avatar URL instead so that the avatar is displayed correctly and fits into our database column (which is capped at 255 chars)
publicAvatarURL.host = "avatars.githubusercontent.com";
publicAvatarURL.searchParams.delete("jwt");
}

// https://developer.github.com/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/
// e.g. X-OAuth-Scopes: repo, user
Expand All @@ -125,7 +132,7 @@ export class GitHubAuthProvider extends GenericAuthProvider {
authUser: {
authId: String(id),
authName: login,
avatarUrl: avatar_url,
avatarUrl: publicAvatarURL.toString(),
name,
primaryEmail: filterPrimaryEmail(userEmails),
company,
Expand Down
Loading