telega-0.3.0: Network/API/Telegram/Bot/Field/URI.hs
module Network.API.Telegram.Bot.Field.URI (URI (..)) where
import "aeson" Data.Aeson (FromJSON (parseJSON), ToJSON (toJSON), withText)
import "base" Control.Applicative (pure)
import "base" Data.Eq (Eq)
import "base" Data.Function ((.))
import "base" Data.Functor ((<$>))
import "text" Data.Text (Text)
import Network.API.Telegram.Bot.Property.Accessible (Accessible (access))
import Network.API.Telegram.Bot.Property (Identifiable (Identificator, ident))
newtype URI = URI Text deriving Eq
instance Accessible Text URI where
access f (URI txt) = (\txt' -> URI txt') <$> f txt
instance Identifiable URI where
type Identificator URI = Text
ident (URI txt) = txt
instance FromJSON URI where
parseJSON = withText "URI" (pure . URI)
instance ToJSON URI where
toJSON (URI txt) = toJSON txt