Implement memo parser

This commit is contained in:
Rene Vergara 2023-03-10 15:31:47 -06:00
parent 44f14d6abd
commit e437da2841
Signed by: pitmutt
GPG Key ID: 65122AD495A7F5B2
5 changed files with 131 additions and 2 deletions

View File

@ -4,6 +4,7 @@ module Tasks where
import Config import Config
import Database.MongoDB import Database.MongoDB
import Text.Megaparsec hiding (State)
import ZGoBackend import ZGoBackend
main :: IO () main :: IO ()

View File

@ -60,6 +60,8 @@ library:
- ghc-prim - ghc-prim
- network - network
- crypto-rng - crypto-rng
- megaparsec
- uuid
executables: executables:
zgo-backend-exe: zgo-backend-exe:
@ -87,6 +89,7 @@ executables:
- configurator - configurator
- warp-tls - warp-tls
- warp - warp
- megaparsec
zgo-token-refresh: zgo-token-refresh:
main: TokenRefresh.hs main: TokenRefresh.hs
source-dirs: app source-dirs: app
@ -113,6 +116,7 @@ executables:
- configurator - configurator
- warp-tls - warp-tls
- warp - warp
- megaparsec
zgo-tasks: zgo-tasks:
main: Tasks.hs main: Tasks.hs
source-dirs: app source-dirs: app
@ -130,6 +134,7 @@ executables:
- warp-tls - warp-tls
- warp - warp
- time - time
- megaparsec
tests: tests:
zgo-backend-test: zgo-backend-test:

View File

@ -33,6 +33,7 @@ import Data.Time.Clock
import Data.Time.Clock.POSIX import Data.Time.Clock.POSIX
import Data.Time.Format import Data.Time.Format
import Data.Typeable import Data.Typeable
import qualified Data.UUID as U
import qualified Data.Vector as V import qualified Data.Vector as V
import Data.Vector.Internal.Check (doChecks) import Data.Vector.Internal.Check (doChecks)
import Data.Word import Data.Word
@ -55,6 +56,7 @@ import System.Random
import Test.QuickCheck import Test.QuickCheck
import Test.QuickCheck.Instances import Test.QuickCheck.Instances
import Test.QuickCheck.Property (Result(ok)) import Test.QuickCheck.Property (Result(ok))
import Text.Megaparsec (runParser)
import Text.Regex import Text.Regex
import Text.Regex.Base import Text.Regex.Base
import User import User
@ -355,6 +357,22 @@ zToZGoTx (ZcashTx t a aZ bh bt c conf m) = do
ZGoTx Nothing nAddy sess conf bt a t m ZGoTx Nothing nAddy sess conf bt a t m
else ZGoTx Nothing "" "" conf bt a t m else ZGoTx Nothing "" "" conf bt a t m
zToZGoTx' :: ZcashTx -> ZGoTx
zToZGoTx' (ZcashTx t a aZ bh bt c conf m) = do
let zM = runParser pZGoMemo (T.unpack t) m
case zM of
Right zM' ->
ZGoTx
Nothing
(fromMaybe "" $ m_address zM')
(maybe "" U.toText $ m_session zM')
conf
bt
a
t
m
Left e -> error "Failed to parse ZGo memo"
-- |Type to model a price in the ZGo database -- |Type to model a price in the ZGo database
data ZGoPrice = data ZGoPrice =
ZGoPrice ZGoPrice

View File

@ -6,9 +6,15 @@ module ZGoTx where
import Data.Aeson import Data.Aeson
import qualified Data.Bson as B import qualified Data.Bson as B
import Data.Char
import Data.Maybe
import qualified Data.Text as T import qualified Data.Text as T
import qualified Data.UUID as U
import Data.Void
import Database.MongoDB import Database.MongoDB
import GHC.Generics import GHC.Generics
import Text.Megaparsec hiding (State)
import Text.Megaparsec.Char
-- | Type to model a ZGo transaction -- | Type to model a ZGo transaction
data ZGoTx = data ZGoTx =
@ -92,3 +98,97 @@ instance Val ZGoTx where
, "txid" =: t , "txid" =: t
, "memo" =: m , "memo" =: m
] ]
-- | Type to represent and parse ZGo memos
data ZGoMemo =
ZGoMemo
{ m_session :: Maybe U.UUID
, m_address :: Maybe T.Text
, m_payment :: Bool
}
deriving (Eq)
data MemoToken
= Login !U.UUID
| PayMsg !U.UUID
| Address !T.Text
| Msg !T.Text
deriving (Show, Eq)
type Parser = Parsec Void T.Text
pSession :: Parser MemoToken
pSession = do
string "ZGO"
pay <- optional $ char 'p'
string "::"
s <- some $ hexDigitChar <|> char '-'
let u = U.fromString s
case u of
Nothing -> fail "Invalid UUID"
Just u' -> do
if isJust pay
then pure $ PayMsg u'
else pure $ Login u'
pSaplingAddress :: Parser MemoToken
pSaplingAddress = do
string "zs"
a <- some alphaNumChar
if length a /= 76
then fail "Failed to parse Sapling address"
else pure $ Address $ T.pack ("zs" <> a)
pMsg :: Parser MemoToken
pMsg = do
Msg . T.pack <$>
some
(alphaNumChar <|> punctuationChar <|> symbolChar <|>
charCategory OtherSymbol)
pMemo :: Parser MemoToken
pMemo = do
optional spaceChar
pSession <|> pSaplingAddress <|> pMsg
isMemoToken :: T.Text -> MemoToken -> Bool
isMemoToken kind t =
case kind of
"session" ->
case t of
PayMsg i -> True
Login j -> True
_ -> False
"address" ->
case t of
Address a -> True
_ -> False
"payment" ->
case t of
PayMsg i -> True
_ -> False
_ -> False
pZGoMemo :: Parser ZGoMemo
pZGoMemo = do
tks <- some pMemo
pure $ ZGoMemo (isSession tks) (isAddress tks) (isPayment tks)
where
isPayment tks =
not (null tks) &&
case head tks of
PayMsg x -> True
_ -> False
isAddress tks =
if not (null tks)
then case head tks of
Address x -> Just x
_ -> Nothing
else Nothing
isSession tks =
if not (null tks)
then case head tks of
Login x -> Just x
PayMsg y -> Just y
_ -> Nothing
else Nothing

