mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
45 lines
1.7 KiB
TypeScript
45 lines
1.7 KiB
TypeScript
import { calculateDecay } from './decay'
|
|
import Decimal from 'decimal.js-light'
|
|
import { Decay } from '@model/Decay'
|
|
import { getCustomRepository } from '@dbTools/typeorm'
|
|
import { TransactionLinkRepository } from '@repository/TransactionLink'
|
|
import { TransactionLink as dbTransactionLink } from '@entity/TransactionLink'
|
|
import { getLastTransaction } from '../graphql/resolver/util/getLastTransaction'
|
|
|
|
function isStringBoolean(value: string): boolean {
|
|
const lowerValue = value.toLowerCase()
|
|
if (lowerValue === 'true' || lowerValue === 'false') {
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
async function calculateBalance(
|
|
userId: number,
|
|
amount: Decimal,
|
|
time: Date,
|
|
transactionLink?: dbTransactionLink | null,
|
|
): Promise<{ balance: Decimal; decay: Decay; lastTransactionId: number } | null> {
|
|
const lastTransaction = await getLastTransaction(userId)
|
|
if (!lastTransaction) return null
|
|
|
|
const decay = calculateDecay(lastTransaction.balance, lastTransaction.balanceDate, time)
|
|
|
|
const balance = decay.balance.add(amount.toString())
|
|
const transactionLinkRepository = getCustomRepository(TransactionLinkRepository)
|
|
const { sumHoldAvailableAmount } = await transactionLinkRepository.summary(userId, time)
|
|
|
|
// If we want to redeem a link we need to make sure that the link amount is not considered as blocked
|
|
// else we cannot redeem links which are more or equal to half of what an account actually owns
|
|
const releasedLinkAmount = transactionLink ? transactionLink.holdAvailableAmount : new Decimal(0)
|
|
|
|
if (
|
|
balance.minus(sumHoldAvailableAmount.toString()).plus(releasedLinkAmount.toString()).lessThan(0)
|
|
) {
|
|
return null
|
|
}
|
|
return { balance, lastTransactionId: lastTransaction.id, decay }
|
|
}
|
|
|
|
export { calculateBalance, isStringBoolean }
|