{-# LANGUAGE CPP #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE LambdaCase #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE QuasiQuotes #-} module Simplex.Chat.Store.Badges ( BadgeCodeRedemption (..), UserBadgePurchase (..), getUserBadgePurchase, getBadgePurchase, userHasBadge, setBadgeAlertAcked, clearShownBadge, getBadgeCodeRedemption, createBadgeCodeRedemption, deleteBadgeCodeRedemption, createCodeBadgePurchase, getCodeBadgePurchase, storeBadgeIssuance, getLatestIssuedCredential, storeBadgeStatement, getBadgeLedgerLastEntry, getBadgeLedgerEntryId, ) where import Control.Concurrent.STM (TVar, atomically) import Crypto.Random (ChaChaDRG) import qualified Data.Aeson as J import qualified Data.ByteString.Lazy.Char8 as LB import Data.Int (Int64) import Data.Maybe (isJust) import Data.Text (Text) import Data.Time.Clock (UTCTime) import Simplex.Chat.Badges import Simplex.Chat.Badges.Ledger import Simplex.Chat.Badges.Service (StatementCreditType (..), StatementDebitType (..), StatementEntry (..), StatementEntryType (..)) import Simplex.Chat.Badges.Types (BadgeAlertKind, BadgePurchaseStatus (..)) import Simplex.Chat.Store.Shared (insertedRowId) import Simplex.Chat.Types import Simplex.Messaging.Agent.Store.DB (Binary (..), BoolInt (..)) import qualified Simplex.Messaging.Agent.Store.DB as DB import qualified Simplex.Messaging.Crypto as C import Simplex.Messaging.Encoding.String (strEncode) import Simplex.Messaging.Util (decodeJSON, maybeFirstRow, maybeFirstRow', safeDecodeUtf8) #if defined(dbPostgres) import Database.PostgreSQL.Simple (Only (..), (:.) (..)) import Database.PostgreSQL.Simple.SqlQQ (sql) #else import Database.SQLite.Simple (Only (..), (:.) (..)) import Database.SQLite.Simple.QQ (sql) #endif -- | The keys one redemption attempt is signed with, stashed before the request is sent so that a -- retry reaches the service as the same signer and is answered with the credential already issued. data BadgeCodeRedemption = BadgeCodeRedemption { redemptionId :: Int64, purchaseKey :: C.PublicKeyEd25519, purchasePrivKey :: C.PrivateKeyEd25519, masterKey :: BadgeMasterKey } getBadgeCodeRedemption :: DB.Connection -> User -> Text -> IO (Maybe BadgeCodeRedemption) getBadgeCodeRedemption db User {userId} code = maybeFirstRow toRedemption $ DB.query db [sql| SELECT badge_code_redemption_id, purchase_key, purchase_priv_key, master_key FROM badge_code_redemptions WHERE user_id = ? AND code = ? |] (userId, code) where toRedemption (redemptionId, purchaseKey, purchasePrivKey, Binary mk) = BadgeCodeRedemption {redemptionId, purchaseKey, purchasePrivKey, masterKey = BadgeMasterKey mk} createBadgeCodeRedemption :: DB.Connection -> TVar ChaChaDRG -> User -> Text -> UTCTime -> IO BadgeCodeRedemption createBadgeCodeRedemption db g User {userId} code now = do (purchaseKey, purchasePrivKey) <- atomically $ C.generateKeyPair g masterKey@(BadgeMasterKey mk) <- generateMasterKey g DB.execute db [sql| INSERT INTO badge_code_redemptions (user_id, code, purchase_key, purchase_priv_key, master_key, created_at) VALUES (?,?,?,?,?,?) |] (userId, code, purchaseKey, purchasePrivKey, Binary mk, now) redemptionId <- insertedRowId db pure BadgeCodeRedemption {redemptionId, purchaseKey, purchasePrivKey, masterKey} -- | Drop a stashed attempt whose code the service refused for good, unless a purchase already -- came from it - badge_purchases references this row. deleteBadgeCodeRedemption :: DB.Connection -> Int64 -> IO () deleteBadgeCodeRedemption db redemptionId = DB.execute db [sql| DELETE FROM badge_code_redemptions WHERE badge_code_redemption_id = ? AND NOT EXISTS (SELECT 1 FROM badge_purchases WHERE badge_code_redemption_id = ?) |] (redemptionId, redemptionId) -- | 'False' when the code was already redeemed here: the service replays the credential it -- issued, and that must add no purchase and leave the shown badge alone. createCodeBadgePurchase :: DB.Connection -> User -> BadgeCodeRedemption -> BadgeCredential -> UTCTime -> IO (Int64, Bool) createCodeBadgePurchase db User {userId} redemption credential now = getCodeBadgePurchase db redemption >>= \case Just purchaseId -> pure (purchaseId, False) Nothing -> do DB.execute db [sql| INSERT INTO badge_purchases (user_id, purchase_key, purchase_priv_key, master_key, initial_badge_type, current_badge_type, status, badge_code_redemption_id, created_at, updated_at) VALUES (?,?,?,?,?,?,?,?,?,?) |] (userId, purchaseKey, purchasePrivKey, Binary mk, badgeType, badgeType, PSIssued, redemptionId, now, now) purchaseId <- insertedRowId db DB.execute db "UPDATE users SET shown_badge_id = ? WHERE user_id = ?" (purchaseId, userId) pure (purchaseId, True) where BadgeCodeRedemption {redemptionId, purchaseKey, purchasePrivKey, masterKey = BadgeMasterKey mk} = redemption BadgeCredential {badgeInfo = BadgeInfo {badgeType}} = credential -- | The period comes from the ledger, the expiry from the credential, which runs a week longer. -- 'False' means no issuance row was written, which the caller reports rather than drop in silence. -- A replayed statement names a month already issued, and one month has one issuance. storeBadgeIssuance :: DB.Connection -> TVar ChaChaDRG -> Int64 -> Int64 -> BadgeCredential -> UTCTime -> IO Bool storeBadgeIssuance db g badgePurchaseId entryId credential now = getIssuedPeriod db badgePurchaseId entryId >>= \case Nothing -> pure False Just (periodStart, periodEnd) -> do issuanceId <- safeDecodeUtf8 . strEncode <$> atomically (C.randomBytes 16 g) DB.execute db [sql| INSERT INTO badge_issuances (issuance_id, badge_purchase_id, entry_id, badge_type, period_start, period_end, expiry, credential, created_at) VALUES (?,?,?,?,?,?,?,?,?) ON CONFLICT (badge_purchase_id, entry_id) DO NOTHING |] ((issuanceId, badgePurchaseId, entryId, badgeType) :. (periodStart, periodEnd, badgeExpiry, Binary (LB.toStrict $ J.encode credential), now)) pure True where BadgeCredential {badgeInfo = BadgeInfo {badgeType, badgeExpiry}} = credential getLatestIssuedCredential :: DB.Connection -> Int64 -> IO (Maybe BadgeCredential) getLatestIssuedCredential db badgePurchaseId = do rows <- DB.query db [sql| SELECT credential FROM badge_issuances WHERE badge_purchase_id = ? ORDER BY period_end DESC LIMIT 1 |] (Only badgePurchaseId) pure $ case rows of [Only (Binary bs)] -> J.decodeStrict' bs _ -> Nothing -- the start is read from the row before rather than by subtracting a month, which clips getIssuedPeriod :: DB.Connection -> Int64 -> Int64 -> IO (Maybe (UTCTime, UTCTime)) getIssuedPeriod db badgePurchaseId entryId = do rows <- DB.query db [sql| SELECT (SELECT prev.balance_start_ts FROM badge_ledger prev WHERE prev.badge_purchase_id = issued.badge_purchase_id AND prev.entry_id < issued.entry_id ORDER BY prev.entry_id DESC LIMIT 1), issued.balance_start_ts FROM badge_ledger issued WHERE issued.badge_purchase_id = ? AND issued.entry_id = ? |] (badgePurchaseId, entryId) -- no preceding row means no credit was ever stored, so the period this row issued is unknown pure $ case rows of [(Just periodStart, periodEnd)] -> Just (periodStart, periodEnd) _ -> Nothing getCodeBadgePurchase :: DB.Connection -> BadgeCodeRedemption -> IO (Maybe Int64) getCodeBadgePurchase db BadgeCodeRedemption {redemptionId} = maybeFirstRow fromOnly $ DB.query db "SELECT badge_purchase_id FROM badge_purchases WHERE badge_code_redemption_id = ?" (Only redemptionId) data UserBadgePurchase = UserBadgePurchase { badgePurchaseId :: Int64, purchaseKey :: C.PublicKeyEd25519, purchasePrivKey :: C.PrivateKeyEd25519, masterKey :: BadgeMasterKey, badgeType :: BadgeType, shown :: Bool, alertAcked :: Maybe (BadgeAlertKind, Text), alertSnoozeUntil :: Maybe UTCTime } -- | Newest, not the one shown_badge_id points at - retirement clears that, and the support ended -- alert is recomputed from this purchase after the badge stops being shown. getUserBadgePurchase :: DB.Connection -> User -> IO (Maybe UserBadgePurchase) getUserBadgePurchase db User {userId} = maybeFirstRow fromOnly newestId >>= maybe (pure Nothing) (getBadgePurchase db) where newestId = DB.query db [sql| SELECT badge_purchase_id FROM badge_purchases WHERE user_id = ? AND purchase_priv_key IS NOT NULL ORDER BY badge_purchase_id DESC LIMIT 1 |] (Only userId) -- shown is a CASE because in Postgres a comparison is boolean, which BoolInt rejects. getBadgePurchase :: DB.Connection -> Int64 -> IO (Maybe UserBadgePurchase) getBadgePurchase db purchaseId = maybeFirstRow toPurchase $ DB.query db [sql| SELECT p.badge_purchase_id, p.purchase_key, p.purchase_priv_key, p.master_key, p.current_badge_type, (CASE WHEN u.shown_badge_id = p.badge_purchase_id THEN 1 ELSE 0 END), p.alert_acked_kind, p.alert_acked_episode, p.alert_snooze_until FROM badge_purchases p JOIN users u ON u.user_id = p.user_id WHERE p.badge_purchase_id = ? AND p.purchase_priv_key IS NOT NULL |] (Only purchaseId) where toPurchase (badgePurchaseId, purchaseKey, purchasePrivKey, Binary mk, badgeType, shown_, ackedKind_, ackedEpisode_, alertSnoozeUntil) = UserBadgePurchase { badgePurchaseId, purchaseKey, purchasePrivKey, masterKey = BadgeMasterKey mk, badgeType, shown = unBI shown_, alertAcked = (,) <$> ackedKind_ <*> ackedEpisode_, alertSnoozeUntil } -- | Whether a badge is on the profile now: set when a redemption stores one, cleared when it is -- retired. Read as the id rather than as a comparison, which in Postgres would be a boolean. userHasBadge :: DB.Connection -> User -> IO Bool userHasBadge db User {userId} = maybeFirstRow' False shownBadge $ DB.query db "SELECT shown_badge_id FROM users WHERE user_id = ?" (Only userId) where shownBadge :: Only (Maybe Int64) -> Bool shownBadge = isJust . fromOnly -- | An ack and a snooze both record the occurrence answered; a snooze also records how long it -- holds, so that it silences that occurrence and not whichever one is derived next. setBadgeAlertAcked :: DB.Connection -> Int64 -> BadgeAlertKind -> Text -> Maybe UTCTime -> IO () setBadgeAlertAcked db badgePurchaseId kind episode snoozeUntil = DB.execute db "UPDATE badge_purchases SET alert_acked_kind = ?, alert_acked_episode = ?, alert_snooze_until = ? WHERE badge_purchase_id = ?" (kind, episode, snoozeUntil, badgePurchaseId) -- | Stop showing a badge that has expired unrenewed; the profile update is broadcast by the caller. clearShownBadge :: DB.Connection -> User -> Int64 -> IO () clearShownBadge db User {userId} badgePurchaseId = DB.execute db "UPDATE users SET shown_badge_id = NULL WHERE user_id = ? AND shown_badge_id = ?" (userId, badgePurchaseId) -- | Verbatim, entry_uuid and type included: the client authors no row, or the two sides stop -- holding the same ledger. DO NOTHING makes a re-applied statement a no-op rather than a throw. -- An entry whose balance does not follow from the one before it is stored and marked, not refused. storeBadgeStatement :: DB.Connection -> Int64 -> BadgeType -> Maybe StatementEntry -> [StatementEntry] -> UTCTime -> IO () storeBadgeStatement db badgePurchaseId badgeType tip entries now = mapM_ storeEntry $ balanceChecked now badgeType tip entries where storeEntry (StatementEntry {entryId, changeMonths, balanceMonths, balanceStartTs, balanceAnchorTs, balanceBadgeType, wasPausedSince, createdAt, entryType}, checked) = DB.execute db [sql| INSERT INTO badge_ledger (entry_uuid, badge_purchase_id, change_months, balance_months, balance_start_ts, balance_anchor_ts, balance_badge_type, was_paused_since, service_created_at, created_at, entry_type, entry_credit_type, entry_debit_type, entry_type_unknown, entry_type_value, balance_checked) VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?) ON CONFLICT (entry_uuid) DO NOTHING |] ( (entryId, badgePurchaseId, changeMonths, balanceMonths, balanceStartTs, balanceAnchorTs, balanceBadgeType, wasPausedSince) :. (createdAt, now, entryTypeT, creditType, debitType, BI typeUnknown, entryTypeValue, BI <$> checked) ) where (entryTypeT, creditType, debitType) = entryTypeColumns entryType -- kept for every entry, not only for a type this version cannot decode: a tag alone does -- not rebuild the types that name an invoice, a charge or another purchase entryTypeValue = safeDecodeUtf8 . LB.toStrict $ case entryType of SECredit c -> J.encode c SEDebit d -> J.encode d typeUnknown = case entryType of SECredit SCUnknown {} -> True SEDebit SDUnknown {} -> True _ -> False -- | The balance is the last row; nothing derives it by summing the history. getBadgeLedgerLastEntry :: DB.Connection -> Int64 -> IO (Maybe StatementEntry) getBadgeLedgerLastEntry db badgePurchaseId = maybeFirstRow' Nothing toEntry $ DB.query db [sql| SELECT entry_uuid, change_months, balance_months, balance_start_ts, balance_anchor_ts, balance_badge_type, was_paused_since, service_created_at, entry_type, entry_credit_type, entry_debit_type, entry_type_value FROM badge_ledger WHERE badge_purchase_id = ? ORDER BY entry_id DESC LIMIT 1 |] (Only badgePurchaseId) where toEntry ((entryId, changeMonths, balanceMonths, balanceStartTs, balanceAnchorTs, balanceBadgeType) :. (wasPausedSince, createdAt, entryType_, credit_, debit_, value_)) = (\entryType -> StatementEntry {entryId, changeMonths, balanceMonths, balanceStartTs, balanceAnchorTs, balanceBadgeType, wasPausedSince, createdAt, entryType}) <$> maybe (entryTypeFromColumns entryType_ credit_ debit_) (entryTypeFromValue entryType_) value_ -- | Decodes the stored JSON rather than rebuilding from the tag, so a version that has since -- learnt the type reads it with its fields, and one that has not still gets it back verbatim. entryTypeFromValue :: Text -> Text -> Maybe StatementEntryType entryTypeFromValue entryTypeT value_ = case entryTypeT of "credit" -> SECredit <$> decodeJSON value_ "debit" -> SEDebit <$> decodeJSON value_ _ -> Nothing getBadgeLedgerEntryId :: DB.Connection -> Int64 -> Text -> IO (Maybe Int64) getBadgeLedgerEntryId db badgePurchaseId entryUuid = maybeFirstRow fromOnly $ DB.query db "SELECT entry_id FROM badge_ledger WHERE badge_purchase_id = ? AND entry_uuid = ?" (badgePurchaseId, entryUuid)