Skip to content
This repository has been archived by the owner on Apr 13, 2023. It is now read-only.

Commit

Permalink
fix: only allow scopes to be returned iff it matches resourceType (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
rsmayda committed Sep 8, 2022
1 parent 440d1aa commit 18b059e
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 1 deletion.
10 changes: 10 additions & 0 deletions src/smartHandler.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -429,6 +429,16 @@ describe('verifyAccessToken', () => {
{ ...baseAccessNoScopes, scp: 'system/Patient.write' },
true,
],
[
'patientUserSystem_specificRead_search',
{ accessToken: 'fake', operation: 'search-type', resourceType: 'Observation' },
{
...baseAccessNoScopes,
scp: 'user/Patient.read system/Patient.read patient/Patient.read',
...patientFhirUser,
},
false,
],
];

const authZConfig = baseAuthZConfig();
Expand Down
40 changes: 40 additions & 0 deletions src/smartScopeHelper.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -396,6 +396,46 @@ describe('filterOutUnusableScope', () => {
).toEqual(['system/*.write']);
});

test('filter out all system scope out in type-search use case when resource type does not match scopes', () => {
const clonedScopeRule = emptyScopeRule();
clonedScopeRule.system.read = ['search-type'];
clonedScopeRule.system.write = ['create'];
expect(
filterOutUnusableScope(
['system/DocumentReference.read', 'system/Patient.read', 'system/Practitioner.write'],
clonedScopeRule,
'search-type',
false,
'Practitioner',
),
).toEqual([]);
});
test('filter out all user scope out in type-search use case when resource type does not match scopes', () => {
const clonedScopeRule = emptyScopeRule();
clonedScopeRule.user.read = ['search-type'];
expect(
filterOutUnusableScope(
['user/DocumentReference.read', 'user/Patient.read'],
clonedScopeRule,
'search-type',
false,
'Practitioner',
),
).toEqual([]);
});
test('filter out all patient scope out in type-search use case when resource type does not match scopes', () => {
const clonedScopeRule = emptyScopeRule();
clonedScopeRule.user.read = ['search-type'];
expect(
filterOutUnusableScope(
['patient/DocumentReference.read', 'patient/Patient.read'],
clonedScopeRule,
'search-type',
false,
'Practitioner',
),
).toEqual([]);
});
test('do not filter patient scope out in type-search use case', () => {
const clonedScopeRule = emptyScopeRule();
clonedScopeRule.system.read = ['search-type'];
Expand Down
15 changes: 14 additions & 1 deletion src/smartScopeHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ export function filterOutUnusableScope(
patientContext?: string,
fhirUser?: string,
): string[] {
return scopes.filter(
const filteredScopes: string[] = scopes.filter(
(scope: string) =>
((patientContext && scope.startsWith('patient/')) ||
(fhirUser && scope.startsWith('user/')) ||
Expand All @@ -171,4 +171,17 @@ export function filterOutUnusableScope(
bulkDataAuth,
),
);

// We should only return the scopes iff there is at least 1 valid scope for the given resourceType
if (
reqOperation === 'search-type' &&
!filteredScopes.some((scope: string) => {
const smartScope = convertScopeToSmartScope(scope);
return smartScope.resourceType === '*' || smartScope.resourceType === reqResourceType;
})
) {
return [];
}

return filteredScopes;
}

0 comments on commit 18b059e

Please sign in to comment.