ihp-1.4.0: IHP/Controller/Param.hs
{-# LANGUAGE MultiParamTypeClasses, TypeFamilies, FlexibleContexts, AllowAmbiguousTypes, FlexibleInstances, IncoherentInstances, UndecidableInstances, PolyKinds, BlockArguments, DataKinds #-}
{-|
Module: IHP.Controller.Param
Description: Accessing query parameters and the request body
Copyright: (c) digitally induced GmbH, 2020
-}
module IHP.Controller.Param where
import IHP.Prelude
import qualified Data.Either as Either
import IHP.Controller.RequestContext
import qualified Network.Wai as Wai
import qualified Data.UUID as UUID
import qualified IHP.ModelSupport as ModelSupport
import qualified Data.ByteString.Char8 as Char8
import IHP.ValidationSupport
import GHC.TypeLits
import qualified Data.Attoparsec.ByteString.Char8 as Attoparsec
import qualified GHC.Float as Float
import qualified Control.Exception as Exception
import IHP.Controller.Context
import qualified Data.Aeson as Aeson
import qualified Data.Aeson.KeyMap as Aeson
import qualified Data.Aeson.Key as Aeson
import qualified Data.Scientific as Scientific
import qualified Data.Vector as Vector
import qualified Control.DeepSeq as DeepSeq
import Text.Read (readMaybe)
-- | Returns a query or body parameter from the current request. The raw string
-- value is parsed before returning it. So the return value type depends on what
-- you expect (e.g. can be Int, Text, UUID, Bool, some custom type).
--
-- When the parameter is missing or cannot be parsed, an exception is thrown and
-- the current action is aborted. Use 'paramOrDefault' when you want to get a
-- default value instead of an exception, or 'paramOrNothing' to get @Nothing@
-- when the parameter is missing.
--
-- You can define a custom parameter parser by defining a 'ParamReader' instance.
--
-- __Example:__ Accessing a query parameter.
--
-- Let's say the request is:
--
-- > GET /UsersAction?maxItems=50
--
-- We can read @maxItems@ like this:
--
-- > action UsersAction = do
-- > let maxItems :: Int = param "maxItems"
--
--
-- __Example:__ Working with forms (Accessing a body parameter).
--
-- Let's say we have the following html form:
--
-- > <form method="POST" action="/HelloWorld"
-- > <input type="text" name="firstname" placeholder="Your firstname" />
-- > <button type="submit">Send</button>
-- > </form>
--
-- The form has firstname text field and a send button.
-- When the form is submitted, it's send to @/HelloWorld@.
--
-- The following action reads the value of the submitted firstname and prints out @Hello firstname@:
--
-- > action HelloWorldAction = do
-- > let firstname = param "firstname"
-- > renderPlain ("Hello " <> firstname)
--
--
-- __Example:__ Missing parameters
--
-- Let's say the request is:
--
-- > GET /HelloWorldAction
--
-- But the action requires us to provide a firstname, like:
--
-- > action HelloWorldAction = do
-- > let firstname = param "firstname"
-- > renderPlain ("Hello " <> firstname)
--
-- Running the request @GET /HelloWorldAction@ without the firstname parameter will cause an
-- 'ParamNotFoundException' to be thrown with:
--
-- > param: Parameter 'firstname' not found
param :: (?context :: ControllerContext) => (ParamReader valueType) => ByteString -> valueType
param !name = case paramOrError name of
Left exception -> Exception.throw exception
Right value -> value
{-# INLINABLE param #-}
-- | Similiar to 'param' but works with multiple params. Useful when working with checkboxes.
--
-- Given a query like:
--
-- > ingredients=milk&ingredients=egg
--
-- This will return:
--
-- >>> paramList @Text "ingredients"
-- ["milk", "egg"]
--
-- When no parameter with the name is given, an empty list is returned:
--
-- >>> paramList @Text "not_given_in_url"
-- []
--
-- When a value cannot be parsed, this function will fail similiar to 'param'.
--
-- Related: https://stackoverflow.com/questions/63875081/how-can-i-pass-list-params-in-ihp-forms/63879113
paramList :: forall valueType. (?context :: ControllerContext, DeepSeq.NFData valueType, ParamReader valueType) => ByteString -> [valueType]
paramList name =
allParams
|> filter (\(paramName, paramValue) -> paramName == name)
|> mapMaybe (\(paramName, paramValue) -> paramValue)
|> map (readParameter @valueType)
|> map (Either.fromRight (error (paramParserErrorMessage name)))
|> DeepSeq.force
{-# INLINABLE paramList #-}
-- | Similiar to 'paramOrNothing' but works with multiple params. This is useful when submitting multiple
-- input fields with the same name, and some may be empty.
--
-- Given a query like (note the `ingredients` in the middle that has no value):
--
-- > ingredients=milk&ingredients&ingredients=egg
--
-- This will return:
--
-- >>> paramListOrNothing @Text "ingredients"
-- [Just "milk", Nothing, Just "egg"]
--
-- When no parameter with the name is given, an empty list is returned:
--
-- >>> paramListOrNothing @Text "not_given_in_url"
-- []
--
--
paramListOrNothing :: forall valueType. (?context :: ControllerContext, DeepSeq.NFData valueType, ParamReader valueType) => ByteString -> [Maybe valueType]
paramListOrNothing name =
allParams
|> filter (\(paramName, paramValue) -> paramName == name)
|> mapMaybe (\(paramName, paramValue) -> paramValue)
|> map (\paramValue -> if paramValue == "" then Left "Empty ByteString" else readParameter @valueType paramValue)
|> map (\value -> case value of
Left _ -> Nothing
Right val -> Just val
)
|> DeepSeq.force
{-# INLINABLE paramListOrNothing #-}
paramParserErrorMessage name = "param: Parameter '" <> cs name <> "' is invalid"
-- | Thrown when a parameter is missing when calling 'param "myParam"' or related functions
data ParamException
= ParamNotFoundException { name :: ByteString }
| ParamCouldNotBeParsedException { name :: ByteString, parserError :: ByteString }
deriving (Show, Eq)
instance Exception ParamException where
displayException (ParamNotFoundException { name }) = "param: Parameter '" <> cs name <> "' not found"
displayException (ParamCouldNotBeParsedException { name, parserError }) = "param: Parameter '" <> cs name <> "' could not be parsed, " <> cs parserError
-- | Specialized version of param for 'Text'.
--
-- This way you don't need to know about the type application syntax.
paramText :: (?context :: ControllerContext) => ByteString -> Text
paramText = param @Text
-- | Specialized version of param for 'Int'.
--
-- This way you don't need to know about the type application syntax.
paramInt :: (?context :: ControllerContext) => ByteString -> Int
paramInt = param @Int
-- | Specialized version of param for 'Bool'.
--
-- This way you don't need to know about the type application syntax.
paramBool :: (?context :: ControllerContext) => ByteString -> Bool
paramBool = param @Bool
-- | Specialized version of param for 'UUID'.
--
-- This way you don't need to know about the type application syntax.
paramUUID :: (?context :: ControllerContext) => ByteString -> UUID
paramUUID = param @UUID
-- | Returns @True@ when a parameter is given in the request via the query or request body.
--
-- Use 'paramOrDefault' when you want to use this for providing a default value.
--
-- __Example:__
--
-- Given the request @GET /HelloWorld@
--
-- > action HelloWorldAction = do
-- > if hasParam "firstname"
-- > then ...
-- > else renderPlain "Please provide your firstname"
--
-- This will render @Please provide your firstname@ because @hasParam "firstname"@ returns @False@
hasParam :: (?context :: ControllerContext) => ByteString -> Bool
hasParam = isJust . queryOrBodyParam
{-# INLINABLE hasParam #-}
-- | Like 'param', but returns a default value when the parameter is missing instead of throwing
-- an exception.
--
-- Use 'paramOrNothing' when you want to get @Maybe@.
--
-- __Example:__ Pagination
--
-- When calling @GET /Users@ the variable @page@ will be set to the default value @0@.
--
-- > action UsersAction = do
-- > let page :: Int = paramOrDefault 0 "page"
--
-- When calling @GET /Users?page=1@ the variable @page@ will be set to @1@.
paramOrDefault :: (?context :: ControllerContext) => ParamReader a => a -> ByteString -> a
paramOrDefault !defaultValue = fromMaybe defaultValue . paramOrNothing
{-# INLINABLE paramOrDefault #-}
-- | Like 'param', but returns @Nothing@ the parameter is missing instead of throwing
-- an exception.
--
-- Use 'paramOrDefault' when you want to deal with a default value.
--
-- __Example:__
--
-- When calling @GET /Users@ the variable @page@ will be set to @Nothing@.
--
-- > action UsersAction = do
-- > let page :: Maybe Int = paramOrNothing "page"
--
-- When calling @GET /Users?page=1@ the variable @page@ will be set to @Just 1@.
paramOrNothing :: forall paramType. (?context :: ControllerContext) => ParamReader (Maybe paramType) => ByteString -> Maybe paramType
paramOrNothing !name =
case paramOrError name of
Left ParamNotFoundException {} -> Nothing
Left otherException -> Exception.throw otherException
Right value -> value
{-# INLINABLE paramOrNothing #-}
-- | Like 'param', but returns @Left "Some error message"@ if the parameter is missing or invalid
paramOrError :: forall paramType. (?context :: ControllerContext) => ParamReader paramType => ByteString -> Either ParamException paramType
paramOrError !name =
let
RequestContext { requestBody } = ?context.requestContext
in case requestBody of
FormBody {} -> case queryOrBodyParam name of
Just value -> case readParameter @paramType value of
Left parserError -> Left ParamCouldNotBeParsedException { name, parserError }
Right value -> Right value
Nothing -> Left ParamNotFoundException { name }
JSONBody { jsonPayload } -> case jsonPayload of
(Just (Aeson.Object hashMap)) -> case Aeson.lookup (Aeson.fromText $ cs name) hashMap of
Just value -> case readParameterJSON @paramType value of
Left parserError -> Left ParamCouldNotBeParsedException { name, parserError }
Right value -> Right value
Nothing -> Left ParamNotFoundException { name }
_ -> Left ParamNotFoundException { name }
{-# INLINABLE paramOrError #-}
-- | Returns a parameter without any parsing. Returns @Nothing@ when the parameter is missing.
queryOrBodyParam :: (?context :: ControllerContext) => ByteString -> Maybe ByteString
queryOrBodyParam !name = join (lookup name allParams)
{-# INLINABLE queryOrBodyParam #-}
-- | Returns all params available in the current request
allParams :: (?context :: ControllerContext) => [(ByteString, Maybe ByteString)]
allParams = case requestBody of
FormBody { params, files } -> concat [(map (\(a, b) -> (a, Just b)) params), (Wai.queryString request)]
JSONBody { jsonPayload } -> error "allParams: Not supported for JSON requests"
where
RequestContext { request, requestBody } = ?context.requestContext
-- | Input parser for 'param'.
--
-- Parses the input bytestring. Returns @Left "some error"@ when there is an error parsing the value.
-- Returns @Right value@ when the parsing succeeded.
class ParamReader a where
-- | The error messages here should be human-readable, as they're visible e.g. in forms
readParameter :: ByteString -> Either ByteString a
-- | The error messages here are directed at other developers, so they can be a bit more technical than 'readParameter' errors
readParameterJSON :: Aeson.Value -> Either ByteString a
readParameterJSON = enumParamReaderJSON
instance ParamReader ByteString where
{-# INLINABLE readParameter #-}
readParameter byteString = pure byteString
readParameterJSON (Aeson.String bytestring) = Right (cs bytestring)
readParameterJSON _ = Left "Expected String"
instance ParamReader Int where
{-# INLINABLE readParameter #-}
readParameter byteString =
case Attoparsec.parseOnly ((Attoparsec.signed Attoparsec.decimal) <* Attoparsec.endOfInput) byteString of
Right value -> Right value
Left error -> Left "has to be an integer"
readParameterJSON (Aeson.Number number) =
case Scientific.floatingOrInteger number of
Left float -> Left "Expected Int"
Right int -> Right int
readParameterJSON _ = Left "Expected Int"
instance ParamReader Integer where
{-# INLINABLE readParameter #-}
readParameter byteString =
case Attoparsec.parseOnly ((Attoparsec.signed Attoparsec.decimal) <* Attoparsec.endOfInput) byteString of
Right value -> Right value
Left error -> Left "has to be an integer"
readParameterJSON (Aeson.Number number) =
case Scientific.floatingOrInteger number of
Left float -> Left "Expected Integer"
Right integer -> Right integer
readParameterJSON _ = Left "Expected Integer"
instance ParamReader Double where
{-# INLINABLE readParameter #-}
readParameter byteString =
case Attoparsec.parseOnly (Attoparsec.double <* Attoparsec.endOfInput) byteString of
Right value -> Right value
Left error -> Left "has to be a number with decimals"
readParameterJSON (Aeson.Number number) =
case Scientific.floatingOrInteger number of
Left double -> Right double
Right integer -> Right (fromIntegral integer)
readParameterJSON _ = Left "Expected Double"
instance ParamReader Scientific.Scientific where
{-# INLINABLE readParameter #-}
readParameter byteString =
case Attoparsec.parseOnly (Attoparsec.scientific <* Attoparsec.endOfInput) byteString of
Right value -> Right value
Left error -> Left "has to be a number with decimals"
readParameterJSON (Aeson.Number number) = Right number
readParameterJSON _ = Left "Expected Scientific"
instance ParamReader Float where
{-# INLINABLE readParameter #-}
readParameter byteString =
case Attoparsec.parseOnly (Attoparsec.double <* Attoparsec.endOfInput) byteString of
Right value -> Right (Float.double2Float value)
Left error -> Left "has to be a number with decimals"
readParameterJSON (Aeson.Number number) =
case Scientific.floatingOrInteger number of
Left double -> Right double
Right integer -> Right (fromIntegral integer)
readParameterJSON _ = Left "Expected Float"
instance ParamReader ModelSupport.Point where
{-# INLINABLE readParameter #-}
readParameter byteString =
case Attoparsec.parseOnly (do x <- Attoparsec.double; Attoparsec.char ','; y <- Attoparsec.double; Attoparsec.endOfInput; pure ModelSupport.Point { x, y }) byteString of
Right value -> Right value
Left error -> Left "has to be two numbers with a comma, e.g. '1,2'"
readParameterJSON (Aeson.String string) = let byteString :: ByteString = cs string in readParameter byteString
readParameterJSON _ = Left "Expected Point"
instance ParamReader ModelSupport.PGInterval where
{-# INLINABLE readParameter #-}
readParameter byteString = pure (ModelSupport.PGInterval byteString)
readParameterJSON (Aeson.String bytestring) = Right (ModelSupport.PGInterval (cs bytestring))
readParameterJSON _ = Left "Expected String"
instance ParamReader ModelSupport.Polygon where
{-# INLINABLE readParameter #-}
readParameter byteString =
let
pointParser = do
Attoparsec.char '('
x <- Attoparsec.double
Attoparsec.char ','
y <- Attoparsec.double
Attoparsec.char ')'
pure ModelSupport.Point { .. }
parser = do
points <- pointParser `Attoparsec.sepBy` (Attoparsec.char ',')
Attoparsec.endOfInput
pure ModelSupport.Polygon { .. }
in
case Attoparsec.parseOnly parser byteString of
Right value -> Right value
Left error -> Left "has to be points wrapped in parenthesis, separated with a comma, e.g. '(1,2),(3,4)'"
readParameterJSON (Aeson.String string) = let byteString :: ByteString = cs string in readParameter byteString
readParameterJSON _ = Left "Expected Polygon"
instance ParamReader Text where
{-# INLINABLE readParameter #-}
readParameter byteString = pure (cs byteString)
readParameterJSON (Aeson.String text) = Right text
readParameterJSON _ = Left "Expected String"
-- | Parses comma separated input like @userIds=1,2,3@
--
-- __Example:__
--
-- >>> let userIds :: [Int] = param "userIds"
instance ParamReader value => ParamReader [value] where
{-# INLINABLE readParameter #-}
readParameter byteString =
byteString
|> Char8.split ','
|> map readParameter
|> Either.partitionEithers
|> \case
([], values) -> Right values
((first:rest), _) -> Left first
readParameterJSON (Aeson.Array values) =
values
|> Vector.toList
|> map readParameterJSON
|> Either.partitionEithers
|> \case
([], values) -> Right values
((first:rest), _) -> Left first
readParameterJSON _ = Left "Expected Array"
-- | Parses a boolean.
--
-- Html form checkboxes usually use @on@ or @off@ for representation. These
-- values are supported here.
instance ParamReader Bool where
{-# INLINABLE readParameter #-}
readParameter on | on == cs (ModelSupport.inputValue True) = pure True
readParameter true | toLower (cs true) == "true" = pure True
readParameter _ = pure False
readParameterJSON (Aeson.Bool bool) = Right bool
readParameterJSON _ = Left "Expected Bool"
instance ParamReader UUID where
{-# INLINABLE readParameter #-}
readParameter byteString =
case UUID.fromASCIIBytes byteString of
Just uuid -> pure uuid
Nothing -> Left "has to be an UUID"
readParameterJSON (Aeson.String string) =
case UUID.fromText string of
Just uuid -> pure uuid
Nothing -> Left "Invalid UUID"
readParameterJSON _ = Left "Expected String with an UUID"
-- | Accepts values such as @2020-11-08T12:03:35Z@ or @2020-11-08@
instance ParamReader UTCTime where
{-# INLINABLE readParameter #-}
readParameter "" = Left "This field cannot be empty"
readParameter byteString =
let
input = (cs byteString)
dateTime = parseTimeM True defaultTimeLocale "%Y-%m-%dT%H:%M:%S%QZ" input
date = parseTimeM True defaultTimeLocale "%Y-%-m-%-d" input
in case dateTime of
Nothing -> case date of
Just value -> Right value
Nothing -> Left "has to be a valid date and time, e.g. 2020-11-08T12:03:35Z"
Just value -> Right value
readParameterJSON (Aeson.String string) = readParameter (cs string)
readParameterJSON _ = Left "Expected String"
-- | Accepts values such as @2020-11-08T12:03:35Z@ or @2020-11-08@
instance ParamReader LocalTime where
{-# INLINABLE readParameter #-}
readParameter "" = Left "This field cannot be empty"
readParameter byteString =
let
input = (cs byteString)
dateTime = parseTimeM True defaultTimeLocale "%Y-%m-%dT%H:%M:%S%QZ" input
date = parseTimeM True defaultTimeLocale "%Y-%-m-%-d" input
in case dateTime of
Nothing -> case date of
Just value -> Right value
Nothing -> Left "has to be a valid date and time, e.g. 2020-11-08T12:03:35Z"
Just value -> Right value
readParameterJSON (Aeson.String string) = readParameter (cs string)
readParameterJSON _ = Left "Expected String"
-- | Accepts values such as @2020-11-08@
instance ParamReader Day where
{-# INLINABLE readParameter #-}
readParameter "" = Left "This field cannot be empty"
readParameter byteString =
let
input = (cs byteString)
date = parseTimeM True defaultTimeLocale "%Y-%-m-%-d" input
in case date of
Just value -> Right value
Nothing -> Left "has to be a date, e.g. 2020-11-08"
readParameterJSON (Aeson.String string) = readParameter (cs string)
readParameterJSON _ = Left "Expected String"
instance ParamReader TimeOfDay where
{-# INLINABLE readParameter #-}
readParameter "" = Left "This field cannot be empty"
readParameter byteString =
let
input = (cs byteString)
in case readMaybe input of
Just value -> Right value
Nothing -> Left "has to be time in the format hh:mm:ss"
readParameterJSON (Aeson.String string) = readParameter (cs string)
readParameterJSON _ = Left "Expected String"
instance {-# OVERLAPS #-} (ParamReader (ModelSupport.PrimaryKey model')) => ParamReader (ModelSupport.Id' model') where
{-# INLINABLE readParameter #-}
readParameter uuid = ModelSupport.Id <$> readParameter uuid
readParameterJSON value = ModelSupport.Id <$> readParameterJSON value
instance ParamReader param => ParamReader (Maybe param) where
{-# INLINABLE readParameter #-}
readParameter param =
case (readParameter param) :: Either ByteString param of
Right value -> Right (Just value)
Left error | param == "" -> Right Nothing
Left error -> Left error
readParameterJSON value =
case (readParameterJSON value) :: Either ByteString param of
Right value -> Right (Just value)
Left error | value == (Aeson.String "") -> Right Nothing
Left error -> Left error
-- | Custom error hint when the 'param' is called with do-notation
--
-- __Example:__
--
-- > action Example = do
-- > myParam <- param "hello"
--
-- Now a custom type error will be shown telling the user to use @let myParam = param "hello"@ instead of do-notation.
instance (TypeError ('Text ("Use 'let x = param \"..\"' instead of 'x <- param \"..\"'" :: Symbol))) => ParamReader (IO param) where
readParameter _ = error "Unreachable"
readParameterJSON _ = error "Unreachable"
-- | Can be used as a default implementation for 'readParameter' for enum structures
--
-- __Example:__
--
-- > data Color = Yellow | Red | Blue deriving (Enum)
-- >
-- > instance ParamReader Color where
-- > readParameter = enumParamReader
-- > readParameterJSON = enumParamReaderJSON
enumParamReader :: forall parameter. (Enum parameter, ModelSupport.InputValue parameter) => ByteString -> Either ByteString parameter
enumParamReader string =
case find (\value -> ModelSupport.inputValue value == string') allEnumValues of
Just value -> Right value
Nothing -> Left "Invalid value"
where
string' = cs string
-- | Used as a default implementation for 'readParameterJSON'
--
-- __Example:__
--
-- > data Color = Yellow | Red | Blue deriving (Enum)
-- >
-- > instance ParamReader Color where
-- > readParameter = enumParamReader
-- > readParameterJSON = enumParamReaderJSON
enumParamReaderJSON :: forall parameter. (ParamReader parameter) => Aeson.Value -> Either ByteString parameter
enumParamReaderJSON (Aeson.String string) = readParameter (cs string)
enumParamReaderJSON otherwise = Left "enumParamReaderJSON: Invalid value, expected a string but got something else"
-- | Provides the 'fill' function for mass-assignment of multiple parameters to a record
--
-- Accepts a type-level list of parameter names (type-list syntax is like @\@'["a", "b", "c"]@) and a record. Then each parameter is
-- read from the request using the 'param' API. The parameter value is written to the record
-- field. Because the parameter is assigned to the record, the parameter name list can only
-- contain attribute names of the record.
--
-- When there is a parser error, the error will be attached as a validation error to the record. The
-- remaining parameters will continue to be read.
--
-- If a parameter is missing from the request, this will be ignored and the function proceeds as usual.
--
--
-- __Example:__
--
-- > action UpdateUserAction { userId } = do
-- > user :: User <- fetch userId
-- > user
-- > |> fill @["firstname", "lastname", "email"]
--
-- This code will read the firstname, lastname and email from the request and assign them to the user.
class FillParams (params :: [Symbol]) record where
fill :: (
?context :: ControllerContext
, HasField "meta" record ModelSupport.MetaBag
, SetField "meta" record ModelSupport.MetaBag
) => record -> record
instance FillParams ('[]) record where
fill !record = record
{-# INLINE fill #-}
instance (FillParams rest record
, KnownSymbol fieldName
, SetField fieldName record fieldType
, ParamReader fieldType
, HasField "meta" record ModelSupport.MetaBag
, SetField "meta" record ModelSupport.MetaBag
) => FillParams (fieldName:rest) record where
fill !record =
let
name :: ByteString = cs $! (symbolVal (Proxy @fieldName))
record' = case paramOrError name of
Right !(value :: fieldType) -> setField @fieldName value record
Left ParamCouldNotBeParsedException { parserError } -> attachFailure (Proxy @fieldName) (cs parserError) record
Left ParamNotFoundException {} -> record
in
fill @rest record'
{-# INLINE fill #-}
ifValid :: (HasField "meta" model ModelSupport.MetaBag) => (Either model model -> IO r) -> model -> IO r
ifValid branch model = branch $! if ModelSupport.isValid model
then Right model
else Left model
{-# INLINE ifValid #-}
ifNew :: forall record. (?context :: ControllerContext, ?modelContext :: ModelSupport.ModelContext, HasField "meta" record MetaBag) => (record -> record) -> record -> record
ifNew thenBlock record = if ModelSupport.isNew record then thenBlock record else record
-- | Transforms @Just ""@ to @Nothing@
--
-- __Example:__ We have record called @Company@ with a optional field @comment :: Maybe Text@
--
-- When we have a form that submits the @comment@ field and the field is empty, it will not be @NULL@ inside the database,
-- instead it will be set to the empty string. To avoid this we can apply @emptyValueToNothing #comment@. This function
-- turns the empty string into a 'Nothing' value.
--
-- > action UpdateCompanyAction { companyId } = do
-- > company <- fetch companyId
-- > company
-- > |> fill '["name", "comment"]
-- > |> emptyValueToNothing #comment
-- > |> updateRecord
emptyValueToNothing field = modify field (maybe Nothing (\value -> if null value then Nothing else Just value))