Class: HawkService
Verify signature and sign server
Implementation of hawk protocol https://github.com/mozilla/hawk#readme
Webda Modda
Hawk
Extends
Service
<HawkServiceParameters
>
Implements
RequestFilter
Constructors
new HawkService(webda, name, params)
new HawkService(
webda
,name
,params
?):HawkService
Parameters
• webda: Core
<CoreEvents
>
The main instance of Webda
• name: string
The name of the service
• params?: DeepPartial
<HawkServiceParameters
>
The parameters block define in the configuration file
Returns
Inherited from
Service<HawkServiceParameters>.constructor
Source
core/lib/services/service.d.ts:168
Properties
_createException
_createException:
string
Inherited from
Service._createException
Source
core/lib/services/service.d.ts:149
_initException
_initException:
any
Inherited from
Service._initException
Source
core/lib/services/service.d.ts:151
_initTime
_initTime:
number
Inherited from
Service._initTime
Source
core/lib/services/service.d.ts:150
_name
protected
_name:string
Service name
Inherited from
Service._name
Source
core/lib/services/service.d.ts:142
_webda
protected
_webda:Core
<CoreEvents
>
Webda Core object
Inherited from
Service._webda
Source
core/lib/services/service.d.ts:138
cryptoService
protected
cryptoService:default
<CryptoServiceParameters
>
CryptoService
Source
logger
protected
logger:Logger
Logger with class context
Inherited from
Service.logger
Source
core/lib/services/service.d.ts:155
metrics?
protected
metrics?:any
Get metrics
Inherited from
Service.metrics
Source
core/lib/services/service.d.ts:159
parameters
protected
parameters:HawkServiceParameters
Hold the parameters for your service
It will be bring from the webda.config.json
Inherited from
Service.parameters
Source
core/lib/services/service.d.ts:148
store
protected
store:Store
<ApiKey
,StoreParameters
,StoreEvents
> =undefined
Source
captureRejectionSymbol
static
readonly
captureRejectionSymbol: typeofcaptureRejectionSymbol
Inherited from
Service.captureRejectionSymbol
Source
hawk/node_modules/@types/node/events.d.ts:328
captureRejections
static
captureRejections:boolean
Sets or gets the default captureRejection value for all emitters.
Inherited from
Service.captureRejections
Source
hawk/node_modules/@types/node/events.d.ts:333
defaultMaxListeners
static
defaultMaxListeners:number
Inherited from
Service.defaultMaxListeners
Source
hawk/node_modules/@types/node/events.d.ts:334
errorMonitor
static
readonly
errorMonitor: typeoferrorMonitor
This symbol shall be used to install a listener for only monitoring 'error'
events. Listeners installed using this symbol are called before the regular
'error'
listeners are called.
Installing a listener using this symbol does not change the behavior once an
'error'
event is emitted, therefore the process will still crash if no
regular 'error'
listener is installed.
Inherited from
Service.errorMonitor
Source
hawk/node_modules/@types/node/events.d.ts:327
Methods
__clean()
__clean():
Promise
<void
>
Clean the service data, can only be used in test mode
Returns
Promise
<void
>
Inherited from
Service.__clean
Abstract
Source
core/lib/services/service.d.ts:319
_redirect()
_redirect(
context
):Promise
<void
>
Redirect with a CSRF
Parameters
• context: WebContext
<any
, any
>
Returns
Promise
<void
>
Source
addListener()
addListener(
eventName
,listener
):this
Alias for emitter.on(eventName, listener)
.
Parameters
• eventName: string
| symbol
• listener: (...args
) => void
Returns
this
Inherited from
Service.addListener
Since
v0.1.26
Source
hawk/node_modules/@types/node/events.d.ts:354
addRoute()
protected
addRoute(url
,methods
,executer
,openapi
?,override
?):void
Add a route dynamicaly
Parameters
• url: string
of the route can contains dynamic part like {uuid}
• methods: HttpMethodType
[]
• executer: Function
Method to execute for this route
• openapi?: OpenAPIWebdaDefinition
• override?: boolean
Returns
void
Inherited from
Service.addRoute
Source
core/lib/services/service.d.ts:242
authorizeClientEvent()
authorizeClientEvent(
_event
,_context
):boolean
Authorize a public event subscription
Parameters
• _event: string
• _context: OperationContext
<any
, any
>
Returns
boolean
Inherited from
Service.authorizeClientEvent
Source
core/lib/services/service.d.ts:220
checkOPTIONS()
checkOPTIONS(
origin
):Promise
<boolean
>
Parameters
• origin: string
Returns
Promise
<boolean
>
Source
checkRequest()
checkRequest(
context
):Promise
<boolean
>
Stricly parse the request's attributes and then approve or reject
Parameters
• context: WebContext
<any
, any
>
Returns
Promise
<boolean
>
Implementation of
RequestFilter.checkRequest
Source
computeParameters()
computeParameters():
void
Used to compute or derivate input parameter to attribute
Returns
void
Inherited from
Service.computeParameters
Source
core/lib/services/service.d.ts:176
emit()
emit<
Key
>(event
,data
):boolean
Override to allow capturing long listeners
Type parameters
• Key extends string
| number
Parameters
• event: symbol
| Key
• data: Events
[Key
]
Returns
boolean
Inherited from
Service.emit
Source
core/lib/services/service.d.ts:289
emitSync()
emitSync<
Key
>(event
,data
):Promise
<any
[]>
Emit the event with data and wait for Promise to finish if listener returned a Promise
Type parameters
• Key extends string
| number
Parameters
• event: Key
• data: Events
[Key
]
Returns
Promise
<any
[]>
Inherited from
Service.emitSync
Source
core/lib/services/service.d.ts:284
eventNames()
eventNames(): (
string
|symbol
)[]
Returns an array listing the events for which the emitter has registered
listeners. The values in the array are strings or Symbol
s.
const EventEmitter = require('events');
const myEE = new EventEmitter();
myEE.on('foo', () => {});
myEE.on('bar', () => {});
const sym = Symbol('symbol');
myEE.on(sym, () => {});
console.log(myEE.eventNames());
// Prints: [ 'foo', 'bar', Symbol(symbol) ]
Returns
(string
| symbol
)[]
Inherited from
Service.eventNames
Since
v6.0.0
Source
hawk/node_modules/@types/node/events.d.ts:669
getApiKey()
getApiKey(
id
,_timestamp
):Promise
<HawkCredentials
>
Parameters
• id: any
• _timestamp: any
= undefined
used to invalidate cache
Returns
Promise
<HawkCredentials
>
Source
getClientEvents()
getClientEvents():
string
[]
Return the events that an external system can subscribe to
Returns
string
[]
Inherited from
Service.getClientEvents
Source
core/lib/services/service.d.ts:214
getHawkRequest()
getHawkRequest(
context
):Promise
<Object
>
Return information for hawk
Parameters
• context: WebContext
<any
, any
>
Returns
Promise
<Object
>
authorization
authorization:
string
contentType
contentType:
string
host
host:
string
method
method:
HttpMethodType
payload
payload:
string
|Buffer
port
port:
number
url
url:
string
Source
getMaxListeners()
getMaxListeners():
number
Returns the current max listener value for the EventEmitter
which is either
set by emitter.setMaxListeners(n)
or defaults to defaultMaxListeners.
Returns
number
Inherited from
Service.getMaxListeners
Since
v1.0.0
Source
hawk/node_modules/@types/node/events.d.ts:526
getMetric()
getMetric<
T
>(type
,configuration
):T
Add service name label