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

module Faker.Provider.Source where

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

parseSource :: FromJSON a => FakerSettings -> Value -> Parser a
parseSource :: FakerSettings -> Value -> Parser a
parseSource FakerSettings
settings (Object Object
obj) = do
  Object
en <- Object
obj Object -> Text -> Parser Object
forall a. FromJSON a => Object -> Text -> Parser a
.: (FakerSettings -> Text
getLocale FakerSettings
settings)
  Object
faker <- Object
en Object -> Text -> Parser Object
forall a. FromJSON a => Object -> Text -> Parser a
.: Text
"faker"
  a
source <- Object
faker Object -> Text -> Parser a
forall a. FromJSON a => Object -> Text -> Parser a
.: Text
"source"
  a -> Parser a
forall (f :: * -> *) a. Applicative f => a -> f a
pure a
source
parseSource 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)

parseSourceField ::
     (FromJSON a, Monoid a) => FakerSettings -> Text -> Value -> Parser a
parseSourceField :: FakerSettings -> Text -> Value -> Parser a
parseSourceField FakerSettings
settings Text
txt Value
val = do
  Object
source <- FakerSettings -> Value -> Parser Object
forall a. FromJSON a => FakerSettings -> Value -> Parser a
parseSource FakerSettings
settings Value
val
  a
field <- Object
source Object -> Text -> Parser (Maybe a)
forall a. FromJSON a => Object -> Text -> Parser (Maybe a)
.:? Text
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

parseSourceFields ::
     (FromJSON a, Monoid a) => FakerSettings -> [Text] -> Value -> Parser a
parseSourceFields :: FakerSettings -> [Text] -> Value -> Parser a
parseSourceFields FakerSettings
settings [Text]
txts Value
val = do
  Value
source <- FakerSettings -> Value -> Parser Value
forall a. FromJSON a => FakerSettings -> Value -> Parser a
parseSource FakerSettings
settings Value
val
  Value -> [Text] -> Parser a
forall a. FromJSON a => Value -> [Text] -> Parser a
helper Value
source [Text]
txts
  where
    helper :: (FromJSON a) => Value -> [Text] -> Parser a
    helper :: Value -> [Text] -> Parser a
helper Value
a [] = Value -> Parser a
forall a. FromJSON a => Value -> Parser a
parseJSON Value
a
    helper (Object Object
a) (Text
x:[Text]
xs) = do
      Value
field <- Object
a Object -> Text -> Parser Value
forall a. FromJSON a => Object -> Text -> Parser a
.: Text
x
      Value -> [Text] -> Parser a
forall a. FromJSON a => Value -> [Text] -> Parser a
helper Value
field [Text]
xs
    helper Value
a (Text
x:[Text]
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)

$(genParsers "source" ["hello_world", "ruby"])

$(genProvidersSingle "source" ["hello_world", "ruby"])

$(genParsers "source" ["hello_world", "javascript"])

$(genProvidersSingle "source" ["hello_world", "javascript"])

$(genParsers "source" ["hello_world", "c"])

$(genProvidersSingle "source" ["hello_world", "c"])

$(genParsers "source" ["hello_world", "php"])

$(genProvidersSingle "source" ["hello_world", "php"])

$(genParsers "source" ["hello_world", "python"])

$(genProvidersSingle "source" ["hello_world", "python"])

$(genParsers "source" ["hello_world", "java"])

$(genProvidersSingle "source" ["hello_world", "java"])

$(genParsers "source" ["hello_world", "elixir"])

$(genProvidersSingle "source" ["hello_world", "elixir"])

$(genParsers "source" ["print", "ruby"])

$(genProvidersSingle "source" ["print", "ruby"])

$(genParsers "source" ["print", "javascript"])

$(genProvidersSingle "source" ["print", "javascript"])

$(genParsers "source" ["print", "c"])

$(genProvidersSingle "source" ["print", "c"])

$(genParsers "source" ["print", "php"])

$(genProvidersSingle "source" ["print", "php"])

$(genParsers "source" ["print", "python"])

$(genProvidersSingle "source" ["print", "python"])

$(genParsers "source" ["print", "java"])

$(genProvidersSingle "source" ["print", "java"])

$(genParsers "source" ["print", "elixir"])

$(genProvidersSingle "source" ["print", "elixir"])

$(genParsers "source" ["print_1_to_10", "ruby"])

$(genProvidersSingle "source" ["print_1_to_10", "ruby"])

$(genParsers "source" ["print_1_to_10", "javascript"])

$(genProvidersSingle "source" ["print_1_to_10", "javascript"])

$(genParsers "source" ["print_1_to_10", "c"])

$(genProvidersSingle "source" ["print_1_to_10", "c"])

$(genParsers "source" ["print_1_to_10", "php"])

$(genProvidersSingle "source" ["print_1_to_10", "php"])

$(genParsers "source" ["print_1_to_10", "python"])

$(genProvidersSingle "source" ["print_1_to_10", "python"])

$(genParsers "source" ["print_1_to_10", "java"])

$(genProvidersSingle "source" ["print_1_to_10", "java"])

$(genParsers "source" ["print_1_to_10", "elixir"])

$(genProvidersSingle "source" ["print_1_to_10", "elixir"])