Merge pull request #25552 from AvaliaSystems/fix-25551

Fixes issues with the Atlassian auth provider #25551
This commit is contained in:
Patrik Oldsberg
2024-07-11 13:42:08 +02:00
committed by GitHub
10 changed files with 66 additions and 12 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-auth-backend-module-atlassian-provider': patch
---
Fix several issues with the Atlassian auth provider (type definition, profile url, profile transformation, scopes)
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-auth-node': patch
---
Fix issues with Atlassian OAuth provider: retrieve the email and photo that were not in arrays but rather in single props.
@@ -0,0 +1,32 @@
/*
* Copyright 2024 The Backstage Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import Strategy from 'passport-atlassian-oauth2';
describe('Strategy', () => {
it('should be an instance of', () => {
const strategy = new Strategy(
{
authorizationURL: 'https://auth.atlassian.com/authorize',
tokenURL: 'https://auth.atlassian.com/oauth/token',
clientID: 'my-client-id',
clientSecret: 'my-client-secret',
scope: ['offline_access', 'read:jira-work', 'read:jira-user'],
},
() => {},
);
expect((strategy as any).name).toBe('atlassian');
});
});
@@ -20,14 +20,14 @@ import {
PassportOAuthDoneCallback,
PassportProfile,
} from '@backstage/plugin-auth-node';
import { Strategy as AtlassianStrategy } from 'passport-atlassian-oauth2';
import AtlassianStrategy from 'passport-atlassian-oauth2';
/** @public */
export const atlassianAuthenticator = createOAuthAuthenticator({
defaultProfileTransform:
PassportOAuthAuthenticatorHelper.defaultProfileTransform,
scopes: {
required: ['offline_access', 'read:jira-work', 'read:jira-user'],
required: ['offline_access', 'read:me', 'read:jira-work', 'read:jira-user'],
},
initialize({ callbackUrl, config }) {
const clientId = config.getString('clientId');
@@ -49,7 +49,8 @@ export const atlassianAuthenticator = createOAuthAuthenticator({
baseURL: baseUrl,
authorizationURL: `${baseUrl}/authorize`,
tokenURL: `${baseUrl}/oauth/token`,
profileURL: `${baseUrl}/api/v4/user`,
profileURL: 'https://api.atlassian.com/me',
scope: [], // the Atlassian strategy requires a scope, but Backstage passes the right set of scopes when calling OAuth2Strategy.prototype.authenticate
},
(
accessToken: string,
@@ -13,13 +13,11 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* The atlassian-provider backend module for the auth plugin.
*
* @packageDocumentation
*/
export { atlassianAuthenticator } from './authenticator';
export { authModuleAtlassianProvider as default } from './module';
export { atlassianSignInResolvers } from './resolvers';
@@ -64,10 +64,12 @@ describe('authModuleAtlassianProvider', () => {
expect(startUrl.pathname).toBe('/authorize');
expect(Object.fromEntries(startUrl.searchParams)).toEqual({
response_type: 'code',
audience: 'api.atlassian.com',
client_id: 'my-client-id',
prompt: 'consent',
redirect_uri: `http://localhost:${server.port()}/api/auth/atlassian/handler/frame`,
state: expect.any(String),
scope: 'offline_access read:jira-work read:jira-user',
scope: 'offline_access read:me read:jira-work read:jira-user',
});
expect(decodeOAuthState(startUrl.searchParams.get('state')!)).toEqual({
@@ -92,10 +94,7 @@ describe('authModuleAtlassianProvider', () => {
development: {
clientId: 'my-client-id',
clientSecret: 'my-client-secret',
additionalScopes: [
'read:filter:jira',
'read:jira-work', // already required
],
additionalScopes: 'read:filter:jira read:jira-work', // 2nd is already required
},
},
},
@@ -123,11 +122,14 @@ describe('authModuleAtlassianProvider', () => {
expect(startUrl.origin).toBe('https://auth.atlassian.com');
expect(startUrl.pathname).toBe('/authorize');
expect(Object.fromEntries(startUrl.searchParams)).toEqual({
audience: 'api.atlassian.com',
response_type: 'code',
client_id: 'my-client-id',
prompt: 'consent',
redirect_uri: `http://localhost:${server.port()}/api/auth/atlassian/handler/frame`,
state: expect.any(String),
scope: 'offline_access read:jira-work read:jira-user read:filter:jira',
scope:
'offline_access read:me read:jira-work read:jira-user read:filter:jira',
});
expect(decodeOAuthState(startUrl.searchParams.get('state')!)).toEqual({
@@ -18,8 +18,9 @@ declare module 'passport-atlassian-oauth2' {
import { Request } from 'express';
import { StrategyCreated } from 'passport';
export class Strategy {
export default class Strategy {
constructor(options: any, verify: any);
name?: string;
authenticate(this: StrategyCreated<this>, req: Request, options?: any): any;
}
}
+2
View File
@@ -552,6 +552,8 @@ export type PassportOAuthResult = {
// @public (undocumented)
export type PassportProfile = Profile & {
avatarUrl?: string;
email?: string;
photo?: string;
};
// @public
@@ -40,6 +40,9 @@ export class PassportHelpers {
if (profile.emails && profile.emails.length > 0) {
const [firstEmail] = profile.emails;
email = firstEmail.value;
} else if (profile.email) {
// This is the case for Atlassian
email = profile.email;
}
let picture: string | undefined = undefined;
@@ -48,6 +51,9 @@ export class PassportHelpers {
} else if (profile.photos && profile.photos.length > 0) {
const [firstPhoto] = profile.photos;
picture = firstPhoto.value;
} else if (profile.photo) {
// This is the case for Atlassian
picture = profile.photo;
}
let displayName: string | undefined =
+2
View File
@@ -19,6 +19,8 @@ import { Profile } from 'passport';
/** @public */
export type PassportProfile = Profile & {
avatarUrl?: string;
email?: string;
photo?: string;
};
/** @public */