reddit-0.1.0.0: src/Reddit/Routes/Thing.hs
module Reddit.Routes.Thing where
import Reddit.Types.Thing
import Data.Text (Text)
import Network.API.Builder.Routes
reply :: Thing a => a -> Text -> Route
reply thingID body = Route [ "api", "comment" ]
[ "parent" =. fullName thingID
, "text" =. body ]
"POST"
delete :: Thing a => a -> Route
delete t = Route [ "api", "del" ]
[ "id" =. fullName t ]
"POST"
edit :: Thing a => a -> Text -> Route
edit t newText = Route [ "api", "editusertext" ]
[ "thing_id" =. fullName t
, "text" =. newText ]
"POST"
report :: Thing a => a -> Text -> Route
report t r = Route [ "api", "report" ]
[ "thing_id" =. fullName t
, "reason" =. r ]
"POST"