Class: abstract
BinaryService<T, E>
This is an abstract service to represent a storage of files The binary allow you to expose this service as HTTP
It supports two modes:
- attached to a CoreModel (attach, detach, reattach)
- pure storage with no managed id (read, write, delete)
As we have deduplication builtin you can get some stats
- getUsageCount(hash)
- getUsageCountForRaw()
- getUsageCountForMap()
The Binary storage should store only once a binary and reference every object that are used by this binary, so it can be cleaned.
See
- FileBinary
- S3Binary
Exports
Abstract
Webda Modda
Binary
Extends
Service
<T
,E
>
Type parameters
• T extends BinaryParameters
= BinaryParameters
• E extends BinaryEvents
= BinaryEvents
Implements
Constructors
new BinaryService(webda, name, params)
new BinaryService<
T
,E
>(webda
,name
,params
):BinaryService
<T
,E
>
Parameters
• webda: Core
<CoreEvents
>
The main instance of Webda
• name: string
The name of the service
• params: DeepPartial
<T
>= {}
The parameters block define in the configuration file
Returns
BinaryService
<T
, E
>
Inherited from
Source
packages/core/src/services/service.ts:334
Properties
_createException
_createException:
string
Inherited from
Source
packages/core/src/services/service.ts:315
_initException
_initException:
any
=undefined
Inherited from
Source
packages/core/src/services/service.ts:317
_initTime
_initTime:
number
Inherited from
Source
packages/core/src/services/service.ts:316
_lowercaseMaps
_lowercaseMaps:
any
Source
packages/core/src/services/binary.ts:574
_name
protected
_name:string
Service name
Inherited from
Source
packages/core/src/services/service.ts:308
_webda
protected
_webda:Core
<CoreEvents
>
Webda Core object
Inherited from
Source
packages/core/src/services/service.ts:304
logger
protected
logger:Logger
Logger with class context
Inherited from
Source
packages/core/src/services/service.ts:321
metrics
metrics:
Object
Get metrics
Type declaration
delete
delete:
Counter
<string
>
download
download:
Counter
<string
>
metadataUpdate
metadataUpdate:
Counter
<string
>
upload
upload:
Counter
<string
>
Overrides
Source
packages/core/src/services/binary.ts:576
parameters
protected
parameters:T
Hold the parameters for your service
It will be bring from the webda.config.json
Inherited from
Source
packages/core/src/services/service.ts:314
captureRejectionSymbol
static
readonly
captureRejectionSymbol: typeofcaptureRejectionSymbol
Inherited from
Service
.captureRejectionSymbol
Source
packages/core/node_modules/@types/node/events.d.ts:328
captureRejections
static
captureRejections:boolean
Sets or gets the default captureRejection value for all emitters.
Inherited from
Source
packages/core/node_modules/@types/node/events.d.ts:333
defaultMaxListeners
static
defaultMaxListeners:number
Inherited from
Source
packages/core/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
Source
packages/core/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
Abstract
Source
packages/core/src/services/service.ts:642
_get()
abstract
_get(info
):Promise
<Readable
>
Parameters
• info: BinaryMap
<any
>
Returns
Promise
<Readable
>
Source
packages/core/src/services/binary.ts:804
_getFile()
_getFile(
req
):Promise
<BinaryFile
<any
>>
Get file either from multipart post or raw
Parameters
• req: WebContext
<any
, any
>
Returns
Promise
<BinaryFile
<any
>>
Source
packages/core/src/services/binary.ts:958
_initRoutes()
_initRoutes():
void
Init the Binary system routes
Making sure parameters.expose exists prior
Returns
void
Source
packages/core/src/services/binary.ts:983
_verifyMapAndStore()
_verifyMapAndStore(
ctx
):Store
<CoreModel
,StoreParameters
,StoreEvents
>
Based on the request parameter verify it match a known mapping
Parameters
• ctx: WebContext
<any
, any
>
Returns
Store
<CoreModel
, StoreParameters
, StoreEvents
>
Source
packages/core/src/services/binary.ts:1151
addListener()
addListener(
eventName
,listener
):this
Alias for emitter.on(eventName, listener)
.
Parameters
• eventName: string
| symbol
• listener: (...args
) => void
Returns
this
Inherited from
Since
v0.1.26
Source
packages/core/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
= false
Returns
void
Inherited from
Source
packages/core/src/services/service.ts:482
authorizeClientEvent()
authorizeClientEvent(
_event
,_context
):boolean
Authorize a public event subscription
Parameters
• _event: string
• _context: OperationContext
<any
, any
>
Returns
boolean
Inherited from
Source
packages/core/src/services/service.ts:438
cascadeDelete()
abstract
cascadeDelete(info
,uuid
):Promise
<void
>
Cascade delete the object
Parameters
• info: BinaryMap
<any
>
of the map
• uuid: string
of the object
Returns
Promise
<void
>
Source
packages/core/src/services/binary.ts:925
checkMap()
protected
checkMap(object
,property
):void
Check if a map is defined
Parameters
• object: CoreModel
• property: string
Returns
void
Source
packages/core/src/services/binary.ts:869
computeParameters()
computeParameters():
void
Used to compute or derivate input parameter to attribute
Returns
void
Inherited from
Source
packages/core/src/services/service.ts:352
delete()
abstract
delete(object
,property
,index
?):Promise
<void
>
Delete a binary
Parameters
• object: CoreModel
The object uuid to get from the store
• property: string
The object property to add the file to
• index?: number
The index of the file to change in the property
Returns
Promise
<void
>
Emits
'binaryDelete'
Source
packages/core/src/services/binary.ts:746
deleteSuccess()
deleteSuccess(
object
,property
,index
?):Promise
<any
>
Parameters
• object: BinaryModel
<Object
>
• property: string
• index?: number
Returns
Promise
<any
>
Source
packages/core/src/services/binary.ts:935
downloadTo()
downloadTo(
info
,filename
):Promise
<void
>
Download a binary to a file
Parameters
• info: BinaryMap
<any
>
The reference stored in your target object
• filename: any
Returns
Promise
<void
>
Source
packages/core/src/services/binary.ts:769
emit()
emit<
Key
>(event
,data
):boolean
Override to allow capturing long listeners
Type parameters
• Key extends string
| number
| symbol
Parameters
• event: symbol
| Key
• data: E
[Key
]
Returns
boolean
Inherited from
Source
packages/core/src/services/service.ts:596
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
| symbol
Parameters
• event: Key
• data: E
[Key
]
Returns
Promise
<any
[]>
Inherited from
Source
packages/core/src/services/service.ts:588
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
Since
v6.0.0
Source
packages/core/node_modules/@types/node/events.d.ts:669
get()
get(
info
):Promise
<Readable
>
Get a binary
Parameters
• info: BinaryMap
<any
>
The reference stored in your target object
Returns
Promise
<Readable
>
Emits
'binaryGet'
Source
packages/core/src/services/binary.ts:754
getClientEvents()
getClientEvents():
string
[]
Return the events that an external system can subscribe to
Returns
string
[]
Inherited from
Source
packages/core/src/services/service.ts:429
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
Since
v1.0.0
Source
packages/core/node_modules/@types/node/events.d.ts:526
getMetric()
getMetric<
T
>(type
,configuration
):T
Add service name label
Type parameters
• T = Counter
<string
> | Histogram
<string
> | Gauge
<string
>
Parameters
• type: Constructor
<T
, [MetricConfiguration
<T
>]>
• configuration: MetricConfiguration
<T
>
Returns
T
Inherited from
Source
packages/core/src/services/service.ts:414
getName()
getName():
string
Get service name
Returns
string
Inherited from
Source
packages/core/src/services/service.ts:633
getOpenApiReplacements()
getOpenApiReplacements():
any
Return variables for replacement in openapi
Returns
any
Inherited from
Service
.getOpenApiReplacements
Source
packages/core/src/services/service.ts:507
getOperationId()
getOperationId(
id
):string
If undefined is returned it cancel the operation registration
Parameters
• id: string
Returns
string
Inherited from
Source
packages/core/src/services/service.ts:471
getOperationName()
protected
getOperationName():string
Return the name of the service for OpenAPI
Returns
string
Source
packages/core/src/services/binary.ts:1142
getParameters()
getParameters():
T
Get the service parameters
Returns
T
Inherited from
Source
packages/core/src/services/service.ts:359
getRedirectUrlFromObject()
getRedirectUrlFromObject(
binaryMap
,_context
,_expires
):Promise
<string
>
Get a UrlFromObject
Parameters
• binaryMap: BinaryMap
<any
>
• _context: OperationContext
<any
, any
>
• _expires: number
= 30
Returns
Promise
<string
>
Source
packages/core/src/services/binary.ts:667
getService()
getService<
K
>(service
):K
Return a webda service
Type parameters
• K extends Service
<ServiceParameters
, Events
>
Parameters
• service: string
name to retrieve
Returns
K
Inherited from
Source
packages/core/src/services/service.ts:626
getUrl()
getUrl(
url
,_methods
):string
Return the full path url based on parameters
Parameters
• url: string
relative url to service
• _methods: HttpMethodType
[]
in case we need filtering (like Store)
Returns
string
absolute url or undefined if need to skip the Route
Inherited from
Source
packages/core/src/services/service.ts:449
getUsageCount()
abstract
getUsageCount(hash
):Promise
<number
>
The store can retrieve how many time a binary has been used
Parameters
• hash: string
Returns
Promise
<number
>
Source
packages/core/src/services/binary.ts:736
getWebda()
getWebda():
Core
<CoreEvents
>
Return WebdaCore
Returns
Inherited from
Source
packages/core/src/services/service.ts:366
handleBinary()
handleBinary(
modelName
,attribute
):0
|2
|1
|-1
Define if binary is managed by the store
Parameters
• modelName: string
• attribute: string
Returns
0
| 2
| 1
| -1
-1 if not managed, 0 if managed but by default, 1 if managed and in the map, 2 if explicit with attribute and model
Source
packages/core/src/services/binary.ts:681
httpChallenge()
httpChallenge(
ctx
):Promise
<void
>
Mechanism to add a data based on challenge