{-# LANGUAGE Safe #-}
module Data.Text.Lazy.Encoding.Base64.URL
(
encodeBase64
, encodeBase64Unpadded
, decodeBase64
, decodeBase64With
, decodeBase64Unpadded
, decodeBase64UnpaddedWith
, decodeBase64Padded
, decodeBase64PaddedWith
, decodeBase64Lenient
, isBase64Url
, isValidBase64Url
) where
import Data.Bifunctor (first)
import Data.ByteString.Lazy (ByteString)
import qualified Data.ByteString.Lazy.Base64.URL as BL64U
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
BL64U.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
BL64U.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
BL64U.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 #-}
encodeBase64Unpadded :: TL.Text -> TL.Text
encodeBase64Unpadded :: Text -> Text
encodeBase64Unpadded = ByteString -> Text
BL64U.encodeBase64Unpadded (ByteString -> Text) -> (Text -> ByteString) -> Text -> Text
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Text -> ByteString
TL.encodeUtf8
{-# INLINE encodeBase64Unpadded #-}
decodeBase64Unpadded :: TL.Text -> Either T.Text TL.Text
decodeBase64Unpadded :: Text -> Either Text Text
decodeBase64Unpadded = (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
BL64U.decodeBase64Unpadded
(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 decodeBase64Unpadded #-}
decodeBase64UnpaddedWith
:: (ByteString -> Either err TL.Text)
-> ByteString
-> Either (Base64Error err) TL.Text
decodeBase64UnpaddedWith :: (ByteString -> Either err Text)
-> ByteString -> Either (Base64Error err) Text
decodeBase64UnpaddedWith ByteString -> Either err Text
f ByteString
t = case ByteString -> Either Text ByteString
BL64U.decodeBase64Unpadded 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 decodeBase64UnpaddedWith #-}
decodeBase64Padded :: TL.Text -> Either T.Text TL.Text
decodeBase64Padded :: Text -> Either Text Text
decodeBase64Padded = (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
BL64U.decodeBase64Padded
(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 decodeBase64Padded #-}
decodeBase64PaddedWith
:: (ByteString -> Either err TL.Text)
-> ByteString
-> Either (Base64Error err) TL.Text
decodeBase64PaddedWith :: (ByteString -> Either err Text)
-> ByteString -> Either (Base64Error err) Text
decodeBase64PaddedWith ByteString -> Either err Text
f ByteString
t = case ByteString -> Either Text ByteString
BL64U.decodeBase64Padded 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 decodeBase64PaddedWith #-}
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
BL64U.decodeBase64Lenient
(ByteString -> ByteString)
-> (Text -> ByteString) -> Text -> ByteString
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Text -> ByteString
TL.encodeUtf8
{-# INLINE decodeBase64Lenient #-}
isBase64Url :: TL.Text -> Bool
isBase64Url :: Text -> Bool
isBase64Url = ByteString -> Bool
BL64U.isBase64Url (ByteString -> Bool) -> (Text -> ByteString) -> Text -> Bool
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Text -> ByteString
TL.encodeUtf8
{-# INLINE isBase64Url #-}
isValidBase64Url :: TL.Text -> Bool
isValidBase64Url :: Text -> Bool
isValidBase64Url = ByteString -> Bool
BL64U.isValidBase64Url (ByteString -> Bool) -> (Text -> ByteString) -> Text -> Bool
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Text -> ByteString
TL.encodeUtf8
{-# INLINE isValidBase64Url #-}