{-# LANGUAGE OverloadedStrings #-}

module Faker.Provider.Appliance 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


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

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

parseApplianceBrand ::
     (FromJSON a, Monoid a) => FakerSettings -> Value -> Parser a
parseApplianceBrand :: FakerSettings -> Value -> Parser a
parseApplianceBrand FakerSettings
settings = FakerSettings -> Key -> Value -> Parser a
forall a.
(FromJSON a, Monoid a) =>
FakerSettings -> Key -> Value -> Parser a
parseApplianceField FakerSettings
settings Key
"brand"

parseApplianceEquipment ::
     (FromJSON a, Monoid a) => FakerSettings -> Value -> Parser a
parseApplianceEquipment :: FakerSettings -> Value -> Parser a
parseApplianceEquipment FakerSettings
settings = FakerSettings -> Key -> Value -> Parser a
forall a.
(FromJSON a, Monoid a) =>
FakerSettings -> Key -> Value -> Parser a
parseApplianceField FakerSettings
settings Key
"equipment"

applianceBrandProvider ::
     (MonadThrow m, MonadIO m) => FakerSettings -> m (Vector Text)
applianceBrandProvider :: FakerSettings -> m (Vector Text)
applianceBrandProvider FakerSettings
settings =
  FakerSettings
-> SourceData
-> (FakerSettings -> Value -> Parser (Vector Text))
-> m (Vector Text)
forall (m :: * -> *) a.
(MonadThrow m, MonadIO m) =>
FakerSettings
-> SourceData -> (FakerSettings -> Value -> Parser a) -> m a
fetchData FakerSettings
settings SourceData
Appliance FakerSettings -> Value -> Parser (Vector Text)
forall a.
(FromJSON a, Monoid a) =>
FakerSettings -> Value -> Parser a
parseApplianceBrand

applianceEquipmentProvider ::
     (MonadThrow m, MonadIO m) => FakerSettings -> m (Vector Text)
applianceEquipmentProvider :: FakerSettings -> m (Vector Text)
applianceEquipmentProvider FakerSettings
settings =
  FakerSettings
-> SourceData
-> (FakerSettings -> Value -> Parser (Vector Text))
-> m (Vector Text)
forall (m :: * -> *) a.
(MonadThrow m, MonadIO m) =>
FakerSettings
-> SourceData -> (FakerSettings -> Value -> Parser a) -> m a
fetchData FakerSettings
settings SourceData
Appliance FakerSettings -> Value -> Parser (Vector Text)
forall a.
(FromJSON a, Monoid a) =>
FakerSettings -> Value -> Parser a
parseApplianceEquipment