2ad8731dc9
* feat: import system improvements, INK2 fix, and Swedish text corrections - SIE parser: Windows-1252 and CP437 encoding detection and decoding - Bank file parser: add Nordea Business (Företag) CSV format - Bank file parser: improve format detection for SEB, Länsförsäkringar, generic CSV - INK2 engine: calculate årets resultat (7222) from income statement for open fiscal years - Dashboard: parallel Supabase queries, simplified dashboard page - Fix Swedish characters (å, ä, ö) in BAS data descriptions, validation messages, AI consent disclosures - Import wizard UI improvements across all steps - Migration: add 'bas_range' match type to sie_account_mappings constraint - Extensive new tests for SIE parser encoding and bank file parser Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat: arcim migration wizard UX fixes, Sentry setup, and extension scaffolding Arcim migration wizard improvements: - Progress bar now excludes non-interactive steps (migrating/result) - Fix OAuth text to match target="_blank" behavior (new tab, not redirect) - Display month names instead of "Månad X" in preview - Fix Swedish typo "förifylla" in no-company-info message - Replace native checkboxes with shadcn Switch in options step - Add ConfirmationDialog before starting migration - Show progress percentage during migration - Add "Nästa steg" guidance and navigation links in result step - Add "Försök igen" button in error state (returns to options) - Add Bokio company ID help text (GUID from URL) - Add Fortnox integration add-on hint on connection failure Also includes: SIE import system improvements, INK2 fixes, Swedish text corrections, Sentry error tracking setup, and arcim-migration extension scaffolding. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: address PR review feedback - Fix OAuth error recovery blank page (restore provider from URL params) - Pass real userId to MigrationWizard instead of empty string - Remove ~50 debug console.log statements from sie-import.ts - Fix comment referencing account 3740 → 3741 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
41 lines
1.0 KiB
TypeScript
41 lines
1.0 KiB
TypeScript
import { createServiceClient } from '@/lib/supabase/server'
|
|
|
|
/**
|
|
* Check if an extension is enabled for a specific user.
|
|
* Used by event handlers to gate execution.
|
|
*
|
|
* For backward compatibility during the transition period,
|
|
* general extensions that were previously always-on default to
|
|
* enabled when no toggle row exists.
|
|
*/
|
|
const LEGACY_GENERAL_EXTENSIONS = [
|
|
'receipt-ocr',
|
|
'ai-categorization',
|
|
'ai-chat',
|
|
'enable-banking',
|
|
'arcim-migration',
|
|
]
|
|
|
|
export async function isExtensionEnabled(
|
|
userId: string,
|
|
sectorSlug: string,
|
|
extensionSlug: string
|
|
): Promise<boolean> {
|
|
const supabase = await createServiceClient()
|
|
|
|
const { data } = await supabase
|
|
.from('extension_toggles')
|
|
.select('enabled')
|
|
.eq('user_id', userId)
|
|
.eq('sector_slug', sectorSlug)
|
|
.eq('extension_slug', extensionSlug)
|
|
.single()
|
|
|
|
// If no toggle row exists, check if this is a legacy extension
|
|
if (!data) {
|
|
return sectorSlug === 'general' && LEGACY_GENERAL_EXTENSIONS.includes(extensionSlug)
|
|
}
|
|
|
|
return data.enabled
|
|
}
|