File size: 6,039 Bytes
c09f67c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 | import { getTransactionsByIds } from "@midday/db/queries";
import { createClient } from "@midday/supabase/job";
import { download } from "@midday/supabase/storage";
import { ensureFileExtension } from "@midday/utils";
import { getTaxTypeLabel, resolveTaxValues } from "@midday/utils/tax";
import type { Job } from "bullmq";
import { format, parseISO } from "date-fns";
import type { ProcessExportPayload } from "../../schemas/transactions";
import { getDb } from "../../utils/db";
import { processBatch } from "../../utils/process-batch";
import { BaseProcessor } from "../base";
const ATTACHMENT_BATCH_SIZE = 20;
export class ProcessExportProcessor extends BaseProcessor<ProcessExportPayload> {
/**
* Process transactions for export (without Job dependency)
* Can be called directly or via process() method
*/
async processTransactions(params: {
ids: string[];
teamId: string;
locale: string;
dateFormat?: string | null;
onProgress?: (progress: number) => Promise<void>;
}): Promise<{
rows: unknown[][];
attachments: Array<{
id: string;
name: string;
blob: Blob | undefined;
}>;
}> {
const { ids, teamId, locale, dateFormat, onProgress } = params;
const supabase = createClient(); // Keep for storage operations
const db = getDb();
if (onProgress) await onProgress(10);
const transactionsData = await getTransactionsByIds(db, {
ids,
teamId,
});
if (onProgress) await onProgress(30);
// Track global transaction index across batches to ensure unique rowId
let globalTransactionIndex = 0;
const attachments = await processBatch(
transactionsData ?? [],
ATTACHMENT_BATCH_SIZE,
async (batch) => {
const batchAttachments = await Promise.all(
batch.flatMap((transaction) => {
// Increment global index for each transaction (1-based)
globalTransactionIndex += 1;
const rowId = globalTransactionIndex;
return (transaction.attachments ?? []).map(
async (attachment, idx2: number) => {
const originalName = attachment.name || "attachment";
// Only apply MIME type extension if we have a valid MIME type
const nameWithExtension = attachment.type
? ensureFileExtension(originalName, attachment.type)
: originalName;
const baseFilename = nameWithExtension.replace(/\.[^.]*$/, "");
// Extract extension properly - if no extension exists, use "bin"
const parts = nameWithExtension.split(".");
const extension = parts.length > 1 ? parts.pop()! : "bin";
const name =
idx2 > 0
? `${baseFilename}-${rowId}_${idx2}.${extension}`
: `${baseFilename}-${rowId}.${extension}`;
const { data } = await download(supabase, {
bucket: "vault",
path: (attachment.path ?? []).join("/"),
});
return {
id: transaction.id,
name,
blob: data ?? undefined,
};
},
);
}),
);
return batchAttachments.flat();
},
);
if (onProgress) await onProgress(70);
const rows = transactionsData
?.sort((a, b) => parseISO(a.date).getTime() - parseISO(b.date).getTime())
.map((transaction) => {
const { taxAmount, taxRate, taxType } = resolveTaxValues({
transactionAmount: transaction.amount,
transactionTaxAmount: transaction.tax_amount,
transactionTaxRate: transaction.tax_rate,
transactionTaxType: transaction.tax_type,
categoryTaxRate: transaction.category?.tax_rate,
categoryTaxType: transaction.category?.tax_type,
});
const formattedTaxType = getTaxTypeLabel(taxType ?? "");
const formattedTaxRate = taxRate != null ? `${taxRate}%` : "";
return [
transaction.id,
format(parseISO(transaction.date), dateFormat ?? "LLL dd, y"),
transaction.name,
transaction.description,
transaction.amount,
transaction.currency,
Intl.NumberFormat(locale, {
style: "currency",
currency: transaction.currency,
}).format(transaction.amount),
formattedTaxType,
formattedTaxRate,
Intl.NumberFormat(locale, {
style: "currency",
currency: transaction.currency,
}).format(taxAmount ?? 0),
transaction?.counterparty_name ?? "",
transaction?.category?.name ?? "",
transaction?.category?.description ?? "",
transaction?.category?.tax_reporting_code ?? "",
transaction?.attachments?.length > 0 ||
transaction?.status === "completed"
? "Completed"
: "Not completed",
attachments
.filter((a) => a.id === transaction.id)
.map((a) => a.name)
.join(", ") ?? "",
transaction?.balance ?? "",
transaction?.bank_account?.name ?? "",
transaction?.note ?? "",
transaction?.tags?.map((t) => t.tag?.name).join(", ") ?? "",
];
});
if (onProgress) await onProgress(100);
return {
rows: rows ?? [],
attachments: attachments ?? [],
};
}
/**
* Process method for BullMQ job execution
*/
async process(job: Job<ProcessExportPayload>): Promise<{
rows: unknown[][];
attachments: Array<{
id: string;
name: string;
blob: Blob | undefined;
}>;
}> {
return this.processTransactions({
ids: job.data.ids,
teamId: job.data.teamId,
locale: job.data.locale,
dateFormat: job.data.dateFormat,
onProgress: async (progress) => {
await this.updateProgress(job, progress);
},
});
}
}
|