mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-14 11:50:31 +00:00
113 lines
2.9 KiB
TypeScript
113 lines
2.9 KiB
TypeScript
import { Inject, Service } from 'typedi';
|
|
import { NextFunction, Request, Response, Router } from 'express';
|
|
import BaseController from '@/api/controllers/BaseController';
|
|
import { CashflowApplication } from '@/services/Cashflow/CashflowApplication';
|
|
import { GetBankAccountSummary } from '@/services/Banking/BankAccounts/GetBankAccountSummary';
|
|
import { BankAccountsApplication } from '@/services/Banking/BankAccounts/BankAccountsApplication';
|
|
|
|
@Service()
|
|
export class BankAccountsController extends BaseController {
|
|
@Inject()
|
|
private getBankAccountSummaryService: GetBankAccountSummary;
|
|
|
|
@Inject()
|
|
private bankAccountsApp: BankAccountsApplication;
|
|
|
|
/**
|
|
* Router constructor.
|
|
*/
|
|
router() {
|
|
const router = Router();
|
|
|
|
router.get('/:bankAccountId/meta', this.getBankAccountSummary.bind(this));
|
|
router.post(
|
|
'/:bankAccountId/disconnect',
|
|
this.disconnectBankAccount.bind(this)
|
|
);
|
|
router.post('/:bankAccountId/update', this.refreshBankAccount.bind(this));
|
|
|
|
return router;
|
|
}
|
|
|
|
/**
|
|
* Retrieves the bank account meta summary.
|
|
* @param {Request} req
|
|
* @param {Response} res
|
|
* @param {NextFunction} next
|
|
* @returns {Promise<Response|null>}
|
|
*/
|
|
async getBankAccountSummary(
|
|
req: Request<{ bankAccountId: number }>,
|
|
res: Response,
|
|
next: NextFunction
|
|
) {
|
|
const { bankAccountId } = req.params;
|
|
const { tenantId } = req;
|
|
|
|
try {
|
|
const data =
|
|
await this.getBankAccountSummaryService.getBankAccountSummary(
|
|
tenantId,
|
|
bankAccountId
|
|
);
|
|
return res.status(200).send({ data });
|
|
} catch (error) {
|
|
next(error);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Disonnect the given bank account.
|
|
* @param {Request} req
|
|
* @param {Response} res
|
|
* @param {NextFunction} next
|
|
* @returns {Promise<Response|null>}
|
|
*/
|
|
async disconnectBankAccount(
|
|
req: Request<{ bankAccountId: number }>,
|
|
res: Response,
|
|
next: NextFunction
|
|
) {
|
|
const { bankAccountId } = req.params;
|
|
const { tenantId } = req;
|
|
|
|
try {
|
|
await this.bankAccountsApp.disconnectBankAccount(tenantId, bankAccountId);
|
|
|
|
return res.status(200).send({
|
|
id: bankAccountId,
|
|
message: 'The bank account has been disconnected.',
|
|
});
|
|
} catch (error) {
|
|
next(error);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Refresh the given bank account.
|
|
* @param {Request} req
|
|
* @param {Response} res
|
|
* @param {NextFunction} next
|
|
* @returns {Promise<Response|null>}
|
|
*/
|
|
async refreshBankAccount(
|
|
req: Request<{ bankAccountId: number }>,
|
|
res: Response,
|
|
next: NextFunction
|
|
) {
|
|
const { bankAccountId } = req.params;
|
|
const { tenantId } = req;
|
|
|
|
try {
|
|
await this.bankAccountsApp.refreshBankAccount(tenantId, bankAccountId);
|
|
|
|
return res.status(200).send({
|
|
id: bankAccountId,
|
|
message: 'The bank account has been disconnected.',
|
|
});
|
|
} catch (error) {
|
|
next(error);
|
|
}
|
|
}
|
|
}
|