@accounter/server
Version:
Accounter GraphQL server
144 lines (127 loc) • 5.34 kB
text/typescript
import DataLoader from 'dataloader';
import { Injectable, Scope } from 'graphql-modules';
import { sql } from '@pgtyped/runtime';
import { reassureOwnerIdExists } from '../../../shared/helpers/index.js';
import { AdminContextProvider } from '../../admin-context/providers/admin-context.provider.js';
import { TenantAwareDBClient } from '../../app-providers/tenant-db-client.js';
import type {
IDeleteBusinessTripOtherExpenseParams,
IDeleteBusinessTripOtherExpenseQuery,
IGetBusinessTripsOtherExpensesByBusinessTripIdsQuery,
IGetBusinessTripsOtherExpensesByIdsQuery,
IInsertBusinessTripOtherExpenseParams,
IInsertBusinessTripOtherExpenseQuery,
IUpdateBusinessTripOtherExpenseParams,
IUpdateBusinessTripOtherExpenseQuery,
} from '../types.js';
const getBusinessTripsOtherExpensesByBusinessTripIds = sql<IGetBusinessTripsOtherExpensesByBusinessTripIdsQuery>`
SELECT *
FROM accounter_schema.business_trips_transactions_other a
LEFT JOIN accounter_schema.extended_business_trip_transactions t
USING (id)
WHERE ($isBusinessTripIds = 0 OR t.business_trip_id IN $$businessTripIds);`;
const getBusinessTripsOtherExpensesByIds = sql<IGetBusinessTripsOtherExpensesByIdsQuery>`
SELECT *
FROM accounter_schema.business_trips_transactions_other a
LEFT JOIN accounter_schema.extended_business_trip_transactions t
USING (id)
WHERE ($isIds = 0 OR t.id IN $$expenseIds);`;
const updateBusinessTripOtherExpense = sql<IUpdateBusinessTripOtherExpenseQuery>`
UPDATE accounter_schema.business_trips_transactions_other
SET
deductible_expense = COALESCE(
$deductibleExpense,
deductible_expense
),
description = COALESCE(
$description,
description
)
WHERE
id = $businessTripExpenseId
RETURNING *;
`;
const insertBusinessTripOtherExpense = sql<IInsertBusinessTripOtherExpenseQuery>`
INSERT INTO accounter_schema.business_trips_transactions_other (id, deductible_expense, description, owner_id)
VALUES($id, $deductibleExpense, $description, $ownerId)
RETURNING *;`;
const deleteBusinessTripOtherExpense = sql<IDeleteBusinessTripOtherExpenseQuery>`
DELETE FROM accounter_schema.business_trips_transactions_other
WHERE id = $businessTripExpenseId
RETURNING id;
`;
({
scope: Scope.Operation,
global: true,
})
export class BusinessTripOtherExpensesProvider {
constructor(
private db: TenantAwareDBClient,
private adminContextProvider: AdminContextProvider,
) {}
private async batchBusinessTripsOtherExpensesByBusinessTripIds(
businessTripIds: readonly string[],
) {
const businessTripsOtherExpenses = await getBusinessTripsOtherExpensesByBusinessTripIds.run(
{
isBusinessTripIds: businessTripIds.length > 0 ? 1 : 0,
businessTripIds,
},
this.db,
);
return businessTripIds.map(id =>
businessTripsOtherExpenses.filter(record => record.business_trip_id === id),
);
}
public getBusinessTripsOtherExpensesByBusinessTripIdLoader = new DataLoader(
(ids: readonly string[]) => this.batchBusinessTripsOtherExpensesByBusinessTripIds(ids),
);
private async batchBusinessTripsOtherExpensesByIds(expenseIds: readonly string[]) {
const businessTripsOtherExpenses = await getBusinessTripsOtherExpensesByIds.run(
{
isIds: expenseIds.length > 0 ? 1 : 0,
expenseIds,
},
this.db,
);
return expenseIds.map(id => businessTripsOtherExpenses.find(record => record.id === id));
}
public getBusinessTripsOtherExpensesByIdLoader = new DataLoader((ids: readonly string[]) =>
this.batchBusinessTripsOtherExpensesByIds(ids),
);
public async updateBusinessTripOtherExpense(params: IUpdateBusinessTripOtherExpenseParams) {
if (params.businessTripExpenseId) {
this.invalidateById(params.businessTripExpenseId);
}
return updateBusinessTripOtherExpense.run(params, this.db);
}
public async insertBusinessTripOtherExpense(params: IInsertBusinessTripOtherExpenseParams) {
const { ownerId } = await this.adminContextProvider.getVerifiedAdminContext();
return insertBusinessTripOtherExpense.run(reassureOwnerIdExists(params, ownerId), this.db);
}
public async deleteBusinessTripOtherExpense(params: IDeleteBusinessTripOtherExpenseParams) {
if (params.businessTripExpenseId) {
this.invalidateById(params.businessTripExpenseId);
}
return deleteBusinessTripOtherExpense.run(params, this.db);
}
public async invalidateById(expenseId: string) {
const expense = await this.getBusinessTripsOtherExpensesByIdLoader.load(expenseId);
if (expense?.business_trip_id) {
this.getBusinessTripsOtherExpensesByBusinessTripIdLoader.clear(expense.business_trip_id);
}
this.getBusinessTripsOtherExpensesByIdLoader.clear(expenseId);
}
public async invalidateByBusinessTripId(businessTripId: string) {
const expenses =
await this.getBusinessTripsOtherExpensesByBusinessTripIdLoader.load(businessTripId);
for (const expense of expenses ?? []) {
this.getBusinessTripsOtherExpensesByIdLoader.clear(expense.id);
}
this.getBusinessTripsOtherExpensesByBusinessTripIdLoader.clear(businessTripId);
}
public clearCache() {
this.getBusinessTripsOtherExpensesByBusinessTripIdLoader.clearAll();
this.getBusinessTripsOtherExpensesByIdLoader.clearAll();
}
}