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

module Faker.Provider.Construction where

import Config
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


parseConstruction :: FromJSON a => FakerSettings -> Value -> Parser a
parseConstruction :: FakerSettings -> Value -> Parser a
parseConstruction 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
construction <- Object
faker Object -> Key -> Parser a
forall a. FromJSON a => Object -> Key -> Parser a
.: Key
"construction"
  a -> Parser a
forall (f :: * -> *) a. Applicative f => a -> f a
pure a
construction
parseConstruction 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)

parseConstructionField ::
     (FromJSON a, Monoid a) => FakerSettings -> AesonKey -> Value -> Parser a
parseConstructionField :: FakerSettings -> Key -> Value -> Parser a
parseConstructionField FakerSettings
settings Key
txt Value
val = do
  Object
construction <- FakerSettings -> Value -> Parser Object
forall a. FromJSON a => FakerSettings -> Value -> Parser a
parseConstruction FakerSettings
settings Value
val
  a
field <- Object
construction 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

$(genParser "construction" "materials")

$(genProvider "construction" "materials")

$(genParser "construction" "subcontract_categories")

$(genProvider "construction" "subcontract_categories")

$(genParser "construction" "heavy_equipment")

$(genProvider "construction" "heavy_equipment")

$(genParser "construction" "roles")

$(genProvider "construction" "roles")

$(genParser "construction" "trades")

$(genProvider "construction" "trades")

$(genParser "construction" "standard_cost_codes")

$(genProvider "construction" "standard_cost_codes")