const mixinafBedSheet::HttpRequest

afBedSheet::HttpRequest

(Service) - An injectable const version of WebReq.

This class will always refer to the current web request.

form

Source

abstract [Str:Str]? form()

Get the key/value pairs of the form data. The request content is read and parsed using sys::Uri.decodeQuery.

If the request content type is not application/x-www-form-urlencoded this method returns null.

@see web::WebReq.form

headers

Source

abstract HttpRequestHeaders headers()

Map of HTTP request headers. The map is readonly and case insensitive.

@see web::WebReq.headers

@see http://en.wikipedia.org/wiki/List_of_HTTP_header_fields#Requests

httpMethod

Source

abstract Str httpMethod()

The HTTP request method in uppercase. Example: GET, POST, PUT.

@see web::WebReq.method

httpVersion

Source

abstract Version httpVersion()

The HTTP version of the request.

@see web::WebReq.version

in

Source

abstract InStream in()

Get the stream to read request body. See web::WebUtil.makeContentInStream to check under which conditions request content is available. If request content is not available, then throw an exception.

If the client specified the "Expect: 100-continue" header, then the first access of the request input stream will automatically send the client a 100 Continue response.

@see web::WebReq.in

isXmlHttpRequest

Source

abstract Bool isXmlHttpRequest()

Returns true if an XMLHttpRequest, as specified by the X-Requested-With HTTP header.

locales

Source

abstract Locale[] locales()

The accepted locales for this request based on the "Accept-Language" HTTP header. List is sorted by preference, where locales.first is best, and locales.last is worst. This list is guaranteed to contain Locale("en").

@see web::WebReq.locales

parseMultiPartForm

Source

abstract Void parseMultiPartForm(|Str,InStream,Str:Str callback)

This method will:

  1. check that the content-type is form-data
  2. get the boundary string
  3. invoke the callback for each part (see WebUtil.parseMultiPart)

For each part in the stream this calls the given callback function with the part's form name, headers, and an input stream used to read the part's body.

@see web::WebReq.parseMultiPartForm

remoteAddr

Source

abstract IpAddr remoteAddr()

The IP host address of the client socket making this request.

@see web::WebReq.remoteAddr

remotePort

Source

abstract Int remotePort()

The IP port of the client socket making this request.

@see web::WebReq.remotePort

stash

Source

abstract Str:Obj? stash()

Stash allows you to store temporary data on the request, to easily pass it between services and objects.

It is good for a quick win, but if you find yourself consistently relying on it, consider making a thread scoped service instead.

url

Source

abstract Uri url()

The URL relative to BedSheetWebMod, includes query string and fragment. Always starts with a /. Example, /index.html

@see web::WebReq.modRel