|
Qore RestSchemaValidator Module Reference
1.0.2
|
abstract REST schema validation classes More...

Public Member Functions | |
| string | getBasePath () |
| returns the base path prefix for all requests in this schema More... | |
| hash< RestExampleRequestInfo > | getExampleRequest (string method, string path, *softlist< string > content_types) |
| returns a hash of example message information for the given request More... | |
| hash< RestExampleResponseInfo > | getExampleResponse (string method, string path, int code, *softlist< string > content_types) |
| returns a hash of example message information for the given request More... | |
| hash< string, list< string > > | getPathOperationHash () |
| returns a hash of URI paths as keys with values as lists of supported HTTP methods More... | |
| hash< RestQoreExampleCodeInfo > | getQoreExampleRequest (string method, string path) |
| returns a hash of example Qore code for the given request More... | |
| hash< RestQoreExampleCodeInfo > | getQoreExampleResponse (string method, string path, int code) |
| returns example Qore code for the given response More... | |
| string | getTargetUrl () |
| returns the target URL for the schema More... | |
| hash< RestRequestServerInfo > | parseRequest (string method, string path, *data http_body, reference< hash > headers) |
| processes and parses a client request and returns the deserialized message body (if any) More... | |
| hash< RestResponseClientInfo > | parseResponse (string method, string path, int code, *data response_body, hash hdr) |
| parses and validates the response from the server and returns a hash of the processed info More... | |
| hash< RestRequestClientInfo > | processRequest (string method, string path, auto body, *hash headers, *softlist< string > content_types) |
| processes a client-side REST request and returns a hash that can be used to make the outgoing client-side HTTP request More... | |
| hash< HttpResponseInfo > | processResponse (string method, string path, int code, auto response_body, *hash headers, *softlist< string > content_types) |
| processes a REST response with a serialized message body, validates any response data against schema definitions if possible More... | |
| setBasePath (string basePath) | |
| overrides the basePath value More... | |
Private Member Functions | |
| abstract string | getBasePathImpl () |
| returns the base path prefix for all requests in this schema More... | |
| abstract hash < RestExampleRequestInfo > | getExampleRequestImpl (string method, string path, *softlist< string > content_types) |
| returns a hash of example message information for the given request More... | |
| abstract hash < RestExampleResponseInfo > | getExampleResponseImpl (string method, string path, int code, *softlist< string > content_types) |
| returns a hash of example message information for the given request More... | |
| abstract hash< string, list < string > > | getPathOperationHashImpl () |
| returns a hash of URI paths as keys with values as lists of supported HTTP methods More... | |
| abstract hash < RestQoreExampleCodeInfo > | getQoreExampleRequestImpl (string method, string path) |
| returns a hash of example Qore code for the given request More... | |
| abstract hash < RestQoreExampleCodeInfo > | getQoreExampleResponseImpl (string method, string path, int code) |
| returns example Qore code for the given response More... | |
| abstract string | getTargetUrlImpl () |
| returns the target URL for the schema More... | |
| abstract hash < RestRequestServerInfo > | parseRequestImpl (string method, string path, *data http_body, reference< hash > headers) |
| processes and parses a client request and returns the deserialized message body (if any) More... | |
| abstract hash < RestResponseClientInfo > | parseResponseImpl (string method, string path, int code, *data response_body, hash hdr) |
| parses and validates the response from the server and returns a hash of the processed info More... | |
| abstract hash < RestRequestClientInfo > | processRequestImpl (string method, string path, auto body, *hash headers, *softlist< string > content_types) |
| processes a client-side REST request and returns a hash that can be used to make the outgoing client-side HTTP request More... | |
| abstract hash< HttpResponseInfo > | processResponseImpl (string method, string path, int code, any response_body, *hash headers, *softlist< string > content_types) |
| processes a REST response with a serialized message body, validates any response data against schema definitions if possible More... | |
| abstract | setBasePathImpl (string basePath) |
| overrides the basePath value More... | |
abstract REST schema validation classes
| string RestSchemaValidator::AbstractRestSchemaValidator::getBasePath | ( | ) |
returns the base path prefix for all requests in this schema
|
privatepure virtual |
returns the base path prefix for all requests in this schema
Implemented in RestSchemaValidator::NullRestSchemaValidator.
| hash<RestExampleRequestInfo> RestSchemaValidator::AbstractRestSchemaValidator::getExampleRequest | ( | string | method, |
| string | path, | ||
| *softlist< string > | content_types | ||
| ) |
returns a hash of example message information for the given request
| method | the HTTP method (case insensitive) |
| path | the URI path of the request |
| content_types | the desired MIME types for serialization in order of preference; if none are usable then an exception is thrown |
|
privatepure virtual |
returns a hash of example message information for the given request
| method | the HTTP method (case insensitive) |
| path | the URI path of the request |
| content_types | the desired MIME types for serialization in order of preference; if none are usable then an exception is thrown |
Implemented in RestSchemaValidator::NullRestSchemaValidator.
| hash<RestExampleResponseInfo> RestSchemaValidator::AbstractRestSchemaValidator::getExampleResponse | ( | string | method, |
| string | path, | ||
| int | code, | ||
| *softlist< string > | content_types | ||
| ) |
returns a hash of example message information for the given request
| method | the HTTP method of the original request (case insensitive) |
| path | the URI path of the original request |
| code | the HTTP response code of the response |
| content_types | the desired MIME types for serialization in order of preference; if none are usable then an exception is thrown |
|
privatepure virtual |
returns a hash of example message information for the given request
| method | the HTTP method of the original request (case insensitive) |
| path | the URI path of the original request |
| code | the HTTP response code of the response |
| content_types | the desired MIME types for serialization in order of preference; if none are usable then an exception is thrown |
Implemented in RestSchemaValidator::NullRestSchemaValidator.
| hash<string, list<string> > RestSchemaValidator::AbstractRestSchemaValidator::getPathOperationHash | ( | ) |
returns a hash of URI paths as keys with values as lists of supported HTTP methods
|
privatepure virtual |
returns a hash of URI paths as keys with values as lists of supported HTTP methods
Implemented in RestSchemaValidator::NullRestSchemaValidator.
| hash<RestQoreExampleCodeInfo> RestSchemaValidator::AbstractRestSchemaValidator::getQoreExampleRequest | ( | string | method, |
| string | path | ||
| ) |
returns a hash of example Qore code for the given request
| method | the HTTP method (case insensitive) |
| path | the URI path of the request |
|
privatepure virtual |
returns a hash of example Qore code for the given request
| method | the HTTP method (case insensitive) |
| path | the URI path of the request |
Implemented in RestSchemaValidator::NullRestSchemaValidator.
| hash<RestQoreExampleCodeInfo> RestSchemaValidator::AbstractRestSchemaValidator::getQoreExampleResponse | ( | string | method, |
| string | path, | ||
| int | code | ||
| ) |
returns example Qore code for the given response
| method | the HTTP method of the original request (case insensitive) |
| path | the URI path of the original request |
| code | the HTTP response code of the response |
|
privatepure virtual |
returns example Qore code for the given response
| method | the HTTP method of the original request (case insensitive) |
| path | the URI path of the original request |
| code | the HTTP response code of the response |
Implemented in RestSchemaValidator::NullRestSchemaValidator.
| string RestSchemaValidator::AbstractRestSchemaValidator::getTargetUrl | ( | ) |
returns the target URL for the schema
| MISSING-TARGET-URL | no target URL provided for the schema |
|
privatepure virtual |
returns the target URL for the schema
| MISSING-TARGET-URL | no target URL provided for the schema |
Implemented in RestSchemaValidator::NullRestSchemaValidator.
| hash<RestRequestServerInfo> RestSchemaValidator::AbstractRestSchemaValidator::parseRequest | ( | string | method, |
| string | path, | ||
| *data | http_body, | ||
| reference< hash > | headers | ||
| ) |
processes and parses a client request and returns the deserialized message body (if any)
| method | the HTTP method (case-insensitive) |
| path | the URI path with any query arguments |
| http_body | the serialized message body |
| headers | a reference to the hash of HTTP headers received; any default header values to be assumed by the server for the request will be added here |
| DESERIALIZATION-ERROR | the request body could not be deserialized, results in a 400 Bad Request response returned to the caller |
| SCHEMA-VALIDATION-ERROR | this exception should be thrown if there is a validation error in the request so that a 400 Bad Request response can be returned to the caller |
| INVALID-METHOD | invalid HTTP method for the request; the arg argument should have a list of acceptable HTTP methods for this request |
|
privatepure virtual |
processes and parses a client request and returns the deserialized message body (if any)
| method | the HTTP method (case-insensitive) |
| path | the URI path with any query arguments |
| http_body | the serialized message body |
| headers | a reference to the hash of HTTP headers received; any default header values to be assumed by the server for the request will be added here |
| DESERIALIZATION-ERROR | the request body could not be deserialized, results in a 400 Bad Request response returned to the caller |
| SCHEMA-VALIDATION-ERROR | this exception should be thrown if there is a validation error in the request so that a 400 Bad Request response can be returned to the caller |
| INVALID-METHOD | invalid HTTP method for the request; the arg argument should have a list of acceptable HTTP methods for this request |
Implemented in RestSchemaValidator::NullRestSchemaValidator.
| hash<RestResponseClientInfo> RestSchemaValidator::AbstractRestSchemaValidator::parseResponse | ( | string | method, |
| string | path, | ||
| int | code, | ||
| *data | response_body, | ||
| hash | hdr | ||
| ) |
parses and validates the response from the server and returns a hash of the processed info
| method | the HTTP method (case insensitive) |
| path | the URI path of the original request (without any query arguments) |
| code | the HTTP response code |
| response_body | the HTTP response body data (if any) |
| hdr | as hash of HTTP headers received |
| DESERIALIZATION-ERROR | the request body could not be deserialized or had an invalid Content-Type |
|
privatepure virtual |
parses and validates the response from the server and returns a hash of the processed info
| method | the HTTP method (case insensitive) |
| path | the URI path of the original request (without any query arguments) |
| code | the HTTP response code |
| response_body | the HTTP response body data (if any) |
| hdr | as hash of HTTP headers received |
| DESERIALIZATION-ERROR | the request body could not be deserialized or had an invalid Content-Type |
Implemented in RestSchemaValidator::NullRestSchemaValidator.
| hash<RestRequestClientInfo> RestSchemaValidator::AbstractRestSchemaValidator::processRequest | ( | string | method, |
| string | path, | ||
| auto | body, | ||
| *hash | headers, | ||
| *softlist< string > | content_types | ||
| ) |
processes a client-side REST request and returns a hash that can be used to make the outgoing client-side HTTP request
| method | the HTTP method (case-insensitive) |
| path | the URI path with any query arguments |
| body | the unserialized message body data |
| headers | any headers to include in the request; note that the Content-Type header should not be sent here as it will be overridden when the message is serialized |
| content_types | the desired MIME types for serialization in order of preference; if none are usable then an exception is thrown |
| SERIALIZATION-ERROR | unsupported message body MIME type requested or missing serialization module |
|
privatepure virtual |
processes a client-side REST request and returns a hash that can be used to make the outgoing client-side HTTP request
| method | the HTTP method (case-insensitive) |
| path | the URI path with any query arguments |
| body | the unserialized message body data |
| headers | any headers to include in the request; note that the Content-Type header should not be sent here as it will be overridden when the message is serialized |
| content_types | the desired MIME types for serialization in order of preference; if none are usable then an exception is thrown |
| SERIALIZATION-ERROR | unsupported message body MIME type requested or missing serialization module |
Implemented in RestSchemaValidator::NullRestSchemaValidator.
| hash<HttpResponseInfo> RestSchemaValidator::AbstractRestSchemaValidator::processResponse | ( | string | method, |
| string | path, | ||
| int | code, | ||
| auto | response_body, | ||
| *hash | headers, | ||
| *softlist< string > | content_types | ||
| ) |
processes a REST response with a serialized message body, validates any response data against schema definitions if possible
| method | the HTTP method of the original request |
| path | the URI path of the original request (without query arguments) |
| code | the HTTP response code |
| response_body | the response body data (if any) |
| headers | HTTP headers to include in the response |
| content_types | the desired MIME types for serialization in order of preference; if none are usable then an exception is thrown; if this argument is not present, then json is preferred over yaml |
| ACCEPT-ERROR | the response body could not be serialized because the client does not accept a supported type |
| SERIALIZATION-ERROR | the response body could not be serialized due to an error |
|
privatepure virtual |
processes a REST response with a serialized message body, validates any response data against schema definitions if possible
| method | the HTTP method of the original request |
| path | the URI path of the original request (without query arguments) |
| code | the HTTP response code |
| response_body | the response body data (if any) |
| headers | HTTP headers to include in the response |
| content_types | the desired MIME types for serialization in order of preference; if none are usable then an exception is thrown; if this argument is not present, then json is preferred over yaml |
| ACCEPT-ERROR | the response body could not be serialized because the client does not accept a supported type |
| SERIALIZATION-ERROR | the response body could not be serialized due to an error |
| RestSchemaValidator::AbstractRestSchemaValidator::setBasePath | ( | string | basePath | ) |
overrides the basePath value
| basePath | the new base path value; use an empty string here to clear the basePath |
|
privatepure virtual |
overrides the basePath value
| basePath | the new base path value; use an empty string here to clear the basePath |
Implemented in RestSchemaValidator::NullRestSchemaValidator.