mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 12:20:31 +00:00
83 lines
2.1 KiB
TypeScript
83 lines
2.1 KiB
TypeScript
import { Inject, Service } from 'typedi';
|
|
import bluebird from 'bluebird';
|
|
import { Knex } from 'knex';
|
|
import {
|
|
validateLinkModelEntryExists,
|
|
validateLinkModelExists,
|
|
} from './_utils';
|
|
import HasTenancyService from '../Tenancy/TenancyService';
|
|
import { ServiceError } from '@/exceptions';
|
|
import { ERRORS } from './constants';
|
|
|
|
@Service()
|
|
export class LinkAttachment {
|
|
@Inject()
|
|
private tenancy: HasTenancyService;
|
|
|
|
/**
|
|
* Links the given file key to the given model type and id.
|
|
* @param {number} tenantId
|
|
* @param {string} filekey
|
|
* @param {string} modelRef
|
|
* @param {number} modelId
|
|
* @returns {Promise<void>}
|
|
*/
|
|
async link(
|
|
tenantId: number,
|
|
filekey: string,
|
|
modelRef: string,
|
|
modelId: number,
|
|
trx?: Knex.Transaction
|
|
) {
|
|
const { DocumentLink, Document, ...models } = this.tenancy.models(tenantId);
|
|
const LinkModel = models[modelRef];
|
|
validateLinkModelExists(LinkModel);
|
|
|
|
const foundFile = await Document.query(trx)
|
|
.findOne('key', filekey)
|
|
.throwIfNotFound();
|
|
|
|
const foundLinkModel = await LinkModel.query(trx).findById(modelId);
|
|
validateLinkModelEntryExists(foundLinkModel);
|
|
|
|
const foundLinks = await DocumentLink.query(trx)
|
|
.where('modelRef', modelRef)
|
|
.where('modelId', modelId)
|
|
.where('documentId', foundFile.id);
|
|
|
|
if (foundLinks.length > 0) {
|
|
throw new ServiceError(ERRORS.DOCUMENT_LINK_ALREADY_LINKED);
|
|
}
|
|
await DocumentLink.query(trx).insert({
|
|
modelRef,
|
|
modelId,
|
|
documentId: foundFile.id,
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Links the given file keys to the given model type and id.
|
|
* @param {number} tenantId
|
|
* @param {string[]} filekeys
|
|
* @param {string} modelRef
|
|
* @param {number} modelId
|
|
* @param {Knex.Transaction} trx
|
|
* @returns {Promise<void>}
|
|
*/
|
|
async bulkLink(
|
|
tenantId: number,
|
|
filekeys: string[],
|
|
modelRef: string,
|
|
modelId: number,
|
|
trx?: Knex.Transaction
|
|
) {
|
|
return bluebird.each(filekeys, async (fieldKey: string) => {
|
|
try {
|
|
await this.link(tenantId, fieldKey, modelRef, modelId, trx);
|
|
} catch {
|
|
// Ignore catching exceptions in bulk action.
|
|
}
|
|
});
|
|
}
|
|
}
|