View File

@ -5,13 +5,13 @@ cabal-version: 1.12
-- see: https://github.com/sol/hpack -- see: https://github.com/sol/hpack
name: zgo-backend name: zgo-backend
version: 1.2.6 version: 1.3.0
synopsis: Haskell Back-end for the ZGo point-of-sale application synopsis: Haskell Back-end for the ZGo point-of-sale application
description: Please see the README at <https://git.vergara.tech/Vergara_Tech//zgo-backend#readme> description: Please see the README at <https://git.vergara.tech/Vergara_Tech//zgo-backend#readme>
category: Web category: Web
author: Rene Vergara author: Rene Vergara
maintainer: rene@vergara.network maintainer: rene@vergara.network
copyright: Copyright (c) 2022 Vergara Technologies LLC copyright: Copyright (c) 2023 Vergara Technologies LLC
license: BOSL license: BOSL
license-file: LICENSE license-file: LICENSE
build-type: Simple build-type: Simple
@ -58,6 +58,7 @@ library
, http-conduit , http-conduit
, http-types , http-types
, jwt , jwt
, megaparsec
, memory , memory
, mongoDB , mongoDB
, network , network
@ -71,6 +72,7 @@ library
, text , text
, time , time
, unordered-containers , unordered-containers
, uuid
, vector , vector
, wai , wai
, wai-cors , wai-cors
@ -94,6 +96,7 @@ executable zgo-backend-exe
, configurator , configurator
, http-conduit , http-conduit
, http-types , http-types
, megaparsec
, mongoDB , mongoDB
, scotty , scotty
, securemem , securemem
@ -116,6 +119,7 @@ executable zgo-tasks
ghc-options: -main-is Tasks -threaded -rtsopts -with-rtsopts=-N -Wall ghc-options: -main-is Tasks -threaded -rtsopts -with-rtsopts=-N -Wall
build-depends: build-depends:
base base
, megaparsec
, mongoDB , mongoDB
, scotty , scotty
, time , time
@ -140,6 +144,7 @@ executable zgo-token-refresh
, configurator , configurator
, http-conduit , http-conduit
, http-types , http-types
, megaparsec
, mongoDB , mongoDB
, scotty , scotty
, securemem , securemem