{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE TemplateHaskell #-}

module Faker.Provider.Tea where

import Config
import Control.Monad.Catch
import Data.Text (Text)
import Data.Vector (Vector)
import Data.Monoid ((<>))
import Data.Yaml
import Faker
import Faker.Internal
import Faker.Provider.TH
import Language.Haskell.TH


parseTea :: FromJSON a => FakerSettings -> Value -> Parser a
parseTea :: FakerSettings -> Value -> Parser a
parseTea FakerSettings
settings (Object Object
obj) = do
  Object
en <- Object
obj Object -> Key -> Parser Object
forall a. FromJSON a => Object -> Key -> Parser a
.: (FakerSettings -> Key
getLocaleKey FakerSettings
settings)
  Object
faker <- Object
en Object -> Key -> Parser Object
forall a. FromJSON a => Object -> Key -> Parser a
.: Key
"faker"
  a
tea <- Object
faker Object -> Key -> Parser a
forall a. FromJSON a => Object -> Key -> Parser a
.: Key
"tea"
  a -> Parser a
forall (f :: * -> *) a. Applicative f => a -> f a
pure a
tea
parseTea FakerSettings
settings Value
val = String -> Parser a
forall (m :: * -> *) a. MonadFail m => String -> m a
fail (String -> Parser a) -> String -> Parser a
forall a b. (a -> b) -> a -> b
$ String
"expected Object, but got " String -> String -> String
forall a. Semigroup a => a -> a -> a
<> (Value -> String
forall a. Show a => a -> String
show Value
val)

parseTeaField ::
     (FromJSON a, Monoid a) => FakerSettings -> AesonKey -> Value -> Parser a
parseTeaField :: FakerSettings -> Key -> Value -> Parser a
parseTeaField FakerSettings
settings Key
txt Value
val = do
  Object
tea <- FakerSettings -> Value -> Parser Object
forall a. FromJSON a => FakerSettings -> Value -> Parser a
parseTea FakerSettings
settings Value
val
  a
field <- Object
tea Object -> Key -> Parser (Maybe a)
forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
.:? Key
txt Parser (Maybe a) -> a -> Parser a
forall a. Parser (Maybe a) -> a -> Parser a
.!= a
forall a. Monoid a => a
mempty
  a -> Parser a
forall (f :: * -> *) a. Applicative f => a -> f a
pure a
field

parseTeaFields ::
     (FromJSON a, Monoid a) => FakerSettings -> [AesonKey] -> Value -> Parser a
parseTeaFields :: FakerSettings -> [Key] -> Value -> Parser a
parseTeaFields FakerSettings
settings [Key]
txts Value
val = do
  Value
tea <- FakerSettings -> Value -> Parser Value
forall a. FromJSON a => FakerSettings -> Value -> Parser a
parseTea FakerSettings
settings Value
val
  Value -> [Key] -> Parser a
forall a. FromJSON a => Value -> [Key] -> Parser a
helper Value
tea [Key]
txts
  where
    helper :: (FromJSON a) => Value -> [AesonKey] -> Parser a
    helper :: Value -> [Key] -> Parser a
helper Value
a [] = Value -> Parser a
forall a. FromJSON a => Value -> Parser a
parseJSON Value
a
    helper (Object Object
a) (Key
x:[Key]
xs) = do
      Value
field <- Object
a Object -> Key -> Parser Value
forall a. FromJSON a => Object -> Key -> Parser a
.: Key
x
      Value -> [Key] -> Parser a
forall a. FromJSON a => Value -> [Key] -> Parser a
helper Value
field [Key]
xs
    helper Value
a (Key
x:[Key]
xs) = String -> Parser a
forall (m :: * -> *) a. MonadFail m => String -> m a
fail (String -> Parser a) -> String -> Parser a
forall a b. (a -> b) -> a -> b
$ String
"expect Object, but got " String -> String -> String
forall a. Semigroup a => a -> a -> a
<> (Value -> String
forall a. Show a => a -> String
show Value
a)




parseUnresolvedTeaFields ::
     (FromJSON a, Monoid a)
  => FakerSettings
  -> [AesonKey]
  -> Value
  -> Parser (Unresolved a)
parseUnresolvedTeaFields :: FakerSettings -> [Key] -> Value -> Parser (Unresolved a)
parseUnresolvedTeaFields FakerSettings
settings [Key]
txts Value
val = do
  Value
tea <- FakerSettings -> Value -> Parser Value
forall a. FromJSON a => FakerSettings -> Value -> Parser a
parseTea FakerSettings
settings Value
val
  Value -> [Key] -> Parser (Unresolved a)
forall a. FromJSON a => Value -> [Key] -> Parser (Unresolved a)
helper Value
tea [Key]
txts
  where
    helper :: (FromJSON a) => Value -> [AesonKey] -> Parser (Unresolved a)
    helper :: Value -> [Key] -> Parser (Unresolved a)
helper Value
a [] = do
      a
v <- Value -> Parser a
forall a. FromJSON a => Value -> Parser a
parseJSON Value
a
      Unresolved a -> Parser (Unresolved a)
forall (f :: * -> *) a. Applicative f => a -> f a
pure (Unresolved a -> Parser (Unresolved a))
-> Unresolved a -> Parser (Unresolved a)
forall a b. (a -> b) -> a -> b
$ a -> Unresolved a
forall (f :: * -> *) a. Applicative f => a -> f a
pure a
v
    helper (Object Object
a) (Key
x:[Key]
xs) = do
      Value
field <- Object
a Object -> Key -> Parser Value
forall a. FromJSON a => Object -> Key -> Parser a
.: Key
x
      Value -> [Key] -> Parser (Unresolved a)
forall a. FromJSON a => Value -> [Key] -> Parser (Unresolved a)
helper Value
field [Key]
xs
    helper Value
a [Key]
_ = String -> Parser (Unresolved a)
forall (m :: * -> *) a. MonadFail m => String -> m a
fail (String -> Parser (Unresolved a))
-> String -> Parser (Unresolved a)
forall a b. (a -> b) -> a -> b
$ String
"expect Object, but got " String -> String -> String
forall a. Semigroup a => a -> a -> a
<> (Value -> String
forall a. Show a => a -> String
show Value
a)




$(genParser "tea" "type")

$(genProvider "tea" "type")







$(genParsers "tea" ["variety","black"])
$(genProviders "tea" ["variety","black"])

$(genParsers "tea" ["variety","oolong"])
$(genProviders "tea" ["variety","oolong"])

$(genParsers "tea" ["variety","green"])
$(genProviders "tea" ["variety","green"])

$(genParsers "tea" ["variety","white"])
$(genProviders "tea" ["variety","white"])

$(genParsers "tea" ["variety","herbal"])
$(genProviders "tea" ["variety","herbal"])