a1a816b4a5
* Implement company and account deletion features - Add event types for company and account deletion to CoreEvent. - Enhance Supabase middleware to handle company context resolution and cookie management for archived companies. - Create API routes for deleting accounts and companies, including necessary validations and event emissions. - Implement tests for account and company deletion endpoints to ensure proper functionality and error handling. - Add retention notice component to inform users about bookkeeping data retention during destructive actions. - Create database migrations to support soft deletion of companies and anonymization of user accounts, ensuring compliance with retention laws. * feat: enhance account deletion process and update user notifications * Add service client for onboarding completion check and update escape hatch visibility * Enhance invite flow and email handling for company members * Refactor company context and RLS policies for active company isolation - Update `switchCompany` to remove unnecessary revalidation as client handles navigation. - Revise `getActiveCompanyId` to prioritize `user_preferences` and validate against non-archived memberships. - Modify `setActiveCompany` to ensure `user_preferences` is the authoritative source while maintaining cookie compatibility. - Enhance middleware to resolve active company using `user_preferences` and fallback to first non-archived membership. - Introduce new API route `/api/company/current` to fetch the active company ID for cross-tab synchronization. - Implement `CompanyTabSync` component for real-time active company enforcement across tabs. - Create migration for RLS policies to enforce single-active-company isolation using `current_active_company_id()`. * feat: implement viewer role enforcement for write permissions - Added `useCanWrite` hook to determine if the current user has write permissions based on their role in the active company. - Updated various components (JournalEntryForm, CustomerForm, DeadlineForm, etc.) to disable write actions and show a lock icon with a tooltip for users without write permissions. - Introduced `requireWritePermission` function to enforce write permissions at the API level, returning a 403 response for viewers. - Created tests to verify the behavior of the viewer role and write permissions. - Added database migration to enforce read-only access for viewers at the database level.
53 lines
1.6 KiB
TypeScript
53 lines
1.6 KiB
TypeScript
import { createClient } from '@/lib/supabase/server'
|
|
import { NextResponse } from 'next/server'
|
|
|
|
/**
|
|
* GET /api/company?owned=true&archived=false
|
|
*
|
|
* Returns companies the caller has access to, filtered by query:
|
|
* - owned=true → only companies where caller's role is 'owner'
|
|
* - archived=false → only non-archived companies (default)
|
|
*
|
|
* Used by the account danger zone to show a blockers list before
|
|
* allowing account deletion.
|
|
*/
|
|
export async function GET(request: Request) {
|
|
const supabase = await createClient()
|
|
const { data: { user } } = await supabase.auth.getUser()
|
|
if (!user) return NextResponse.json({ error: 'Unauthorized' }, { status: 401 })
|
|
|
|
const url = new URL(request.url)
|
|
const ownedOnly = url.searchParams.get('owned') === 'true'
|
|
const includeArchived = url.searchParams.get('archived') === 'true'
|
|
|
|
let query = supabase
|
|
.from('company_members')
|
|
.select('role, companies!inner(id, name, archived_at)')
|
|
.eq('user_id', user.id)
|
|
|
|
if (ownedOnly) query = query.eq('role', 'owner')
|
|
if (!includeArchived) query = query.is('companies.archived_at', null)
|
|
|
|
const { data, error } = await query
|
|
|
|
if (error) {
|
|
return NextResponse.json({ error: error.message }, { status: 500 })
|
|
}
|
|
|
|
const companies = (data ?? []).map((row) => {
|
|
const company = (row.companies as unknown) as {
|
|
id: string
|
|
name: string
|
|
archived_at: string | null
|
|
}
|
|
return {
|
|
id: company.id,
|
|
name: company.name,
|
|
archived_at: company.archived_at,
|
|
role: row.role as string,
|
|
}
|
|
})
|
|
|
|
return NextResponse.json({ data: companies })
|
|
}
|