Skip to content

Class: Controllable

Represents a type which can be exposed by a Synapse API. Defines the functionality necessary to create Controllers and add them to a static router property on the derived class.

Hierarchy

Validatable

Controllable

Resource

Index

Constructors

Metadata Properties

Other Properties

Factory Methods

Other Methods

Constructors

constructor

+ new Controllable(status: number, message: string): Controllable

Inherited from State.constructor

Defined in lib/State.ts:33

Parameters:

Name Type Default Description
status number - The HTTP status code to be assigned to the instance's metadata.
message string "" A string message to be assigned to the instance's metadata.

Returns: Controllable

Metadata Properties

$dependencies

$dependencies: Array‹string› = []

Inherited from State.$dependencies

Defined in lib/State.ts:33

An array of paths upon which the response data depends.


$message

$message: string = ""

Inherited from State.$message

Defined in lib/State.ts:23

A string describing the response.


$query

$query: string = null

Inherited from State.$query

Defined in lib/State.ts:28

An HTTP query string representing the requested path and validated arguments.


$status

$status: number

Inherited from State.$status

Defined in lib/State.ts:18

An HTTP status code describing the response.


$type

$type: string = null

Inherited from State.$type

Defined in lib/State.ts:13

The derived class name of the instance.


Other Properties

Static router

router: Router

Defined in lib/abstract/Controllable.ts:91


Static schema

schema: Schema

Inherited from Validatable.schema

Defined in lib/abstract/Validatable.ts:24

An instance of Schema defining the properties necessary to construct an instance of the derived class.

Factory Methods

Static ACCEPTED

ACCEPTED(message: any): State‹›

Inherited from State.ACCEPTED

Defined in lib/State.ts:96

Creates a standard HTTP response.

Parameters:

Name Type Default
message any null

Returns: State‹›


Static BAD_REQUEST

BAD_REQUEST(message: any): State‹›

Inherited from State.BAD_REQUEST

Defined in lib/State.ts:110

Creates a standard HTTP response.

Parameters:

Name Type Default
message any null

Returns: State‹›


Static CONFLICT

CONFLICT(message: any): State‹›

Inherited from State.CONFLICT

Defined in lib/State.ts:138

Creates a standard HTTP response.

Parameters:

Name Type Default
message any null

Returns: State‹›


Static CREATED

CREATED(message: any): State‹›

Inherited from State.CREATED

Defined in lib/State.ts:89

Creates a standard HTTP response.

Parameters:

Name Type Default
message any null

Returns: State‹›


Static FORBIDDEN

FORBIDDEN(message: any): State‹›

Inherited from State.FORBIDDEN

Defined in lib/State.ts:124

Creates a standard HTTP response.

Parameters:

Name Type Default
message any null

Returns: State‹›


Static INTERNAL_SERVER_ERROR

INTERNAL_SERVER_ERROR(message: any): State‹›

Inherited from State.INTERNAL_SERVER_ERROR

Defined in lib/State.ts:145

Creates a standard HTTP response.

Parameters:

Name Type Default
message any null

Returns: State‹›


Static NOT_FOUND

NOT_FOUND(message: any): State‹›

Inherited from State.NOT_FOUND

Defined in lib/State.ts:131

Creates a standard HTTP response.

Parameters:

Name Type Default
message any null

Returns: State‹›


Static NO_CONTENT

NO_CONTENT(): State‹›

Inherited from State.NO_CONTENT

Defined in lib/State.ts:103

Creates a standard HTTP response.

Returns: State‹›


Static OK

OK(message: any): State‹›

Inherited from State.OK

Defined in lib/State.ts:82

Creates a standard HTTP response.

Parameters:

Name Type Default
message any null

Returns: State‹›


Static UNAUTHORIZED

UNAUTHORIZED(message: any): State‹›

Inherited from State.UNAUTHORIZED

Defined in lib/State.ts:117

Creates a standard HTTP response.

Parameters:

Name Type Default
message any null

Returns: State‹›


Other Methods

isError

isError(): boolean

Inherited from State.isError

Defined in lib/State.ts:46

Checks if the instance represents an error.

Returns: boolean


render

render(): any

Inherited from State.render

Defined in lib/State.ts:52

Returns a public representation of the instance payload. By default, this is the instance's message, though derived classes should override this behavior.

Returns: any


serialize

serialize(): string

Inherited from State.serialize

Defined in lib/State.ts:57

Returns a serialized version of the public representation of the instance for network transport.

Returns: string


toJSON

toJSON(): object

Inherited from State.toJSON

Defined in lib/State.ts:68

Returns a public representation of the instance metadata, with the instance's rendered payload assigned to the property payload on the resulting object. Called when an the instance is converted to JSON via JSON.stringify.

Returns: object

  • message: string = this.$message

  • payload: any = this.render()

  • query: string = this.$query

  • status: number = this.$status

  • type: string = this.$type


uses

uses(...states: Array‹State›): this

Inherited from State.uses

Defined in lib/State.ts:62

Adds the given states to the instance's dependencies, such that when those states are invalidated, so will be the instance.

Parameters:

Name Type
...states Array‹State

Returns: this


Static Protected controller

controller(options: ControllerOptions, method: any): Controller

Defined in lib/abstract/Controllable.ts:102

Creates an instance of Controller intended to be attached to a derived class as a static property.

Parameters:

Name Type Description
options ControllerOptions An object defining the endpoint method and pattern, authorizers, schema, and dependencies.
method any A function defining endpoint business logic.

Returns: Controller


Static root

root(): string

Defined in lib/abstract/Controllable.ts:94

(abstract) Returns the path from which all endpoints on the derived class originate.

Returns: string