73 lines
2.7 KiB
Haskell
73 lines
2.7 KiB
Haskell
{-# LANGUAGE UndecidableInstances #-}
|
|
{-# OPTIONS_GHC -fno-warn-orphans #-}
|
|
|
|
module CryptoID
|
|
( module CryptoID
|
|
, module Data.CryptoID.Poly.ImplicitNamespace
|
|
, module Data.UUID.Cryptographic.ImplicitNamespace
|
|
, module System.FilePath.Cryptographic.ImplicitNamespace
|
|
) where
|
|
|
|
|
|
import Import.NoModel
|
|
import Model
|
|
|
|
import CryptoID.TH
|
|
|
|
import qualified Data.CryptoID as E
|
|
import Data.CryptoID.Poly.ImplicitNamespace
|
|
import Data.UUID.Cryptographic.ImplicitNamespace
|
|
import System.FilePath.Cryptographic.ImplicitNamespace
|
|
|
|
import qualified Data.Text as Text
|
|
|
|
import Data.CaseInsensitive (CI)
|
|
import qualified Data.CaseInsensitive as CI
|
|
|
|
import Data.Aeson (ToJSON(..), ToJSONKey(..), ToJSONKeyFunction(..), FromJSON(..), FromJSONKey(..), FromJSONKeyFunction(..), Value(..), withText)
|
|
import Data.Aeson.Encoding (text)
|
|
|
|
import Text.Blaze (ToMarkup(..))
|
|
|
|
|
|
instance {-# OVERLAPPING #-} MonadThrow m => MonadCrypto (ReaderT CryptoIDKey m) where
|
|
type MonadCryptoKey (ReaderT CryptoIDKey m) = CryptoIDKey
|
|
cryptoIDKey f = ask >>= f
|
|
|
|
|
|
-- Generates CryptoUUID... and CryptoFileName... Datatypes
|
|
decCryptoIDs [ ''SubmissionId
|
|
, ''FileId
|
|
, ''UserId
|
|
, ''SheetId
|
|
, ''SystemMessageId
|
|
, ''SystemMessageTranslationId
|
|
, ''StudyFeaturesId
|
|
, ''ExamOccurrenceId
|
|
, ''ExamPartId
|
|
, ''AllocationId
|
|
, ''CourseApplicationId
|
|
, ''CourseId
|
|
, ''CourseNewsId
|
|
, ''CourseEventId
|
|
, ''TutorialId
|
|
]
|
|
|
|
-- CryptoIDNamespace (CI FilePath) SubmissionId ~ "Submission"
|
|
instance {-# OVERLAPS #-} PathPiece (E.CryptoID "Submission" (CI FilePath)) where
|
|
fromPathPiece (Text.unpack -> piece) = do
|
|
piece' <- (stripPrefix `on` map CI.mk) "uwa" piece
|
|
return . CryptoID . CI.mk $ map CI.original piece'
|
|
toPathPiece = Text.pack . ("uwa" <>) . CI.foldedCase . ciphertext
|
|
|
|
instance {-# OVERLAPS #-} ToJSON (E.CryptoID "Submission" (CI FilePath)) where
|
|
toJSON = String . toPathPiece
|
|
instance {-# OVERLAPS #-} ToJSONKey (E.CryptoID "Submission" (CI FilePath)) where
|
|
toJSONKey = ToJSONKeyText toPathPiece (text . toPathPiece)
|
|
instance {-# OVERLAPS #-} FromJSON (E.CryptoID "Submission" (CI FilePath)) where
|
|
parseJSON = withText "CryptoFileNameSubmission" $ maybe (fail "Could not parse CryptoFileNameSubmission") return . fromPathPiece
|
|
instance {-# OVERLAPS #-} FromJSONKey (E.CryptoID "Submission" (CI FilePath)) where
|
|
fromJSONKey = FromJSONKeyTextParser $ maybe (fail "Could not parse CryptoFileNameSubmission") return . fromPathPiece
|
|
instance {-# OVERLAPS #-} ToMarkup (E.CryptoID "Submission" (CI FilePath)) where
|
|
toMarkup = toMarkup . toPathPiece
|