mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-19 06:10:31 +00:00
67 lines
1.8 KiB
TypeScript
67 lines
1.8 KiB
TypeScript
import { Inject, Service } from 'typedi';
|
|
import HasTenancyService from '../Tenancy/TenancyService';
|
|
import { ImportFilePreviewPOJO } from './interfaces';
|
|
import { ImportFileProcess } from './ImportFileProcess';
|
|
import { EventPublisher } from '@/lib/EventPublisher/EventPublisher';
|
|
import events from '@/subscribers/events';
|
|
import { IImportFileCommitedEventPayload } from '@/interfaces/Import';
|
|
import { ImportAls } from './ImportALS';
|
|
|
|
@Service()
|
|
export class ImportFileProcessCommit {
|
|
@Inject()
|
|
private tenancy: HasTenancyService;
|
|
|
|
@Inject()
|
|
private importFile: ImportFileProcess;
|
|
|
|
@Inject()
|
|
private importAls: ImportAls;
|
|
|
|
@Inject()
|
|
private eventPublisher: EventPublisher;
|
|
|
|
/**
|
|
* Commits the imported file under ALS.
|
|
* @param {number} tenantId
|
|
* @param {string} importId
|
|
* @returns {Promise<ImportFilePreviewPOJO>}
|
|
*/
|
|
public commit(
|
|
tenantId: number,
|
|
importId: string
|
|
): Promise<ImportFilePreviewPOJO> {
|
|
return this.importAls.runCommit<Promise<ImportFilePreviewPOJO>>(() =>
|
|
this.commitAlsRun(tenantId, importId)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Commits the imported file.
|
|
* @param {number} tenantId
|
|
* @param {number} importId
|
|
* @returns {Promise<ImportFilePreviewPOJO>}
|
|
*/
|
|
public async commitAlsRun(
|
|
tenantId: number,
|
|
importId: string
|
|
): Promise<ImportFilePreviewPOJO> {
|
|
const knex = this.tenancy.knex(tenantId);
|
|
const trx = await knex.transaction({ isolationLevel: 'read uncommitted' });
|
|
|
|
const meta = await this.importFile.import(tenantId, importId, trx);
|
|
|
|
// Commit the successed transaction.
|
|
await trx.commit();
|
|
|
|
// Triggers `onImportFileCommitted` event.
|
|
await this.eventPublisher.emitAsync(events.import.onImportCommitted, {
|
|
meta,
|
|
importId,
|
|
tenantId,
|
|
} as IImportFileCommitedEventPayload);
|
|
|
|
return meta;
|
|
}
|
|
}
|