2022-12-11 17:51:11 -05:00
|
|
|
module Internal.Insert
|
|
|
|
( insertStatements
|
|
|
|
, insertBudget
|
2023-01-05 22:16:06 -05:00
|
|
|
)
|
|
|
|
where
|
|
|
|
|
|
|
|
import Data.Hashable
|
|
|
|
import Database.Persist.Class
|
|
|
|
import Database.Persist.Sql hiding (Single, Statement)
|
|
|
|
import Internal.Database.Model
|
|
|
|
import Internal.Statement
|
|
|
|
import Internal.Types hiding (sign)
|
|
|
|
import Internal.Utils
|
|
|
|
import RIO hiding (to)
|
2023-02-12 16:23:32 -05:00
|
|
|
import qualified RIO.List as L
|
|
|
|
import qualified RIO.Map as M
|
2023-01-05 22:16:06 -05:00
|
|
|
import qualified RIO.Text as T
|
|
|
|
import RIO.Time
|
|
|
|
|
2022-12-11 17:51:11 -05:00
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
-- intervals
|
|
|
|
|
2023-02-05 10:34:26 -05:00
|
|
|
expandDatePat :: Bounds -> DatePat -> EitherErrs [Day]
|
2023-02-02 23:18:36 -05:00
|
|
|
expandDatePat b (Cron cp) = expandCronPat b cp
|
2023-02-05 10:34:26 -05:00
|
|
|
expandDatePat i (Mod mp) = Right $ expandModPat mp i
|
2022-12-11 17:51:11 -05:00
|
|
|
|
2023-01-28 19:32:56 -05:00
|
|
|
expandModPat :: ModPat -> Bounds -> [Day]
|
2023-02-05 10:34:26 -05:00
|
|
|
expandModPat ModPat {mpStart = s, mpBy = b, mpUnit = u, mpRepeats = r} bs =
|
|
|
|
takeWhile (<= upper) $
|
|
|
|
(`addFun` start) . (* b')
|
|
|
|
<$> maybe id (take . fromIntegral) r [0 ..]
|
2023-02-02 23:18:36 -05:00
|
|
|
where
|
2023-02-05 10:34:26 -05:00
|
|
|
(lower, upper) = expandBounds bs
|
|
|
|
start = maybe lower fromGregorian' s
|
|
|
|
b' = fromIntegral b
|
|
|
|
addFun = case u of
|
|
|
|
Day -> addDays
|
|
|
|
Week -> addDays . (* 7)
|
|
|
|
Month -> addGregorianMonthsClip
|
|
|
|
Year -> addGregorianYearsClip
|
|
|
|
|
|
|
|
expandCronPat :: Bounds -> CronPat -> EitherErrs [Day]
|
2023-02-12 16:23:32 -05:00
|
|
|
expandCronPat b CronPat {cronYear, cronMonth, cronDay, cronWeekly} =
|
|
|
|
concatEither3 yRes mRes dRes $ \ys ms ds ->
|
|
|
|
filter validWeekday $
|
|
|
|
mapMaybe (uncurry3 toDay) $
|
|
|
|
takeWhile (\((y, _), m, d) -> (y, m, d) <= (yb1, mb1, db1)) $
|
|
|
|
dropWhile (\((y, _), m, d) -> (y, m, d) < (yb0, mb0, db0)) $
|
|
|
|
[(y, m, d) | y <- (\y -> (y, isLeapYear y)) <$> ys, m <- ms, d <- ds]
|
2023-01-30 21:47:17 -05:00
|
|
|
where
|
2023-02-05 10:34:26 -05:00
|
|
|
yRes = case cronYear of
|
|
|
|
Nothing -> return [yb0 .. yb1]
|
|
|
|
Just pat -> do
|
2023-02-09 20:01:43 -05:00
|
|
|
ys <- expandMDYPat (fromIntegral yb0) (fromIntegral yb1) pat
|
2023-02-05 10:34:26 -05:00
|
|
|
return $ dropWhile (< yb0) $ fromIntegral <$> ys
|
|
|
|
mRes = expandMD 12 cronMonth
|
|
|
|
dRes = expandMD 31 cronDay
|
|
|
|
(s, e) = expandBounds b
|
|
|
|
(yb0, mb0, db0) = toGregorian s
|
|
|
|
(yb1, mb1, db1) = toGregorian $ addDays (-1) e
|
2023-02-09 20:01:43 -05:00
|
|
|
expandMD lim =
|
|
|
|
fmap (fromIntegral <$>)
|
|
|
|
. maybe (return [1 .. lim]) (expandMDYPat 1 lim)
|
2023-02-05 10:34:26 -05:00
|
|
|
expandW (OnDay x) = [fromEnum x]
|
|
|
|
expandW (OnDays xs) = fromEnum <$> xs
|
|
|
|
ws = maybe [] expandW cronWeekly
|
|
|
|
validWeekday = if null ws then const True else \day -> dayToWeekday day `elem` ws
|
|
|
|
toDay (y, leap) m d
|
|
|
|
| m == 2 && (not leap && d > 28 || leap && d > 29) = Nothing
|
|
|
|
| m `elem` [4, 6, 9, 11] && d > 30 = Nothing
|
|
|
|
| otherwise = Just $ fromGregorian y m d
|
|
|
|
|
2023-02-09 20:01:43 -05:00
|
|
|
expandMDYPat :: Natural -> Natural -> MDYPat -> EitherErr [Natural]
|
|
|
|
expandMDYPat lower upper (Single x) = Right [x | lower <= x && x <= upper]
|
|
|
|
expandMDYPat lower upper (Multi xs) = Right $ dropWhile (<= lower) $ takeWhile (<= upper) xs
|
|
|
|
expandMDYPat lower upper (After x) = Right [max lower x .. upper]
|
|
|
|
expandMDYPat lower upper (Before x) = Right [lower .. min upper x]
|
|
|
|
expandMDYPat lower upper (Between x y) = Right [max lower x .. min upper y]
|
|
|
|
expandMDYPat lower upper (Repeat RepeatPat {rpStart = s, rpBy = b, rpRepeats = r})
|
2023-02-05 10:34:26 -05:00
|
|
|
| b < 1 = Left $ PatternError s b r ZeroLength
|
|
|
|
| otherwise = do
|
|
|
|
k <- limit r
|
2023-02-09 20:01:43 -05:00
|
|
|
return $ dropWhile (<= lower) $ takeWhile (<= k) [s + i * b | i <- [0 ..]]
|
2023-02-05 10:34:26 -05:00
|
|
|
where
|
2023-02-09 20:01:43 -05:00
|
|
|
limit Nothing = Right upper
|
2023-02-05 10:34:26 -05:00
|
|
|
limit (Just n)
|
|
|
|
-- this guard not only produces the error for the user but also protects
|
|
|
|
-- from an underflow below it
|
|
|
|
| n < 1 = Left $ PatternError s b r ZeroRepeats
|
2023-02-09 20:01:43 -05:00
|
|
|
| otherwise = Right $ min (s + b * (n - 1)) upper
|
2023-02-02 23:18:36 -05:00
|
|
|
|
|
|
|
dayToWeekday :: Day -> Int
|
|
|
|
dayToWeekday (ModifiedJulianDay d) = mod (fromIntegral d + 2) 7
|
|
|
|
|
2023-01-30 21:47:17 -05:00
|
|
|
withDates
|
2023-02-12 16:23:32 -05:00
|
|
|
:: MonadFinance m
|
2023-01-30 21:47:17 -05:00
|
|
|
=> DatePat
|
2023-02-12 16:23:32 -05:00
|
|
|
-> (Day -> SqlPersistT m a)
|
|
|
|
-> SqlPersistT m (EitherErrs [a])
|
2023-01-30 21:47:17 -05:00
|
|
|
withDates dp f = do
|
2023-02-12 16:23:32 -05:00
|
|
|
bounds <- lift $ askDBState kmBudgetInterval
|
2023-02-01 20:56:29 -05:00
|
|
|
let days = expandDatePat bounds dp
|
2023-02-05 10:34:26 -05:00
|
|
|
mapM (mapM f) days
|
2023-01-30 21:47:17 -05:00
|
|
|
|
2022-12-11 17:51:11 -05:00
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
-- budget
|
|
|
|
|
2023-02-12 16:23:32 -05:00
|
|
|
insertBudget :: MonadFinance m => Budget -> SqlPersistT m [InsertError]
|
2023-02-05 18:45:56 -05:00
|
|
|
insertBudget Budget {budgetLabel = name, income = is, transfers = es} = do
|
|
|
|
es1 <- mapM (insertIncome name) is
|
2023-02-12 16:23:32 -05:00
|
|
|
es2 <- insertTransfers name es
|
|
|
|
return $ concat es1 ++ es2
|
2022-12-11 17:51:11 -05:00
|
|
|
|
|
|
|
-- TODO this hashes twice (not that it really matters)
|
2023-01-05 22:16:06 -05:00
|
|
|
whenHash
|
2023-02-12 16:23:32 -05:00
|
|
|
:: (Hashable a, MonadFinance m)
|
2023-01-05 22:16:06 -05:00
|
|
|
=> ConfigType
|
|
|
|
-> a
|
2023-01-24 23:24:41 -05:00
|
|
|
-> b
|
2023-02-12 16:23:32 -05:00
|
|
|
-> (Key CommitR -> SqlPersistT m b)
|
|
|
|
-> SqlPersistT m b
|
2023-01-24 23:24:41 -05:00
|
|
|
whenHash t o def f = do
|
2022-12-11 17:51:11 -05:00
|
|
|
let h = hash o
|
2023-02-12 16:23:32 -05:00
|
|
|
hs <- lift $ askDBState kmNewCommits
|
|
|
|
if h `elem` hs then f =<< insert (CommitR h t) else return def
|
2022-12-11 17:51:11 -05:00
|
|
|
|
2023-01-30 20:13:25 -05:00
|
|
|
-- TODO allow currency conversions here
|
|
|
|
data BudgetSplit b = BudgetSplit
|
2023-01-30 22:57:42 -05:00
|
|
|
{ bsAcnt :: !AcntID
|
|
|
|
, bsBucket :: !(Maybe b)
|
2023-01-30 20:13:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
data BudgetMeta = BudgetMeta
|
2023-01-30 22:57:42 -05:00
|
|
|
{ bmCommit :: !(Key CommitR)
|
|
|
|
, bmWhen :: !Day
|
|
|
|
, bmCur :: !CurID
|
2023-02-05 18:45:56 -05:00
|
|
|
, bmName :: !T.Text
|
2023-01-30 20:13:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
data BudgetTx = BudgetTx
|
2023-01-30 22:57:42 -05:00
|
|
|
{ btMeta :: !BudgetMeta
|
|
|
|
, btFrom :: !(BudgetSplit IncomeBucket)
|
|
|
|
, btTo :: !(BudgetSplit ExpenseBucket)
|
|
|
|
, btValue :: !Rational
|
2023-02-05 18:45:56 -05:00
|
|
|
, btDesc :: !T.Text
|
2023-01-30 20:13:25 -05:00
|
|
|
}
|
|
|
|
|
2023-02-12 16:23:32 -05:00
|
|
|
insertIncome :: MonadFinance m => T.Text -> Income -> SqlPersistT m [InsertError]
|
|
|
|
insertIncome
|
|
|
|
name
|
|
|
|
i@Income {incWhen, incCurrency, incFrom, incPretax, incPosttax, incTaxes, incToBal} =
|
|
|
|
whenHash CTIncome i [] $ \c ->
|
|
|
|
unlessLeft (balanceIncome i) $ \balance -> do
|
|
|
|
res <- withDates incWhen $ \day -> do
|
|
|
|
let meta = BudgetMeta c day incCurrency name
|
|
|
|
let fromAllos b = concatMap (fromAllo meta incFrom (Just b))
|
|
|
|
let pre = fromAllos PreTax incPretax
|
|
|
|
let tax = fmap (fromTax meta incFrom) incTaxes
|
|
|
|
let post = fromAllos PostTax incPosttax
|
|
|
|
let bal =
|
|
|
|
BudgetTx
|
|
|
|
{ btMeta = meta
|
|
|
|
, btFrom = BudgetSplit incFrom $ Just PostTax
|
|
|
|
, btTo = BudgetSplit incToBal Nothing
|
|
|
|
, btValue = balance
|
|
|
|
, btDesc = "balance after deductions"
|
|
|
|
}
|
|
|
|
fmap concat $ mapM insertBudgetTx $ bal : (pre ++ tax ++ post)
|
|
|
|
unlessLefts res $ return . concat
|
2023-01-30 20:13:25 -05:00
|
|
|
|
|
|
|
fromAllo
|
|
|
|
:: BudgetMeta
|
|
|
|
-> AcntID
|
|
|
|
-> Maybe IncomeBucket
|
|
|
|
-> Allocation
|
|
|
|
-> [BudgetTx]
|
2023-02-12 16:23:32 -05:00
|
|
|
fromAllo meta from ib Allocation {alloPath, alloAmts, alloBucket} =
|
|
|
|
fmap (toBT alloPath) alloAmts
|
2023-01-30 20:13:25 -05:00
|
|
|
where
|
|
|
|
toBT to (Amount desc v) =
|
|
|
|
BudgetTx
|
|
|
|
{ btFrom = BudgetSplit from ib
|
|
|
|
, btTo = BudgetSplit to $ Just alloBucket
|
|
|
|
, btValue = dec2Rat v
|
2023-02-05 18:45:56 -05:00
|
|
|
, btDesc = desc
|
2023-01-30 20:13:25 -05:00
|
|
|
, btMeta = meta
|
|
|
|
}
|
2023-01-27 20:31:13 -05:00
|
|
|
|
2023-01-30 20:13:25 -05:00
|
|
|
fromTax :: BudgetMeta -> AcntID -> Tax -> BudgetTx
|
|
|
|
fromTax meta from Tax {taxAcnt = to, taxValue = v} =
|
|
|
|
BudgetTx
|
|
|
|
{ btFrom = BudgetSplit from (Just IntraTax)
|
|
|
|
, btTo = BudgetSplit to (Just Fixed)
|
|
|
|
, btValue = dec2Rat v
|
2023-02-05 18:45:56 -05:00
|
|
|
, btDesc = ""
|
2023-01-30 20:13:25 -05:00
|
|
|
, btMeta = meta
|
|
|
|
}
|
|
|
|
|
|
|
|
balanceIncome :: Income -> EitherErr Rational
|
2023-01-05 22:16:06 -05:00
|
|
|
balanceIncome
|
|
|
|
Income
|
|
|
|
{ incGross = g
|
2023-01-28 19:32:56 -05:00
|
|
|
, incWhen = dp
|
2023-01-05 22:16:06 -05:00
|
|
|
, incPretax = pre
|
|
|
|
, incTaxes = tax
|
|
|
|
, incPosttax = post
|
2023-01-30 20:13:25 -05:00
|
|
|
}
|
2023-01-30 21:12:08 -05:00
|
|
|
| bal < 0 = Left $ IncomeError dp
|
2023-01-30 20:13:25 -05:00
|
|
|
| otherwise = Right bal
|
2023-01-05 22:16:06 -05:00
|
|
|
where
|
2023-01-30 20:13:25 -05:00
|
|
|
bal = dec2Rat g - sum (sumAllocation <$> pre ++ post) - sumTaxes tax
|
2022-12-11 17:51:11 -05:00
|
|
|
|
2023-01-30 20:13:25 -05:00
|
|
|
sumAllocation :: Allocation -> Rational
|
|
|
|
sumAllocation = sum . fmap (dec2Rat . amtValue) . alloAmts
|
2022-12-11 17:51:11 -05:00
|
|
|
|
|
|
|
sumTaxes :: [Tax] -> Rational
|
|
|
|
sumTaxes = sum . fmap (dec2Rat . taxValue)
|
|
|
|
|
2023-02-12 16:23:32 -05:00
|
|
|
insertTransfers :: MonadFinance m => T.Text -> [Transfer] -> SqlPersistT m [InsertError]
|
|
|
|
insertTransfers name ts = do
|
|
|
|
res <- expandTransfers name ts
|
|
|
|
unlessLefts res $ \txs ->
|
|
|
|
fmap concat <$> mapM insertBudgetTx $ balanceTransfers txs
|
|
|
|
|
|
|
|
expandTransfers :: MonadFinance m => T.Text -> [Transfer] -> SqlPersistT m (EitherErrs [TransferTx])
|
|
|
|
expandTransfers name ts = do
|
|
|
|
txs <- mapM (expandTransfer name) ts
|
|
|
|
return $ L.sortOn (bmWhen . trxMeta) . concat <$> concatEithersL txs
|
|
|
|
|
|
|
|
-- TODO the entire budget needs to have this process applied to it
|
|
|
|
balanceTransfers :: [TransferTx] -> [BudgetTx]
|
|
|
|
balanceTransfers ts = snd $ L.mapAccumR go initBals $ L.sortOn (bmWhen . trxMeta) ts
|
2023-01-30 20:13:25 -05:00
|
|
|
where
|
2023-02-12 16:23:32 -05:00
|
|
|
initBals = M.fromList $ fmap (,0) $ L.nub $ (fmap trxTo ts ++ fmap trxTo ts)
|
|
|
|
updateBal x = M.update (Just . (+ x))
|
|
|
|
lookupBal = M.findWithDefault (error "this should not happen")
|
|
|
|
go bals TransferTx {trxMeta, trxFrom, trxTo, trxValue, trxType, trxDesc} =
|
|
|
|
let bal = lookupBal trxTo bals
|
|
|
|
x = amtToMove bal trxType trxValue
|
|
|
|
t =
|
|
|
|
BudgetTx
|
|
|
|
{ btMeta = trxMeta
|
|
|
|
, btFrom = BudgetSplit trxFrom Nothing
|
|
|
|
, btTo = BudgetSplit trxTo Nothing
|
|
|
|
, btValue = x
|
|
|
|
, btDesc = trxDesc
|
|
|
|
}
|
|
|
|
in (updateBal x trxFrom $ updateBal (-x) trxFrom bals, t)
|
|
|
|
-- TODO might need to query signs to make this intuitive; as it is this will
|
|
|
|
-- probably work, but for credit accounts I might need to supply a negative
|
|
|
|
-- target value
|
|
|
|
amtToMove _ FixedAmt x = x
|
|
|
|
amtToMove bal Percent x = -(x / 100 * bal)
|
|
|
|
amtToMove bal Target x = x - bal
|
|
|
|
|
|
|
|
expandTransfer :: MonadFinance m => T.Text -> Transfer -> SqlPersistT m (EitherErrs [TransferTx])
|
|
|
|
expandTransfer name t@Transfer {transAmounts, transTo, transCurrency, transFrom} =
|
|
|
|
whenHash CTExpense t (Right []) $ \key -> do
|
|
|
|
res <- forM transAmounts $ \(TimeAmount (Amount desc v) atype pat) ->
|
|
|
|
withDates pat $ \day ->
|
|
|
|
let meta =
|
|
|
|
BudgetMeta
|
|
|
|
{ bmWhen = day
|
|
|
|
, bmCur = transCurrency
|
|
|
|
, bmCommit = key
|
|
|
|
, bmName = name
|
|
|
|
}
|
|
|
|
in return $
|
|
|
|
TransferTx
|
|
|
|
{ trxMeta = meta
|
|
|
|
, trxFrom = transFrom
|
|
|
|
, trxTo = transTo
|
|
|
|
, trxValue = dec2Rat v
|
|
|
|
, trxType = atype
|
|
|
|
, trxDesc = desc
|
|
|
|
}
|
|
|
|
return $ concat <$> concatEithersL res
|
|
|
|
|
|
|
|
data TransferTx = TransferTx
|
|
|
|
{ trxMeta :: !BudgetMeta
|
|
|
|
, trxFrom :: !AcntID
|
|
|
|
, trxTo :: !AcntID
|
|
|
|
, trxValue :: !Rational
|
|
|
|
, trxType :: AmountType
|
|
|
|
, trxDesc :: !T.Text
|
|
|
|
}
|
2022-12-11 17:51:11 -05:00
|
|
|
|
2023-02-12 16:23:32 -05:00
|
|
|
-- amountBalance
|
|
|
|
-- :: (MonadFinance m, MonadBalance m)
|
|
|
|
-- => AmountType
|
|
|
|
-- -> AcntID
|
|
|
|
-- -> Rational
|
|
|
|
-- -> SqlPersistT m (EitherErr Rational)
|
|
|
|
-- amountBalance at i v = do
|
|
|
|
-- res <- lookupAccountKey i
|
|
|
|
-- case res of
|
|
|
|
-- Left e -> return $ Left e
|
|
|
|
-- Right k -> do
|
|
|
|
-- b <- lookupBalance k
|
|
|
|
-- return $ Right $ case at of
|
|
|
|
-- FixedAmt -> v
|
|
|
|
-- -- TODO what is the sign for this?
|
|
|
|
-- Percent -> v / 100 * b
|
|
|
|
-- -- TODO what is the sign for this?
|
|
|
|
-- Target -> b - v
|
|
|
|
|
|
|
|
insertBudgetTx :: MonadFinance m => BudgetTx -> SqlPersistT m [InsertError]
|
|
|
|
insertBudgetTx BudgetTx {btFrom, btTo, btMeta, btValue, btDesc} = do
|
2023-01-30 21:47:17 -05:00
|
|
|
res <- splitPair (bsAcnt btFrom) (bsAcnt btTo) (bmCur btMeta) btValue
|
2023-02-12 16:23:32 -05:00
|
|
|
unlessLefts_ res $ \(sFrom, sTo) -> do
|
2023-02-05 18:45:56 -05:00
|
|
|
k <- insert $ TransactionR (bmCommit btMeta) (bmWhen btMeta) btDesc
|
|
|
|
insertBudgetLabel name k IncomeBucketR sFrom btFrom
|
|
|
|
insertBudgetLabel name k ExpenseBucketR sTo btTo
|
|
|
|
where
|
|
|
|
name = bmName btMeta
|
|
|
|
|
|
|
|
insertBudgetLabel
|
|
|
|
:: (MonadUnliftIO m, PersistRecordBackend record SqlBackend)
|
|
|
|
=> T.Text
|
|
|
|
-> Key TransactionR
|
|
|
|
-> (Key BudgetLabelR -> a -> record)
|
|
|
|
-> KeySplit
|
|
|
|
-> BudgetSplit a
|
|
|
|
-> SqlPersistT m ()
|
|
|
|
insertBudgetLabel name k bucketType split bs = do
|
|
|
|
sk <- insertSplit k split
|
|
|
|
bk <- insert $ BudgetLabelR sk name
|
|
|
|
forM_ (bsBucket bs) $ insert_ . bucketType bk
|
2023-01-30 21:47:17 -05:00
|
|
|
|
|
|
|
splitPair
|
2023-02-12 16:23:32 -05:00
|
|
|
:: MonadFinance m
|
2023-01-30 21:47:17 -05:00
|
|
|
=> AcntID
|
|
|
|
-> AcntID
|
|
|
|
-> CurID
|
|
|
|
-> Rational
|
2023-02-12 16:23:32 -05:00
|
|
|
-> SqlPersistT m (EitherErrs (KeySplit, KeySplit))
|
2023-01-30 21:47:17 -05:00
|
|
|
splitPair from to cur val = do
|
|
|
|
s1 <- split from (-val)
|
|
|
|
s2 <- split to val
|
|
|
|
return $ concatEithers2 s1 s2 (,)
|
|
|
|
where
|
|
|
|
split a v =
|
|
|
|
resolveSplit $
|
|
|
|
Split
|
|
|
|
{ sAcnt = a
|
|
|
|
, sValue = v
|
|
|
|
, sComment = ""
|
|
|
|
, sCurrency = cur
|
|
|
|
}
|
|
|
|
|
2022-12-11 17:51:11 -05:00
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
-- statements
|
|
|
|
|
2023-02-12 16:23:32 -05:00
|
|
|
insertStatements :: MonadFinance m => Config -> SqlPersistT m [InsertError]
|
2023-01-27 20:31:13 -05:00
|
|
|
insertStatements conf = concat <$> mapM insertStatement (statements conf)
|
2023-01-25 23:04:54 -05:00
|
|
|
|
2023-02-12 16:23:32 -05:00
|
|
|
insertStatement :: MonadFinance m => Statement -> SqlPersistT m [InsertError]
|
2023-01-28 22:55:07 -05:00
|
|
|
insertStatement (StmtManual m) = insertManual m
|
2022-12-11 17:51:11 -05:00
|
|
|
insertStatement (StmtImport i) = insertImport i
|
|
|
|
|
2023-02-12 16:23:32 -05:00
|
|
|
insertManual :: MonadFinance m => Manual -> SqlPersistT m [InsertError]
|
2023-01-05 22:16:06 -05:00
|
|
|
insertManual
|
|
|
|
m@Manual
|
|
|
|
{ manualDate = dp
|
|
|
|
, manualFrom = from
|
|
|
|
, manualTo = to
|
|
|
|
, manualValue = v
|
|
|
|
, manualCurrency = u
|
|
|
|
, manualDesc = e
|
|
|
|
} = do
|
2023-01-28 22:55:07 -05:00
|
|
|
whenHash CTManual m [] $ \c -> do
|
2023-02-12 16:23:32 -05:00
|
|
|
bounds <- lift $ askDBState kmStatementInterval
|
2023-02-05 10:34:26 -05:00
|
|
|
-- let days = expandDatePat bounds dp
|
|
|
|
let dayRes = expandDatePat bounds dp
|
|
|
|
unlessLefts dayRes $ \days -> do
|
|
|
|
txRes <- mapM tx days
|
2023-02-12 16:23:32 -05:00
|
|
|
unlessLefts_ (concatEithersL txRes) $ mapM_ (insertTx c)
|
2023-01-05 22:16:06 -05:00
|
|
|
where
|
|
|
|
tx day = txPair day from to u (dec2Rat v) e
|
2022-12-11 17:51:11 -05:00
|
|
|
|
2023-02-12 16:23:32 -05:00
|
|
|
insertImport :: MonadFinance m => Import -> SqlPersistT m [InsertError]
|
2023-01-27 20:31:13 -05:00
|
|
|
insertImport i = whenHash CTImport i [] $ \c -> do
|
2022-12-11 17:51:11 -05:00
|
|
|
-- TODO this isn't efficient, the whole file will be read and maybe no
|
|
|
|
-- transactions will be desired
|
2023-02-12 16:23:32 -05:00
|
|
|
recoverIO (lift $ readImport i) $ \r -> unlessLefts r $ \bs -> do
|
|
|
|
bounds <- expandBounds <$> lift (askDBState kmStatementInterval)
|
2023-02-05 10:34:26 -05:00
|
|
|
res <- mapM resolveTx $ filter (inBounds bounds . txDate) bs
|
2023-02-12 16:23:32 -05:00
|
|
|
unlessLefts_ (concatEithersL res) $ mapM_ (insertTx c)
|
2023-01-28 22:55:07 -05:00
|
|
|
where
|
|
|
|
recoverIO x rest = do
|
|
|
|
res <- tryIO x
|
|
|
|
case res of
|
|
|
|
Right r -> rest r
|
|
|
|
-- If file is not found (or something else happens) then collect the
|
|
|
|
-- error try the remaining imports
|
|
|
|
Left e -> return [InsertIOError $ showT e]
|
2022-12-11 17:51:11 -05:00
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
-- low-level transaction stuff
|
|
|
|
|
2023-01-05 22:16:06 -05:00
|
|
|
txPair
|
2023-02-12 16:23:32 -05:00
|
|
|
:: MonadFinance m
|
2023-01-05 22:16:06 -05:00
|
|
|
=> Day
|
|
|
|
-> AcntID
|
|
|
|
-> AcntID
|
2023-01-30 20:13:25 -05:00
|
|
|
-> CurID
|
2023-01-05 22:16:06 -05:00
|
|
|
-> Rational
|
|
|
|
-> T.Text
|
2023-02-12 16:23:32 -05:00
|
|
|
-> SqlPersistT m (EitherErrs KeyTx)
|
2022-12-11 17:51:11 -05:00
|
|
|
txPair day from to cur val desc = resolveTx tx
|
|
|
|
where
|
2023-01-05 22:16:06 -05:00
|
|
|
split a v = Split {sAcnt = a, sValue = v, sComment = "", sCurrency = cur}
|
|
|
|
tx =
|
|
|
|
Tx
|
|
|
|
{ txDescr = desc
|
|
|
|
, txDate = day
|
|
|
|
, txTags = []
|
|
|
|
, txSplits = [split from (-val), split to val]
|
|
|
|
}
|
2022-12-11 17:51:11 -05:00
|
|
|
|
2023-02-12 16:23:32 -05:00
|
|
|
resolveTx :: MonadFinance m => BalTx -> SqlPersistT m (EitherErrs KeyTx)
|
2023-01-05 22:16:06 -05:00
|
|
|
resolveTx t@Tx {txSplits = ss} = do
|
2023-01-28 22:55:07 -05:00
|
|
|
res <- concatEithersL <$> mapM resolveSplit ss
|
|
|
|
return $ fmap (\kss -> t {txSplits = kss}) res
|
2022-12-11 17:51:11 -05:00
|
|
|
|
2023-02-12 16:23:32 -05:00
|
|
|
resolveSplit :: MonadFinance m => BalSplit -> SqlPersistT m (EitherErrs KeySplit)
|
2023-01-05 22:16:06 -05:00
|
|
|
resolveSplit s@Split {sAcnt = p, sCurrency = c, sValue = v} = do
|
2022-12-11 17:51:11 -05:00
|
|
|
aid <- lookupAccountKey p
|
|
|
|
cid <- lookupCurrency c
|
|
|
|
sign <- lookupAccountSign p
|
|
|
|
-- TODO correct sign here?
|
|
|
|
-- TODO lenses would be nice here
|
2023-01-28 22:55:07 -05:00
|
|
|
return $ concatEither3 aid cid sign $ \aid_ cid_ sign_ ->
|
|
|
|
s
|
|
|
|
{ sAcnt = aid_
|
|
|
|
, sCurrency = cid_
|
|
|
|
, sValue = v * fromIntegral (sign2Int sign_)
|
|
|
|
}
|
|
|
|
|
2023-01-30 21:47:17 -05:00
|
|
|
insertTx :: MonadUnliftIO m => Key CommitR -> KeyTx -> SqlPersistT m ()
|
|
|
|
insertTx c Tx {txDate = d, txDescr = e, txSplits = ss} = do
|
2023-01-30 20:13:25 -05:00
|
|
|
k <- insert $ TransactionR c d e
|
2022-12-11 17:51:11 -05:00
|
|
|
mapM_ (insertSplit k) ss
|
|
|
|
|
2023-01-30 20:13:25 -05:00
|
|
|
insertSplit :: MonadUnliftIO m => Key TransactionR -> KeySplit -> SqlPersistT m (Key SplitR)
|
2023-01-05 22:16:06 -05:00
|
|
|
insertSplit t Split {sAcnt = aid, sCurrency = cid, sValue = v, sComment = c} = do
|
2023-01-30 20:13:25 -05:00
|
|
|
insert $ SplitR t cid aid c v
|
2023-01-28 22:55:07 -05:00
|
|
|
|
2023-02-12 16:23:32 -05:00
|
|
|
lookupAccount :: MonadFinance m => AcntID -> SqlPersistT m (EitherErr (Key AccountR, AcntSign))
|
|
|
|
lookupAccount p = lookupErr (DBKey AcntField) p <$> lift (askDBState kmAccount)
|
2023-01-28 22:55:07 -05:00
|
|
|
|
2023-02-12 16:23:32 -05:00
|
|
|
lookupAccountKey :: MonadFinance m => AcntID -> SqlPersistT m (EitherErr (Key AccountR))
|
2023-01-28 22:55:07 -05:00
|
|
|
lookupAccountKey = fmap (fmap fst) . lookupAccount
|
|
|
|
|
2023-02-12 16:23:32 -05:00
|
|
|
lookupAccountSign :: MonadFinance m => AcntID -> SqlPersistT m (EitherErr AcntSign)
|
2023-01-28 22:55:07 -05:00
|
|
|
lookupAccountSign = fmap (fmap snd) . lookupAccount
|
|
|
|
|
2023-02-12 16:23:32 -05:00
|
|
|
lookupCurrency :: MonadFinance m => T.Text -> SqlPersistT m (EitherErr (Key CurrencyR))
|
|
|
|
lookupCurrency c = lookupErr (DBKey CurField) c <$> lift (askDBState kmCurrency)
|