Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Backport of UI: OIDC provider logo fix into release/1.13.x #20269

Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions changelog/20263.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:bug
ui: Fix OIDC provider logo showing when domain doesn't match
```
27 changes: 13 additions & 14 deletions ui/app/models/role-jwt.js
Original file line number Diff line number Diff line change
@@ -1,31 +1,30 @@
import Model, { attr } from '@ember-data/model';
import { computed } from '@ember/object';
import parseURL from 'core/utils/parse-url';

const DOMAIN_STRINGS = {
github: 'GitHub',
gitlab: 'GitLab',
google: 'Google',
ping: 'Ping',
okta: 'Okta',
auth0: 'Auth0',
'github.com': 'GitHub',
'gitlab.com': 'GitLab',
'google.com': 'Google',
'ping.com': 'Ping',
'okta.com': 'Okta',
'auth0.com': 'Auth0',
};

const PROVIDER_WITH_LOGO = ['GitLab', 'Google', 'Auth0'];

export { DOMAIN_STRINGS, PROVIDER_WITH_LOGO };

export default Model.extend({
authUrl: attr('string'),
export default class RoleJwtModel extends Model {
@attr('string') authUrl;

providerName: computed('authUrl', function () {
get providerName() {
const { hostname } = parseURL(this.authUrl);
const firstMatch = Object.keys(DOMAIN_STRINGS).find((name) => hostname.includes(name));
return DOMAIN_STRINGS[firstMatch] || null;
}),
}

providerButtonComponent: computed('providerName', function () {
get providerButtonComponent() {
const { providerName } = this;
return PROVIDER_WITH_LOGO.includes(providerName) ? `auth-button-${providerName.toLowerCase()}` : null;
}),
});
}
}
21 changes: 15 additions & 6 deletions ui/tests/unit/models/role-jwt-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,26 +24,35 @@ module('Unit | Model | role-jwt', function (hooks) {

test('it provides a providerName for listed known providers', function (assert) {
assert.expect(12);
Object.keys(DOMAIN_STRINGS).forEach((domainPart) => {
Object.keys(DOMAIN_STRINGS).forEach((domain) => {
const model = this.owner.lookup('service:store').createRecord('role-jwt', {
authUrl: `http://provider-${domainPart}.com`,
authUrl: `http://provider-${domain}`,
});

const expectedName = DOMAIN_STRINGS[domainPart];
const expectedName = DOMAIN_STRINGS[domain];
assert.strictEqual(model.providerName, expectedName, `computes providerName: ${expectedName}`);
if (PROVIDER_WITH_LOGO.includes(expectedName)) {
assert.strictEqual(
model.providerButtonComponent,
`auth-button-${domainPart}`,
`computes providerButtonComponent: ${domainPart}`
`auth-button-${expectedName.toLowerCase()}`,
`computes providerButtonComponent: ${domain}`
);
} else {
assert.strictEqual(
model.providerButtonComponent,
null,
`computes providerButtonComponent: ${domainPart}`
`computes providerButtonComponent: ${domain}`
);
}
});
});

test('it does not return provider unless domain matches completely', function (assert) {
assert.expect(2);
const model = this.owner.lookup('service:store').createRecord('role-jwt', {
authUrl: `http://custom-auth0-provider.com`,
});
assert.strictEqual(model.providerName, null, `no providerName for custom URL`);
assert.strictEqual(model.providerButtonComponent, null, 'no providerButtonComponent for custom URL');
});
});