UNPKG

@hapi/hapi

Version:

HTTP Server framework

534 lines (466 loc) 23.7 kB
import * as http from 'http'; import * as stream from 'stream'; import * as url from 'url'; import { Boom } from '@hapi/boom'; import { Podium } from '@hapi/podium'; import { PluginsStates, ServerRealm } from './plugin'; import { ResponseValue, ResponseObject } from "./response"; import { RouteRules, RouteSettings } from './route'; import { Server, ServerAuthSchemeObjectApi } from './server'; import { HTTP_METHODS, PeekListener } from './utils'; /** * User extensible types user credentials. */ export interface UserCredentials { } /** * User extensible types app credentials. */ export interface AppCredentials { } /** * User-extensible type for request.auth credentials. */ export interface AuthCredentials< AuthUser = UserCredentials, AuthApp = AppCredentials > { /** * The application scopes to be granted. * [See docs](https://github.com/hapijs/hapi/blob/master/API.md#-routeoptionsauthaccessscope) */ scope?: string[] | undefined; /** * If set, will only work with routes that set `access.entity` to `user`. */ user?: AuthUser /** * If set, will only work with routes that set `access.entity` to `app`. */ app?: AuthApp; } export interface AuthArtifacts { [key: string]: unknown; } export type AuthMode = 'required' | 'optional' | 'try'; /** * Authentication information: * * artifacts - an artifact object received from the authentication strategy and used in authentication-related actions. * * credentials - the credential object received during the authentication process. The presence of an object does not mean successful authentication. * * error - the authentication error is failed and mode set to 'try'. * * isAuthenticated - true if the request has been successfully authenticated, otherwise false. * * isAuthorized - true is the request has been successfully authorized against the route authentication access configuration. If the route has not access rules defined or if the request failed * authorization, set to false. * * mode - the route authentication mode. * * strategy - the name of the strategy used. * [See docs](https://github.com/hapijs/hapi/blob/master/API.md#-requestauth) */ export interface RequestAuth< AuthUser = UserCredentials, AuthApp = AppCredentials, CredentialsExtra = Record<string, unknown>, ArtifactsExtra = Record<string, unknown> > { /** an artifact object received from the authentication strategy and used in authentication-related actions. */ artifacts: ArtifactsExtra; /** the credential object received during the authentication process. The presence of an object does not mean successful authentication. */ credentials: ( AuthCredentials<AuthUser, AuthApp> & CredentialsExtra ); /** the authentication error is failed and mode set to 'try'. */ error: Error; /** true if the request has been successfully authenticated, otherwise false. */ isAuthenticated: boolean; /** * true is the request has been successfully authorized against the route authentication access configuration. If the route has not access rules defined or if the request failed authorization, * set to false. */ isAuthorized: boolean; /** the route authentication mode. */ mode: AuthMode; /** the name of the strategy used. */ strategy: string; } /** * 'peek' - emitted for each chunk of payload data read from the client connection. The event method signature is function(chunk, encoding). * 'finish' - emitted when the request payload finished reading. The event method signature is function (). * 'disconnect' - emitted when a request errors or aborts unexpectedly. * For context [See docs](https://github.com/hapijs/hapi/blob/master/API.md#-requestevents) */ export type RequestEventType = 'peek' | 'finish' | 'disconnect'; /** * Access: read only and the public podium interface. * The request.events supports the following events: * * 'peek' - emitted for each chunk of payload data read from the client connection. The event method signature is function(chunk, encoding). * * 'finish' - emitted when the request payload finished reading. The event method signature is function (). * * 'disconnect' - emitted when a request errors or aborts unexpectedly. * [See docs](https://github.com/hapijs/hapi/blob/master/API.md#-requestevents) */ export interface RequestEvents extends Podium { /** * Access: read only and the public podium interface. * The request.events supports the following events: * * 'peek' - emitted for each chunk of payload data read from the client connection. The event method signature is function(chunk, encoding). * * 'finish' - emitted when the request payload finished reading. The event method signature is function (). * * 'disconnect' - emitted when a request errors or aborts unexpectedly. * [See docs](https://github.com/hapijs/hapi/blob/master/API.md#-requestevents) */ on(criteria: 'peek', listener: PeekListener): this; on(criteria: 'finish' | 'disconnect', listener: (data: undefined) => void): this; /** * Access: read only and the public podium interface. * The request.events supports the following events: * * 'peek' - emitted for each chunk of payload data read from the client connection. The event method signature is function(chunk, encoding). * * 'finish' - emitted when the request payload finished reading. The event method signature is function (). * * 'disconnect' - emitted when a request errors or aborts unexpectedly. * [See docs](https://github.com/hapijs/hapi/blob/master/API.md#-requestevents) */ once(criteria: 'peek', listener: PeekListener): this; once(criteria: 'peek'): Promise<Parameters<PeekListener>>; once(criteria: 'finish' | 'disconnect', listener: (data: undefined) => void): this; } /** * Request information: * * acceptEncoding - the request preferred encoding. * * cors - if CORS is enabled for the route, contains the following: * * isOriginMatch - true if the request 'Origin' header matches the configured CORS restrictions. Set to false if no 'Origin' header is found or if it does not match. Note that this is only * available after the 'onRequest' extension point as CORS is configured per-route and no routing decisions are made at that point in the request lifecycle. * * host - content of the HTTP 'Host' header (e.g. 'example.com:8080'). * * hostname - the hostname part of the 'Host' header (e.g. 'example.com'). * * id - a unique request identifier (using the format '{now}:{connection.info.id}:{5 digits counter}'). * * received - request reception timestamp. * * referrer - content of the HTTP 'Referrer' (or 'Referer') header. * * remoteAddress - remote client IP address. * * remotePort - remote client port. * * responded - request response timestamp (0 is not responded yet). * Note that the request.info object is not meant to be modified. * [See docs](https://github.com/hapijs/hapi/blob/master/API.md#-requestinfo) */ export interface RequestInfo { /** the request preferred encoding. */ acceptEncoding: string; /** if CORS is enabled for the route, contains the following: */ cors: { /** * true if the request 'Origin' header matches the configured CORS restrictions. Set to false if no 'Origin' header is found or if it does not match. Note that this is only available after * the 'onRequest' extension point as CORS is configured per-route and no routing decisions are made at that point in the request lifecycle. */ isOriginMatch?: boolean | undefined; }; /** content of the HTTP 'Host' header (e.g. 'example.com:8080'). */ host: string; /** the hostname part of the 'Host' header (e.g. 'example.com'). */ hostname: string; /** a unique request identifier (using the format '{now}:{connection.info.id}:{5 digits counter}') */ id: string; /** request reception timestamp. */ received: number; /** content of the HTTP 'Referrer' (or 'Referer') header. */ referrer: string; /** remote client IP address. */ remoteAddress: string; /** remote client port. */ remotePort: string; /** request response timestamp (0 is not responded yet). */ responded: number; /** request processing completion timestamp (0 is still processing). */ completed: number; } /** * The request route information object, where: * * method - the route HTTP method. * * path - the route path. * * vhost - the route vhost option if configured. * * realm - the active realm associated with the route. * * settings - the route options object with all defaults applied. * * fingerprint - the route internal normalized string representing the normalized path. * [See docs](https://github.com/hapijs/hapi/blob/master/API.md#-requestroute) */ export interface RequestRoute<Refs extends ReqRef = ReqRefDefaults> { /** the route HTTP method. */ method: Exclude<Lowercase<HTTP_METHODS>, 'head'> | '*'; /** the route path. */ path: string; /** the route vhost option if configured. */ vhost?: string | string[] | undefined; /** the active realm associated with the route. */ realm: ServerRealm; /** the route options object with all defaults applied. */ settings: RouteSettings<Refs>; /** the route internal normalized string representing the normalized path. */ fingerprint: string; auth: { /** * Validates a request against the route's authentication access configuration, where: * @param request - the request object. * @return Return value: true if the request would have passed the route's access requirements. * Note that the route's authentication mode and strategies are ignored. The only match is made between the request.auth.credentials scope and entity information and the route access * configuration. If the route uses dynamic scopes, the scopes are constructed against the request.query, request.params, request.payload, and request.auth.credentials which may or may * not match between the route and the request's route. If this method is called using a request that has not been authenticated (yet or not at all), it will return false if the route * requires any authentication. * [See docs](https://hapijs.com/api/17.0.1#-requestrouteauthaccessrequest) */ access(request: Request): boolean; }; } /** * An object containing the values of params, query, and payload before any validation modifications made. Only set when input validation is performed. * For context [See docs](https://github.com/hapijs/hapi/blob/master/API.md#-requestorig) */ export interface RequestOrig { params: object; query: object; payload: object; } export interface RequestLog { request: string; timestamp: number; tags: string[]; data: string | object; channel: string; } export interface RequestQuery { [key: string]: any; } /** * Empty interface to allow for user-defined augmentations. */ export interface RouteOptionsApp {} /** * User-extensible type for application specific state on requests (`request.app`). */ export interface RequestApplicationState { } export interface InternalRequestDefaults { Server: Server; Payload: stream.Readable | Buffer | string | object; Query: RequestQuery; Params: Record<string, any>; Pres: Record<string, any>; Headers: Record<string, any>; RequestApp: RequestApplicationState; AuthUser: UserCredentials; AuthApp: AppCredentials; AuthApi: ServerAuthSchemeObjectApi; AuthCredentialsExtra: Record<string, unknown>; AuthArtifactsExtra: Record<string, unknown>; Rules: RouteRules; Bind: object | null; RouteApp: RouteOptionsApp; } /** * Default request references. Used to give typing to requests, * route handlers, lifecycle methods, auth credentials, etc. * This can be overwritten to whatever is suitable and universal * in your specific app, but whatever references you pass to * server route generic, or lifecycle methods will take precedence * over these. */ export interface ReqRefDefaults extends InternalRequestDefaults {} /** * Route request overrides */ export type ReqRef = Partial<Record<keyof ReqRefDefaults, unknown>>; /** * Utilities for merging request refs and other things */ export type MergeType<T, U> = { [K in keyof T]: K extends keyof U ? U[K] : T[K]; }; export type MergeRefs<T extends ReqRef> = MergeType<ReqRefDefaults, T>; /** * The request object is created internally for each incoming request. It is not the same object received from the node * HTTP server callback (which is available via [request.raw.req](https://github.com/hapijs/hapi/blob/master/API.md#request.raw)). The request properties change throughout * the request [lifecycle](https://github.com/hapijs/hapi/blob/master/API.md#request-lifecycle). */ export interface Request<Refs extends ReqRef = ReqRefDefaults> extends Podium { /** * Application-specific state. Provides a safe place to store application data without potential conflicts with the framework. Should not be used by plugins which should use plugins[name]. * [See docs](https://github.com/hapijs/hapi/blob/master/API.md#-requestapp) */ app: MergeRefs<Refs>['RequestApp']; /** * Authentication information: * * artifacts - an artifact object received from the authentication strategy and used in authentication-related actions. * * credentials - the credential object received during the authentication process. The presence of an object does not mean successful authentication. * * error - the authentication error is failed and mode set to 'try'. * * isAuthenticated - true if the request has been successfully authenticated, otherwise false. * * isAuthorized - true is the request has been successfully authorized against the route authentication access configuration. If the route has not access rules defined or if the request failed * authorization, set to false. * * mode - the route authentication mode. * * strategy - the name of the strategy used. * [See docs](https://github.com/hapijs/hapi/blob/master/API.md#-requestauth) */ readonly auth: RequestAuth< MergeRefs<Refs>['AuthUser'], MergeRefs<Refs>['AuthApp'], MergeRefs<Refs>['AuthCredentialsExtra'], MergeRefs<Refs>['AuthArtifactsExtra'] >; /** * Access: read only and the public podium interface. * The request.events supports the following events: * * 'peek' - emitted for each chunk of payload data read from the client connection. The event method signature is function(chunk, encoding). * * 'finish' - emitted when the request payload finished reading. The event method signature is function (). * * 'disconnect' - emitted when a request errors or aborts unexpectedly. * [See docs](https://github.com/hapijs/hapi/blob/master/API.md#-requestevents) */ events: RequestEvents; /** * The raw request headers (references request.raw.req.headers). * [See docs](https://github.com/hapijs/hapi/blob/master/API.md#-requestheaders) */ readonly headers: MergeRefs<Refs>['Headers']; /** * Request information: * * acceptEncoding - the request preferred encoding. * * cors - if CORS is enabled for the route, contains the following: * * isOriginMatch - true if the request 'Origin' header matches the configured CORS restrictions. Set to false if no 'Origin' header is found or if it does not match. Note that this is only * available after the 'onRequest' extension point as CORS is configured per-route and no routing decisions are made at that point in the request lifecycle. * * host - content of the HTTP 'Host' header (e.g. 'example.com:8080'). * * hostname - the hostname part of the 'Host' header (e.g. 'example.com'). * * id - a unique request identifier (using the format '{now}:{connection.info.id}:{5 digits counter}'). * * received - request reception timestamp. * * referrer - content of the HTTP 'Referrer' (or 'Referer') header. * * remoteAddress - remote client IP address. * * remotePort - remote client port. * * responded - request response timestamp (0 is not responded yet). * Note that the request.info object is not meant to be modified. * [See docs](https://github.com/hapijs/hapi/blob/master/API.md#-requestinfo) */ readonly info: RequestInfo; /** * An array containing the logged request events. * Note that this array will be empty if route log.collect is set to false. */ readonly logs: RequestLog[]; /** * The request method in lower case (e.g. 'get', 'post'). */ readonly method: Lowercase<HTTP_METHODS>; /** * The parsed content-type header. Only available when payload parsing enabled and no payload error occurred. */ readonly mime: string; /** * An object containing the values of params, query, and payload before any validation modifications made. Only set when input validation is performed. */ readonly orig: RequestOrig; /** * An object where each key is a path parameter name with matching value as described in [Path parameters](https://github.com/hapijs/hapi/blob/master/API.md#path-parameters). */ readonly params: MergeRefs<Refs>['Params']; /** * An array containing all the path params values in the order they appeared in the path. */ readonly paramsArray: keyof MergeRefs<Refs>['Params'] | string[]; /** * The request URI's pathname component. */ readonly path: string; /** * The request payload based on the route payload.output and payload.parse settings. * TODO check this typing and add references / links. */ readonly payload: MergeRefs<Refs>['Payload']; /** * Plugin-specific state. Provides a place to store and pass request-level plugin data. The plugins is an object where each key is a plugin name and the value is the state. */ plugins: PluginsStates; /** * An object where each key is the name assigned by a route pre-handler methods function. The values are the raw values provided to the continuation function as argument. For the wrapped response * object, use responses. */ readonly pre: MergeRefs<Refs>['Pres']; /** * Access: read / write (see limitations below). * The response object when set. The object can be modified but must not be assigned another object. To replace the response with another from within an extension point, use reply(response) to * override with a different response. * In case of an aborted request the status code will be set to `disconnectStatusCode`. */ response: ResponseObject | Boom; /** * Same as pre but represented as the response object created by the pre method. */ readonly preResponses: Record<string, any>; /** * By default the object outputted from node's URL parse() method. */ readonly query: MergeRefs<Refs>['Query']; /** * An object containing the Node HTTP server objects. Direct interaction with these raw objects is not recommended. * * req - the node request object. * * res - the node response object. */ readonly raw: { req: http.IncomingMessage; res: http.ServerResponse; }; /** * The request route information object and method * [See docs](https://github.com/hapijs/hapi/blob/master/API.md#-requestroute) * [See docs](https://github.com/hapijs/hapi/blob/master/API.md#-requestrouteauthaccessrequest) */ readonly route: RequestRoute<Refs>; /** * Access: read only and the public server interface. * The server object. */ readonly server: MergeRefs<Refs>['Server']; /** * An object containing parsed HTTP state information (cookies) where each key is the cookie name and value is the matching cookie content after processing using any registered cookie definition. */ readonly state: Record<string, any>; /** * The parsed request URI. */ readonly url: url.URL; /** * Returns `true` when the request is active and processing should continue and `false` when the * request terminated early or completed its lifecycle. Useful when request processing is a * resource-intensive operation and should be terminated early if the request is no longer active * (e.g. client disconnected or aborted early). */ active(): boolean; /** * Returns a response which you can pass into the reply interface where: * @param source - the value to set as the source of the reply interface, optional. * @param options - options for the method, optional. * @return ResponseObject * [See docs](https://github.com/hapijs/hapi/blob/master/API.md#-requestgenerateresponsesource-options) */ /* tslint:disable-next-line:max-line-length */ generateResponse(source: string | object | null, options?: { variety?: string | undefined; prepare?: ((response: ResponseObject) => Promise<ResponseObject>) | undefined; marshal?: ((response: ResponseObject) => Promise<ResponseValue>) | undefined; close?: ((response: ResponseObject) => void) | undefined; } | undefined): ResponseObject; /** * Logs request-specific events. When called, the server emits a 'request' event which can be used by other listeners or plugins. The arguments are: * @param tags - a string or an array of strings (e.g. ['error', 'database', 'read']) used to identify the event. Tags are used instead of log levels and provide a much more expressive mechanism * for describing and filtering events. * @param data - (optional) an message string or object with the application data being logged. If data is a function, the function signature is function() and it called once to generate (return * value) the actual data emitted to the listeners. Any logs generated by the server internally will be emitted only on the 'request-internal' channel and will include the event.internal flag * set to true. * @return void * [See docs](https://github.com/hapijs/hapi/blob/master/API.md#-requestlogtags-data) */ log(tags: string | string[], data?: string | object | (() => string | object) | undefined): void; /** * Changes the request method before the router begins processing the request where: * @param method - is the request HTTP method (e.g. 'GET'). * @return void * Can only be called from an 'onRequest' extension method. * [See docs](https://hapijs.com/api/17.0.1#-requestsetmethodmethod) */ setMethod(method: HTTP_METHODS | Lowercase<HTTP_METHODS>): void; /** * Changes the request URI before the router begins processing the request where: * Can only be called from an 'onRequest' extension method. * @param url - the new request URI. If url is a string, it is parsed with node's URL parse() method with parseQueryString set to true. url can also be set to an object compatible with node's URL * parse() method output. * @param stripTrailingSlash - if true, strip the trailing slash from the path. Defaults to false. * @return void * [See docs](https://hapijs.com/api/17.0.1#-requestseturlurl-striptrailingslash) */ setUrl(url: string | url.URL, stripTrailingSlash?: boolean | undefined): void; }