{-# LANGUAGE Safe #-}
module Data.Text.Lazy.Encoding.Base64
(
encodeBase64
, decodeBase64
, decodeBase64With
, decodeBase64Lenient
, isBase64
, isValidBase64
) where
import Data.Bifunctor (first)
import Data.ByteString.Lazy (ByteString)
import qualified Data.ByteString.Lazy.Base64 as BL64
import qualified Data.Text as T
import Data.Text.Encoding.Base64.Error
import qualified Data.Text.Lazy as TL
import qualified Data.Text.Lazy.Encoding as TL
encodeBase64 :: TL.Text -> TL.Text
encodeBase64 :: Text -> Text
encodeBase64 = ByteString -> Text
BL64.encodeBase64 (ByteString -> Text) -> (Text -> ByteString) -> Text -> Text
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Text -> ByteString
TL.encodeUtf8
{-# INLINE encodeBase64 #-}
decodeBase64 :: TL.Text -> Either T.Text TL.Text
decodeBase64 :: Text -> Either Text Text
decodeBase64 = (ByteString -> Text) -> Either Text ByteString -> Either Text Text
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
fmap ByteString -> Text
TL.decodeLatin1 (Either Text ByteString -> Either Text Text)
-> (Text -> Either Text ByteString) -> Text -> Either Text Text
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ByteString -> Either Text ByteString
BL64.decodeBase64 (ByteString -> Either Text ByteString)
-> (Text -> ByteString) -> Text -> Either Text ByteString
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Text -> ByteString
TL.encodeUtf8
{-# INLINE decodeBase64 #-}
decodeBase64With
:: (ByteString -> Either err TL.Text)
-> ByteString
-> Either (Base64Error err) TL.Text
decodeBase64With :: (ByteString -> Either err Text)
-> ByteString -> Either (Base64Error err) Text
decodeBase64With ByteString -> Either err Text
f ByteString
t = case ByteString -> Either Text ByteString
BL64.decodeBase64 ByteString
t of
Left Text
de -> Base64Error err -> Either (Base64Error err) Text
forall a b. a -> Either a b
Left (Base64Error err -> Either (Base64Error err) Text)
-> Base64Error err -> Either (Base64Error err) Text
forall a b. (a -> b) -> a -> b
$ Text -> Base64Error err
forall e. Text -> Base64Error e
DecodeError Text
de
Right ByteString
a -> (err -> Base64Error err)
-> Either err Text -> Either (Base64Error err) Text
forall (p :: * -> * -> *) a b c.
Bifunctor p =>
(a -> b) -> p a c -> p b c
first err -> Base64Error err
forall e. e -> Base64Error e
ConversionError (ByteString -> Either err Text
f ByteString
a)
{-# INLINE decodeBase64With #-}
decodeBase64Lenient :: TL.Text -> TL.Text
decodeBase64Lenient :: Text -> Text
decodeBase64Lenient = ByteString -> Text
TL.decodeLatin1
(ByteString -> Text) -> (Text -> ByteString) -> Text -> Text
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ByteString -> ByteString
BL64.decodeBase64Lenient
(ByteString -> ByteString)
-> (Text -> ByteString) -> Text -> ByteString
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Text -> ByteString
TL.encodeUtf8
{-# INLINE decodeBase64Lenient #-}
isBase64 :: TL.Text -> Bool
isBase64 :: Text -> Bool
isBase64 = ByteString -> Bool
BL64.isBase64 (ByteString -> Bool) -> (Text -> ByteString) -> Text -> Bool
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Text -> ByteString
TL.encodeUtf8
{-# INLINE isBase64 #-}
isValidBase64 :: TL.Text -> Bool
isValidBase64 :: Text -> Bool
isValidBase64 = ByteString -> Bool
BL64.isValidBase64 (ByteString -> Bool) -> (Text -> ByteString) -> Text -> Bool
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Text -> ByteString
TL.encodeUtf8
{-# INLINE isValidBase64 #-}