Skip to content
Open
Show file tree
Hide file tree
Changes from 2 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
93 changes: 93 additions & 0 deletions server/account/src/__tests__/serviceOperations.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ import {
createIntegration,
deleteIntegration,
deleteIntegrationSecret,
findPersonBySocialKey,
getIntegration,
getIntegrationSecret,
listIntegrations,
Expand Down Expand Up @@ -1603,3 +1604,95 @@ describe('upsertSubscription', () => {
)
})
})

describe('findPersonBySocialKey', () => {
const mockCtx = {} as unknown as MeasureContext
const mockBranding = null
const mockToken = 'test-token'

function makeMockDb (socialId: { personUuid: string } | null, accountUuid: string | null = null): AccountDB {
return {
socialId: {
findOne: jest.fn().mockResolvedValue(socialId)
},
account: {
findOne: jest.fn().mockResolvedValue(accountUuid === null ? null : { uuid: accountUuid })
}
} as unknown as AccountDB
}

beforeEach(() => {
jest.clearAllMocks()
})

test('allows a regular user token (no service claim) to look up by social key', async () => {
;(decodeTokenVerbose as jest.Mock).mockReturnValue({
extra: { authMethod: 'password' },
account: 'user-uuid'
})
const mockDb = makeMockDb({ personUuid: 'looked-up-person' })

const result = await findPersonBySocialKey(mockCtx, mockDb, mockBranding, mockToken, {
socialString: 'email:alice@example.com'
})

expect(result).toBe('looked-up-person')
expect(mockDb.socialId.findOne).toHaveBeenCalledWith({ key: 'email:alice@example.com' })
})

test('still rejects empty socialString', async () => {
;(decodeTokenVerbose as jest.Mock).mockReturnValue({
extra: { authMethod: 'password' },
account: 'user-uuid'
})
const mockDb = makeMockDb(null)

await expect(
findPersonBySocialKey(mockCtx, mockDb, mockBranding, mockToken, { socialString: '' })
).rejects.toThrow(/BadRequest/)
})

test('returns undefined when social key is not found', async () => {
;(decodeTokenVerbose as jest.Mock).mockReturnValue({
extra: { authMethod: 'password' },
account: 'user-uuid'
})
const mockDb = makeMockDb(null)

const result = await findPersonBySocialKey(mockCtx, mockDb, mockBranding, mockToken, {
socialString: 'email:missing@example.com'
})

expect(result).toBeUndefined()
})

test('with requireAccount=true returns the account uuid when the person has one', async () => {
;(decodeTokenVerbose as jest.Mock).mockReturnValue({
extra: { authMethod: 'password' },
account: 'user-uuid'
})
const mockDb = makeMockDb({ personUuid: 'person-uuid' }, 'account-uuid')

const result = await findPersonBySocialKey(mockCtx, mockDb, mockBranding, mockToken, {
socialString: 'email:alice@example.com',
requireAccount: true
})

expect(result).toBe('account-uuid')
})

test('with requireAccount=true returns undefined when the person has no account', async () => {
;(decodeTokenVerbose as jest.Mock).mockReturnValue({
extra: { authMethod: 'password' },
account: 'user-uuid'
})
const mockDb = makeMockDb({ personUuid: 'person-uuid' }, null)

const result = await findPersonBySocialKey(mockCtx, mockDb, mockBranding, mockToken, {
socialString: 'email:alice@example.com',
requireAccount: true
})

expect(result).toBeUndefined()
})
})
4 changes: 0 additions & 4 deletions server/account/src/serviceOperations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -997,10 +997,6 @@ export async function findPersonBySocialKey (
throw new PlatformError(new Status(Severity.ERROR, platform.status.BadRequest, {}))
}

const { extra } = decodeTokenVerbose(ctx, token)

verifyAllowedServices(['tool', 'workspace', 'aibot', ...integrationServices], extra)

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can’t accept this change because it removes authorization from a global account lookup. Any regular user token could then probe arbitrary social keys and learn whether an email or external identity exists, as well as obtain the associated account/person UUID. This creates a cross-tenant user-enumeration and privacy risk.

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You're right. I've modified it only allow lookups if both accounts share a workspace.


const socialId = await db.socialId.findOne({ key: socialString })

if (socialId == null) {
Expand Down