{-# LANGUAGE OverloadedStrings #-}
module Data.Text.Encoding.Base64
( encodeBase64
, decodeBase64
, decodeBase64With
, decodeBase64Lenient
, isBase64
, isValidBase64
) where
import Data.Bifunctor (first)
import Data.ByteString (ByteString)
import qualified Data.ByteString.Base64 as B64
import Data.Text (Text)
import qualified Data.Text.Encoding as T
import Data.Text.Encoding.Base64.Error
encodeBase64 :: Text -> Text
encodeBase64 :: Text -> Text
encodeBase64 = ByteString -> Text
B64.encodeBase64 (ByteString -> Text) -> (Text -> ByteString) -> Text -> Text
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Text -> ByteString
T.encodeUtf8
{-# INLINE encodeBase64 #-}
decodeBase64 :: Text -> Either Text 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
T.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
B64.decodeBase64 (ByteString -> Either Text ByteString)
-> (Text -> ByteString) -> Text -> Either Text ByteString
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Text -> ByteString
T.encodeUtf8
{-# INLINE decodeBase64 #-}
decodeBase64With
:: (ByteString -> Either err Text)
-> ByteString
-> Either (Base64Error err) Text
decodeBase64With :: (ByteString -> Either err Text)
-> ByteString -> Either (Base64Error err) Text
decodeBase64With ByteString -> Either err Text
f ByteString
t = case ByteString -> Either Text ByteString
B64.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 :: Text -> Text
decodeBase64Lenient :: Text -> Text
decodeBase64Lenient = ByteString -> Text
T.decodeLatin1
(ByteString -> Text) -> (Text -> ByteString) -> Text -> Text
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ByteString -> ByteString
B64.decodeBase64Lenient
(ByteString -> ByteString)
-> (Text -> ByteString) -> Text -> ByteString
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Text -> ByteString
T.encodeUtf8
{-# INLINE decodeBase64Lenient #-}
isBase64 :: Text -> Bool
isBase64 :: Text -> Bool
isBase64 = ByteString -> Bool
B64.isBase64 (ByteString -> Bool) -> (Text -> ByteString) -> Text -> Bool
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Text -> ByteString
T.encodeUtf8
{-# INLINE isBase64 #-}
isValidBase64 :: Text -> Bool
isValidBase64 :: Text -> Bool
isValidBase64 = ByteString -> Bool
B64.isValidBase64 (ByteString -> Bool) -> (Text -> ByteString) -> Text -> Bool
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Text -> ByteString
T.encodeUtf8
{-# INLINE isValidBase64 #-}