perf(api): write routes stop re-resolving the active company (#1928)

* perf(api): write routes stop re-resolving the active company

withRouteContext resolves the active company (one resolve_active_company
RPC, ~40 ms p50 on prod) and then, for the 256 routes that pass
requireWrite: true, called requireWritePermission(), which resolved it a
second time before its role select. Two sequential round trips repeating
work the wrapper had just done, on every mutating request.

requireWritePermission() and getCompanyRole() now accept an optional
`known` context; the wrapper passes { companyId }, so the helper goes
straight to the membership select. Callers that pass nothing behave
exactly as before, and the shared selectRole() keeps both helpers on the
same query. The role is still looked up, never trusted from the caller.

Tests: known companyId skips resolution, known role skips the select, a
known viewer is still 403, a known company without a membership row is
still 403, legacy calls unchanged; new lib/api/__tests__/with-route-
context.test.ts pins that the wrapper resolves the company exactly once,
hands it to the guard, never calls the guard on read routes, passes the
guard's 403 through with a request id, and emits Server-Timing.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

* test(customers): viewer gate expects the wrapper to hand over the resolved company

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>

---------

Co-authored-by: Jakob Wennberg <311770904+jakobwennberg-oss@users.noreply.github.com>
Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Jakob Wennberg
2026-08-26 13:55:48 +02:00
committed by GitHub
co-authored by Claude Fable 5 Jakob Wennberg
parent b2e15bbd2a
commit c31933b15b
5 changed files with 227 additions and 20 deletions
+60
View File
@@ -80,6 +80,66 @@ describe('requireWritePermission', () => {
})
})
describe('requireWritePermission with a known route context', () => {
beforeEach(() => {
vi.clearAllMocks()
})
it('skips the active-company resolution when companyId is known', async () => {
const { supabase, mockResult } = createMockSupabase()
mockResult({ data: { role: 'member' } })
const result = await requireWritePermission(supabase, 'user-1', { companyId: 'company-9' })
expect(result.ok).toBe(true)
expect(getActiveCompanyId).not.toHaveBeenCalled()
expect(supabase.from).toHaveBeenCalledTimes(1)
expect(supabase.from).toHaveBeenCalledWith('company_members')
})
it('skips the membership select when the role is known too', async () => {
const { supabase } = createMockSupabase()
const result = await requireWritePermission(supabase, 'user-1', {
companyId: 'company-9',
role: 'admin',
})
expect(result.ok).toBe(true)
expect(getActiveCompanyId).not.toHaveBeenCalled()
expect(supabase.from).not.toHaveBeenCalled()
})
it('still rejects a known viewer role with 403', async () => {
const { supabase } = createMockSupabase()
const result = await requireWritePermission(supabase, 'user-1', {
companyId: 'company-9',
role: 'viewer',
})
expect(result.ok).toBe(false)
if (!result.ok) expect(result.response.status).toBe(403)
expect(supabase.from).not.toHaveBeenCalled()
})
it('a known company with no membership row is rejected, not trusted', async () => {
const { supabase, mockResult } = createMockSupabase()
mockResult({ data: null })
const result = await requireWritePermission(supabase, 'user-1', { companyId: 'company-9' })
expect(result.ok).toBe(false)
if (!result.ok) expect(result.response.status).toBe(403)
})
it('falls back to resolution when no context is passed (legacy callers)', async () => {
const { supabase, mockResult } = createMockSupabase()
vi.mocked(getActiveCompanyId).mockResolvedValue('company-1')
mockResult({ data: { role: 'owner' } })
const result = await requireWritePermission(supabase, 'user-1', undefined)
expect(result.ok).toBe(true)
expect(getActiveCompanyId).toHaveBeenCalledTimes(1)
})
})
describe('getCompanyRole', () => {
beforeEach(() => {
vi.clearAllMocks()
+37 -17
View File
@@ -27,11 +27,40 @@ type WritePermissionResult =
| { ok: true }
| { ok: false; response: NextResponse }
/**
* Facts the caller has already established for this request. Passing
* `companyId` skips the `resolve_active_company` round trip that
* `getActiveCompanyId` would otherwise repeat (withRouteContext resolves it
* two awaits earlier for every route); passing `role` skips the membership
* select as well. Only ever pass values that came from `getActiveCompanyId`
* / `company_members` for the same user in the same request: this is a
* dedupe, not a trust boundary.
*/
export interface KnownRouteContext {
companyId: string
role?: CompanyRole
}
async function selectRole(
supabase: SupabaseClient,
companyId: string,
userId: string,
): Promise<CompanyRole | null> {
const { data: membership } = await supabase
.from('company_members')
.select('role')
.eq('company_id', companyId)
.eq('user_id', userId)
.maybeSingle()
return membership ? (membership.role as CompanyRole) : null
}
export async function requireWritePermission(
supabase: SupabaseClient,
userId: string,
known?: KnownRouteContext,
): Promise<WritePermissionResult> {
const companyId = await getActiveCompanyId(supabase, userId)
const companyId = known?.companyId ?? (await getActiveCompanyId(supabase, userId))
if (!companyId) {
return {
@@ -43,14 +72,9 @@ export async function requireWritePermission(
}
}
const { data: membership } = await supabase
.from('company_members')
.select('role')
.eq('company_id', companyId)
.eq('user_id', userId)
.maybeSingle()
const role = known?.role ?? (await selectRole(supabase, companyId, userId))
if (!membership || membership.role === 'viewer') {
if (!role || role === 'viewer') {
return {
ok: false,
response: NextResponse.json(
@@ -81,8 +105,9 @@ export type CompanyRoleResult =
export async function getCompanyRole(
supabase: SupabaseClient,
userId: string,
known?: Pick<KnownRouteContext, 'companyId'>,
): Promise<CompanyRoleResult> {
const companyId = await getActiveCompanyId(supabase, userId)
const companyId = known?.companyId ?? (await getActiveCompanyId(supabase, userId))
if (!companyId) {
return {
@@ -94,14 +119,9 @@ export async function getCompanyRole(
}
}
const { data: membership } = await supabase
.from('company_members')
.select('role')
.eq('company_id', companyId)
.eq('user_id', userId)
.maybeSingle()
const role = await selectRole(supabase, companyId, userId)
if (!membership) {
if (!role) {
return {
ok: false,
response: NextResponse.json(
@@ -111,5 +131,5 @@ export async function getCompanyRole(
}
}
return { ok: true, role: membership.role as CompanyRole, companyId }
return { ok: true, role, companyId }
}