-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Storage Browser Default Auth #13866
Merged
ashika112
merged 15 commits into
aws-amplify:storage-browser/integrity
from
ashika112:feat/sb-default-auth
Oct 18, 2024
Merged
Storage Browser Default Auth #13866
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
61ebc51
first draft poc
ashika112 a834fcc
upadtes
ashika112 337068b
add listPaths API
ashika112 9d209e1
update new file structure
ashika112 537275c
fix types
ashika112 631dd7f
refactor types and utils
ashika112 ee5dceb
update tests
ashika112 70882a7
fix test
ashika112 6fdf40a
Merge branch 'storage-browser/integrity' into feat/sb-default-auth
ashika112 19468f2
fix bundle size test
ashika112 9cbc71d
update the listLocation handler
ashika112 beb1e2d
rename util
ashika112 4a7ed81
update Path type
ashika112 b5f7500
Merge branch 'storage-browser/integrity' of github.com:aws-amplify/am…
ashika112 4a063c7
fix missed type
ashika112 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
125 changes: 125 additions & 0 deletions
125
...ges/storage/__tests__/internals/amplifyAuthAdapter/createAmplifyAuthConfigAdapter.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
import { Amplify, fetchAuthSession } from '@aws-amplify/core'; | ||
|
||
import { resolveLocationsForCurrentSession } from '../../../src/internals/amplifyAuthConfigAdapter/resolveLocationsForCurrentSession'; | ||
import { createAmplifyAuthConfigAdapter } from '../../../src/internals'; | ||
|
||
jest.mock('@aws-amplify/core', () => ({ | ||
ConsoleLogger: jest.fn(), | ||
Amplify: { | ||
getConfig: jest.fn(), | ||
Auth: { | ||
getConfig: jest.fn(), | ||
fetchAuthSession: jest.fn(), | ||
}, | ||
}, | ||
fetchAuthSession: jest.fn(), | ||
})); | ||
jest.mock( | ||
'../../../src/internals/amplifyAuthConfigAdapter/resolveLocationsForCurrentSession', | ||
); | ||
|
||
const credentials = { | ||
accessKeyId: 'accessKeyId', | ||
sessionToken: 'sessionToken', | ||
secretAccessKey: 'secretAccessKey', | ||
}; | ||
const identityId = 'identityId'; | ||
|
||
const mockGetConfig = jest.mocked(Amplify.getConfig); | ||
const mockFetchAuthSession = fetchAuthSession as jest.Mock; | ||
const mockResolveLocationsFromCurrentSession = | ||
resolveLocationsForCurrentSession as jest.Mock; | ||
|
||
describe('createAmplifyAuthConfigAdapter', () => { | ||
beforeEach(() => { | ||
jest.clearAllMocks(); | ||
}); | ||
|
||
mockGetConfig.mockReturnValue({ | ||
Storage: { | ||
S3: { | ||
bucket: 'bucket1', | ||
region: 'region1', | ||
buckets: { | ||
'bucket-1': { | ||
bucketName: 'bucket-1', | ||
region: 'region1', | ||
paths: {}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}); | ||
mockFetchAuthSession.mockResolvedValue({ | ||
credentials, | ||
identityId, | ||
tokens: { | ||
accessToken: { payload: {} }, | ||
}, | ||
}); | ||
|
||
it('should return an AuthConfigAdapter with listLocations function', async () => { | ||
const adapter = createAmplifyAuthConfigAdapter(); | ||
expect(adapter).toHaveProperty('listLocations'); | ||
const { listLocations } = adapter; | ||
await listLocations(); | ||
expect(mockFetchAuthSession).toHaveBeenCalled(); | ||
}); | ||
|
||
it('should return empty locations when buckets are not defined', async () => { | ||
mockGetConfig.mockReturnValue({ Storage: { S3: { buckets: undefined } } }); | ||
|
||
const adapter = createAmplifyAuthConfigAdapter(); | ||
const result = await adapter.listLocations(); | ||
|
||
expect(result).toEqual({ locations: [] }); | ||
}); | ||
|
||
it('should generate locations correctly when buckets are defined', async () => { | ||
const mockBuckets = { | ||
bucket1: { | ||
bucketName: 'bucket1', | ||
region: 'region1', | ||
paths: { | ||
'/path1': { | ||
entityidentity: ['read', 'write'], | ||
groupsadmin: ['read'], | ||
}, | ||
}, | ||
}, | ||
}; | ||
|
||
mockGetConfig.mockReturnValue({ | ||
Storage: { S3: { buckets: mockBuckets } }, | ||
}); | ||
mockResolveLocationsFromCurrentSession.mockReturnValue([ | ||
{ | ||
type: 'PREFIX', | ||
permission: ['read', 'write'], | ||
scope: { | ||
bucketName: 'bucket1', | ||
path: '/path1', | ||
}, | ||
}, | ||
]); | ||
|
||
const adapter = createAmplifyAuthConfigAdapter(); | ||
const result = await adapter.listLocations(); | ||
|
||
expect(result).toEqual({ | ||
locations: [ | ||
{ | ||
type: 'PREFIX', | ||
permission: ['read', 'write'], | ||
scope: { | ||
bucketName: 'bucket1', | ||
path: '/path1', | ||
}, | ||
}, | ||
], | ||
}); | ||
}); | ||
}); |
144 changes: 144 additions & 0 deletions
144
.../storage/__tests__/internals/amplifyAuthAdapter/resolveLocationsForCurrentSession.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,144 @@ | ||
import { resolveLocationsForCurrentSession } from '../../../src/internals/amplifyAuthConfigAdapter/resolveLocationsForCurrentSession'; | ||
import { BucketInfo } from '../../../src/providers/s3/types/options'; | ||
|
||
describe('resolveLocationsForCurrentSession', () => { | ||
const mockBuckets: Record<string, BucketInfo> = { | ||
bucket1: { | ||
bucketName: 'bucket1', | ||
region: 'region1', | ||
paths: { | ||
'path1/*': { | ||
guest: ['get', 'list'], | ||
authenticated: ['get', 'list', 'write'], | ||
}, | ||
'path2/*': { | ||
groupsauditor: ['get', 'list'], | ||
groupsadmin: ['get', 'list', 'write', 'delete'], | ||
}, | ||
// eslint-disable-next-line no-template-curly-in-string | ||
'profile-pictures/${cognito-identity.amazonaws.com:sub}/*': { | ||
entityidentity: ['get', 'list', 'write', 'delete'], | ||
}, | ||
}, | ||
}, | ||
bucket2: { | ||
bucketName: 'bucket2', | ||
region: 'region1', | ||
paths: { | ||
'path3/*': { | ||
guest: ['read'], | ||
}, | ||
}, | ||
}, | ||
}; | ||
|
||
it('should generate locations correctly when tokens are true', () => { | ||
const result = resolveLocationsForCurrentSession({ | ||
buckets: mockBuckets, | ||
isAuthenticated: true, | ||
identityId: '12345', | ||
userGroup: 'admin', | ||
}); | ||
|
||
expect(result).toEqual([ | ||
{ | ||
type: 'PREFIX', | ||
permission: ['get', 'list', 'write'], | ||
bucket: 'bucket1', | ||
prefix: 'path1/*', | ||
}, | ||
{ | ||
type: 'PREFIX', | ||
permission: ['get', 'list', 'write', 'delete'], | ||
bucket: 'bucket1', | ||
prefix: 'path2/*', | ||
}, | ||
{ | ||
type: 'PREFIX', | ||
permission: ['get', 'list', 'write', 'delete'], | ||
bucket: 'bucket1', | ||
prefix: 'profile-pictures/12345/*', | ||
}, | ||
]); | ||
}); | ||
|
||
it('should generate locations correctly when tokens are true & bad userGroup', () => { | ||
const result = resolveLocationsForCurrentSession({ | ||
buckets: mockBuckets, | ||
isAuthenticated: true, | ||
identityId: '12345', | ||
userGroup: 'editor', | ||
}); | ||
|
||
expect(result).toEqual([ | ||
{ | ||
type: 'PREFIX', | ||
permission: ['get', 'list', 'write'], | ||
bucket: 'bucket1', | ||
prefix: 'path1/*', | ||
}, | ||
{ | ||
type: 'PREFIX', | ||
permission: ['get', 'list', 'write', 'delete'], | ||
bucket: 'bucket1', | ||
prefix: 'profile-pictures/12345/*', | ||
}, | ||
]); | ||
}); | ||
|
||
it('should continue to next bucket when paths are not defined', () => { | ||
const result = resolveLocationsForCurrentSession({ | ||
buckets: { | ||
bucket1: { | ||
bucketName: 'bucket1', | ||
region: 'region1', | ||
paths: undefined, | ||
}, | ||
bucket2: { | ||
bucketName: 'bucket1', | ||
region: 'region1', | ||
paths: { | ||
'path1/*': { | ||
guest: ['get', 'list'], | ||
authenticated: ['get', 'list', 'write'], | ||
}, | ||
}, | ||
}, | ||
}, | ||
isAuthenticated: true, | ||
identityId: '12345', | ||
userGroup: 'admin', | ||
}); | ||
|
||
expect(result).toEqual([ | ||
{ | ||
type: 'PREFIX', | ||
permission: ['get', 'list', 'write'], | ||
bucket: 'bucket1', | ||
prefix: 'path1/*', | ||
}, | ||
]); | ||
}); | ||
|
||
it('should generate locations correctly when tokens are false', () => { | ||
const result = resolveLocationsForCurrentSession({ | ||
buckets: mockBuckets, | ||
isAuthenticated: false, | ||
}); | ||
|
||
expect(result).toEqual([ | ||
{ | ||
type: 'PREFIX', | ||
permission: ['get', 'list'], | ||
bucket: 'bucket1', | ||
prefix: 'path1/*', | ||
}, | ||
{ | ||
type: 'PREFIX', | ||
permission: ['read'], | ||
bucket: 'bucket2', | ||
prefix: 'path3/*', | ||
}, | ||
]); | ||
}); | ||
}); |
16 changes: 16 additions & 0 deletions
16
packages/storage/src/internals/amplifyAuthConfigAdapter/createAmplifyAuthConfigAdapter.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
import { ListPaths } from '../types/credentials'; | ||
|
||
import { createAmplifyListLocationsHandler } from './createAmplifyListLocationsHandler'; | ||
|
||
export interface AuthConfigAdapter { | ||
listLocations: ListPaths; | ||
} | ||
|
||
export const createAmplifyAuthConfigAdapter = (): AuthConfigAdapter => { | ||
calebpollman marked this conversation as resolved.
Show resolved
Hide resolved
|
||
const listLocations = createAmplifyListLocationsHandler(); | ||
|
||
return { listLocations }; | ||
}; |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The in-line type is a bit hard the follow, what about using a interface with property names:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Our ESLint does not allow for index signature. But i think we can create alias and align if we want. I can look into this in my follow up PR for pagination if there are no other comments :)