simple-0.11.2: A minimalist web framework for the WAI server interface

Safe HaskellTrustworthy
LanguageHaskell2010

Web.Simple.Responses

Description

This module defines some convenience functions for creating responses.

Synopsis

Documentation

ok :: ContentType -> ByteString -> Response Source #

Creates a 200 (OK) Response with the given content-type and resposne body

okHtml :: ByteString -> Response Source #

Creates a 200 (OK) Response with content-type "text/html" and the given resposne body

okJson :: ByteString -> Response Source #

Creates a 200 (OK) Response with content-type "application/json" and the given resposne body

okXml :: ByteString -> Response Source #

Creates a 200 (OK) Response with content-type "application/xml" and the given resposne body

movedTo :: String -> Response Source #

Given a URL returns a 301 (Moved Permanently) Response redirecting to that URL.

redirectTo :: ByteString -> Response Source #

Given a URL returns a 303 (See Other) Response redirecting to that URL.

badRequest :: Response Source #

Returns a 400 (Bad Request) Response.

requireBasicAuth :: String -> Response Source #

Returns a 401 (Authorization Required) Response requiring basic authentication in the given realm.

forbidden :: Response Source #

Returns a 403 (Forbidden) Response.

notFound :: Response Source #

Returns a 404 (Not Found) Response.

serverError :: ByteString -> Response Source #

Returns a 500 (Server Error) Response.