2022-05-11 20:04:46 +00:00
|
|
|
{-# LANGUAGE OverloadedStrings #-}
|
|
|
|
{-# LANGUAGE DeriveGeneric #-}
|
|
|
|
{-# LANGUAGE DuplicateRecordFields #-}
|
|
|
|
|
|
|
|
module ZGoTx where
|
|
|
|
|
|
|
|
import Data.Aeson
|
|
|
|
import qualified Data.Bson as B
|
|
|
|
import qualified Data.Text as T
|
|
|
|
import Database.MongoDB
|
|
|
|
import GHC.Generics
|
|
|
|
|
|
|
|
-- | Type to model a ZGo transaction
|
|
|
|
data ZGoTx =
|
|
|
|
ZGoTx
|
2022-05-17 17:47:27 +00:00
|
|
|
{ _id :: Maybe ObjectId
|
2022-05-11 20:04:46 +00:00
|
|
|
, address :: T.Text
|
|
|
|
, session :: T.Text
|
|
|
|
, confirmations :: Integer
|
|
|
|
, blocktime :: Integer
|
|
|
|
, amount :: Double
|
|
|
|
, txid :: T.Text
|
|
|
|
, memo :: T.Text
|
|
|
|
}
|
2022-05-17 17:47:27 +00:00
|
|
|
deriving (Eq, Show, Generic)
|
2022-05-11 20:04:46 +00:00
|
|
|
|
|
|
|
parseZGoTxBson :: B.Document -> Maybe ZGoTx
|
|
|
|
parseZGoTxBson d = do
|
|
|
|
i <- B.lookup "_id" d
|
|
|
|
a <- B.lookup "address" d
|
|
|
|
s <- B.lookup "session" d
|
|
|
|
c <- B.lookup "confirmations" d
|
|
|
|
am <- B.lookup "amount" d
|
|
|
|
t <- B.lookup "txid" d
|
|
|
|
m <- B.lookup "memo" d
|
|
|
|
bt <- B.lookup "blocktime" d
|
2022-05-17 17:47:27 +00:00
|
|
|
pure $ ZGoTx i a s c bt am t m
|
2022-05-11 20:04:46 +00:00
|
|
|
|
|
|
|
encodeZGoTxBson :: ZGoTx -> B.Document
|
|
|
|
encodeZGoTxBson (ZGoTx i a s c bt am t m) =
|
|
|
|
if not (null i)
|
2022-05-17 17:47:27 +00:00
|
|
|
then [ "_id" =: i
|
2022-05-11 20:04:46 +00:00
|
|
|
, "address" =: a
|
|
|
|
, "session" =: s
|
|
|
|
, "confirmations" =: c
|
|
|
|
, "blocktime" =: bt
|
|
|
|
, "amount" =: am
|
|
|
|
, "txid" =: t
|
|
|
|
, "memo" =: m
|
|
|
|
]
|
|
|
|
else [ "address" =: a
|
|
|
|
, "session" =: s
|
|
|
|
, "confirmations" =: c
|
|
|
|
, "blocktime" =: bt
|
|
|
|
, "amount" =: am
|
|
|
|
, "txid" =: t
|
|
|
|
, "memo" =: m
|
|
|
|
]
|
2022-05-17 17:47:27 +00:00
|
|
|
|
|
|
|
instance Val ZGoTx where
|
|
|
|
cast' (Doc d) = do
|
|
|
|
i <- B.lookup "_id" d
|
|
|
|
a <- B.lookup "address" d
|
|
|
|
s <- B.lookup "session" d
|
|
|
|
c <- B.lookup "confirmations" d
|
|
|
|
am <- B.lookup "amount" d
|
|
|
|
t <- B.lookup "txid" d
|
|
|
|
m <- B.lookup "memo" d
|
|
|
|
bt <- B.lookup "blocktime" d
|
|
|
|
Just (ZGoTx i a s c bt am t m)
|
|
|
|
cast' _ = Nothing
|
|
|
|
val (ZGoTx i a s c bt am t m) =
|
|
|
|
case i of
|
|
|
|
Just oid ->
|
|
|
|
Doc
|
|
|
|
[ "_id" =: i
|
|
|
|
, "address" =: a
|
|
|
|
, "session" =: s
|
|
|
|
, "confirmations" =: c
|
|
|
|
, "blocktime" =: bt
|
|
|
|
, "amount" =: am
|
|
|
|
, "txid" =: t
|
|
|
|
, "memo" =: m
|
|
|
|
]
|
|
|
|
Nothing ->
|
|
|
|
Doc
|
|
|
|
[ "address" =: a
|
|
|
|
, "session" =: s
|
|
|
|
, "confirmations" =: c
|
|
|
|
, "blocktime" =: bt
|
|
|
|
, "amount" =: am
|
|
|
|
, "txid" =: t
|
|
|
|
, "memo" =: m
|
|
|
|
]
|