You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
140 lines
3.3 KiB
140 lines
3.3 KiB
'use strict'
|
|
|
|
/* eslint no-prototype-builtins: 0 */
|
|
|
|
const {
|
|
kReply,
|
|
kRequest,
|
|
kState
|
|
} = require('./symbols.js')
|
|
|
|
const {
|
|
FST_ERR_DEC_ALREADY_PRESENT,
|
|
FST_ERR_DEC_MISSING_DEPENDENCY,
|
|
FST_ERR_DEC_AFTER_START,
|
|
FST_ERR_DEC_DEPENDENCY_INVALID_TYPE
|
|
} = require('./errors')
|
|
|
|
const warning = require('./warnings')
|
|
|
|
function decorate (instance, name, fn, dependencies) {
|
|
if (instance.hasOwnProperty(name)) {
|
|
throw new FST_ERR_DEC_ALREADY_PRESENT(name)
|
|
}
|
|
|
|
checkDependencies(instance, name, dependencies)
|
|
|
|
if (fn && (typeof fn.getter === 'function' || typeof fn.setter === 'function')) {
|
|
Object.defineProperty(instance, name, {
|
|
get: fn.getter,
|
|
set: fn.setter
|
|
})
|
|
} else {
|
|
instance[name] = fn
|
|
}
|
|
}
|
|
|
|
function decorateConstructor (konstructor, name, fn, dependencies) {
|
|
const instance = konstructor.prototype
|
|
if (instance.hasOwnProperty(name) || hasKey(konstructor, name)) {
|
|
throw new FST_ERR_DEC_ALREADY_PRESENT(name)
|
|
}
|
|
|
|
checkDependencies(konstructor, name, dependencies)
|
|
|
|
if (fn && (typeof fn.getter === 'function' || typeof fn.setter === 'function')) {
|
|
Object.defineProperty(instance, name, {
|
|
get: fn.getter,
|
|
set: fn.setter
|
|
})
|
|
} else if (typeof fn === 'function') {
|
|
instance[name] = fn
|
|
} else {
|
|
konstructor.props.push({ key: name, value: fn })
|
|
}
|
|
}
|
|
|
|
function checkReferenceType (name, fn) {
|
|
if (typeof fn === 'object' && fn && !(typeof fn.getter === 'function' || typeof fn.setter === 'function')) {
|
|
warning.emit('FSTDEP006', name)
|
|
}
|
|
}
|
|
|
|
function decorateFastify (name, fn, dependencies) {
|
|
assertNotStarted(this, name)
|
|
decorate(this, name, fn, dependencies)
|
|
return this
|
|
}
|
|
|
|
function checkExistence (instance, name) {
|
|
if (name) {
|
|
return name in instance || (instance.prototype && name in instance.prototype) || hasKey(instance, name)
|
|
}
|
|
|
|
return instance in this
|
|
}
|
|
|
|
function hasKey (fn, name) {
|
|
if (fn.props) {
|
|
return fn.props.find(({ key }) => key === name)
|
|
}
|
|
return false
|
|
}
|
|
|
|
function checkRequestExistence (name) {
|
|
if (name && hasKey(this[kRequest], name)) return true
|
|
return checkExistence(this[kRequest].prototype, name)
|
|
}
|
|
|
|
function checkReplyExistence (name) {
|
|
if (name && hasKey(this[kReply], name)) return true
|
|
return checkExistence(this[kReply].prototype, name)
|
|
}
|
|
|
|
function checkDependencies (instance, name, deps) {
|
|
if (deps === undefined || deps === null) {
|
|
return
|
|
}
|
|
|
|
if (!Array.isArray(deps)) {
|
|
throw new FST_ERR_DEC_DEPENDENCY_INVALID_TYPE(name)
|
|
}
|
|
|
|
// eslint-disable-next-line no-var
|
|
for (var i = 0; i !== deps.length; ++i) {
|
|
if (!checkExistence(instance, deps[i])) {
|
|
throw new FST_ERR_DEC_MISSING_DEPENDENCY(deps[i])
|
|
}
|
|
}
|
|
}
|
|
|
|
function decorateReply (name, fn, dependencies) {
|
|
assertNotStarted(this, name)
|
|
checkReferenceType(name, fn)
|
|
decorateConstructor(this[kReply], name, fn, dependencies)
|
|
return this
|
|
}
|
|
|
|
function decorateRequest (name, fn, dependencies) {
|
|
assertNotStarted(this, name)
|
|
checkReferenceType(name, fn)
|
|
decorateConstructor(this[kRequest], name, fn, dependencies)
|
|
return this
|
|
}
|
|
|
|
function assertNotStarted (instance, name) {
|
|
if (instance[kState].started) {
|
|
throw new FST_ERR_DEC_AFTER_START(name)
|
|
}
|
|
}
|
|
|
|
module.exports = {
|
|
add: decorateFastify,
|
|
exist: checkExistence,
|
|
existRequest: checkRequestExistence,
|
|
existReply: checkReplyExistence,
|
|
dependencies: checkDependencies,
|
|
decorateReply,
|
|
decorateRequest
|
|
}
|