Projektstart
This commit is contained in:
32
backend/node_modules/fastify/build/build-error-serializer.js
generated
vendored
Normal file
32
backend/node_modules/fastify/build/build-error-serializer.js
generated
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
/* istanbul ignore file */
|
||||
'use strict'
|
||||
|
||||
const FJS = require('fast-json-stringify')
|
||||
const path = require('node:path')
|
||||
const fs = require('node:fs')
|
||||
|
||||
const code = FJS({
|
||||
type: 'object',
|
||||
properties: {
|
||||
statusCode: { type: 'number' },
|
||||
code: { type: 'string' },
|
||||
error: { type: 'string' },
|
||||
message: { type: 'string' }
|
||||
}
|
||||
}, { mode: 'standalone' })
|
||||
|
||||
const file = path.join(__dirname, '..', 'lib', 'error-serializer.js')
|
||||
|
||||
const moduleCode = `// This file is autogenerated by build/build-error-serializer.js, do not edit
|
||||
/* istanbul ignore file */
|
||||
${code}
|
||||
`
|
||||
|
||||
if (require.main === module) {
|
||||
fs.writeFileSync(file, moduleCode)
|
||||
console.log(`Saved ${file} file successfully`)
|
||||
} else {
|
||||
module.exports = {
|
||||
code: moduleCode
|
||||
}
|
||||
}
|
||||
160
backend/node_modules/fastify/build/build-validation.js
generated
vendored
Normal file
160
backend/node_modules/fastify/build/build-validation.js
generated
vendored
Normal file
@@ -0,0 +1,160 @@
|
||||
'use strict'
|
||||
|
||||
const AjvStandaloneCompiler = require('@fastify/ajv-compiler/standalone')
|
||||
const { _ } = require('ajv')
|
||||
const fs = require('node:fs')
|
||||
const path = require('node:path')
|
||||
|
||||
const factory = AjvStandaloneCompiler({
|
||||
readMode: false,
|
||||
storeFunction (routeOpts, schemaValidationCode) {
|
||||
const moduleCode = `// This file is autogenerated by ${__filename.replace(__dirname, 'build')}, do not edit
|
||||
/* istanbul ignore file */
|
||||
${schemaValidationCode}
|
||||
|
||||
module.exports.defaultInitOptions = ${JSON.stringify(defaultInitOptions)}
|
||||
`
|
||||
|
||||
const file = path.join(__dirname, '..', 'lib', 'configValidator.js')
|
||||
fs.writeFileSync(file, moduleCode)
|
||||
console.log(`Saved ${file} file successfully`)
|
||||
}
|
||||
})
|
||||
|
||||
const defaultInitOptions = {
|
||||
connectionTimeout: 0, // 0 sec
|
||||
keepAliveTimeout: 72000, // 72 seconds
|
||||
forceCloseConnections: undefined, // keep-alive connections
|
||||
maxRequestsPerSocket: 0, // no limit
|
||||
requestTimeout: 0, // no limit
|
||||
bodyLimit: 1024 * 1024, // 1 MiB
|
||||
caseSensitive: true,
|
||||
allowUnsafeRegex: false,
|
||||
disableRequestLogging: false,
|
||||
jsonShorthand: true,
|
||||
ignoreTrailingSlash: false,
|
||||
ignoreDuplicateSlashes: false,
|
||||
maxParamLength: 100,
|
||||
onProtoPoisoning: 'error',
|
||||
onConstructorPoisoning: 'error',
|
||||
pluginTimeout: 10000,
|
||||
requestIdHeader: 'request-id',
|
||||
requestIdLogLabel: 'reqId',
|
||||
http2SessionTimeout: 72000, // 72 seconds
|
||||
exposeHeadRoutes: true,
|
||||
useSemicolonDelimiter: true
|
||||
}
|
||||
|
||||
const schema = {
|
||||
type: 'object',
|
||||
additionalProperties: false,
|
||||
properties: {
|
||||
connectionTimeout: { type: 'integer', default: defaultInitOptions.connectionTimeout },
|
||||
keepAliveTimeout: { type: 'integer', default: defaultInitOptions.keepAliveTimeout },
|
||||
forceCloseConnections: {
|
||||
oneOf: [
|
||||
{
|
||||
type: 'string',
|
||||
pattern: 'idle'
|
||||
},
|
||||
{
|
||||
type: 'boolean'
|
||||
}
|
||||
]
|
||||
},
|
||||
maxRequestsPerSocket: { type: 'integer', default: defaultInitOptions.maxRequestsPerSocket, nullable: true },
|
||||
requestTimeout: { type: 'integer', default: defaultInitOptions.requestTimeout },
|
||||
bodyLimit: { type: 'integer', default: defaultInitOptions.bodyLimit },
|
||||
caseSensitive: { type: 'boolean', default: defaultInitOptions.caseSensitive },
|
||||
allowUnsafeRegex: { type: 'boolean', default: defaultInitOptions.allowUnsafeRegex },
|
||||
http2: { type: 'boolean' },
|
||||
https: {
|
||||
if: {
|
||||
not: {
|
||||
oneOf: [
|
||||
{ type: 'boolean' },
|
||||
{ type: 'null' },
|
||||
{
|
||||
type: 'object',
|
||||
additionalProperties: false,
|
||||
required: ['allowHTTP1'],
|
||||
properties: {
|
||||
allowHTTP1: { type: 'boolean' }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
then: { setDefaultValue: true }
|
||||
},
|
||||
ignoreTrailingSlash: { type: 'boolean', default: defaultInitOptions.ignoreTrailingSlash },
|
||||
ignoreDuplicateSlashes: { type: 'boolean', default: defaultInitOptions.ignoreDuplicateSlashes },
|
||||
disableRequestLogging: {
|
||||
type: 'boolean',
|
||||
default: false
|
||||
},
|
||||
jsonShorthand: { type: 'boolean', default: defaultInitOptions.jsonShorthand },
|
||||
maxParamLength: { type: 'integer', default: defaultInitOptions.maxParamLength },
|
||||
onProtoPoisoning: { type: 'string', default: defaultInitOptions.onProtoPoisoning },
|
||||
onConstructorPoisoning: { type: 'string', default: defaultInitOptions.onConstructorPoisoning },
|
||||
pluginTimeout: { type: 'integer', default: defaultInitOptions.pluginTimeout },
|
||||
requestIdHeader: { anyOf: [{ enum: [false] }, { type: 'string' }], default: defaultInitOptions.requestIdHeader },
|
||||
requestIdLogLabel: { type: 'string', default: defaultInitOptions.requestIdLogLabel },
|
||||
http2SessionTimeout: { type: 'integer', default: defaultInitOptions.http2SessionTimeout },
|
||||
exposeHeadRoutes: { type: 'boolean', default: defaultInitOptions.exposeHeadRoutes },
|
||||
useSemicolonDelimiter: { type: 'boolean', default: defaultInitOptions.useSemicolonDelimiter },
|
||||
// deprecated style of passing the versioning constraint
|
||||
versioning: {
|
||||
type: 'object',
|
||||
additionalProperties: true,
|
||||
required: ['storage', 'deriveVersion'],
|
||||
properties: {
|
||||
storage: { },
|
||||
deriveVersion: { }
|
||||
}
|
||||
},
|
||||
constraints: {
|
||||
type: 'object',
|
||||
additionalProperties: {
|
||||
type: 'object',
|
||||
required: ['name', 'storage', 'validate', 'deriveConstraint'],
|
||||
additionalProperties: true,
|
||||
properties: {
|
||||
name: { type: 'string' },
|
||||
storage: { },
|
||||
validate: { },
|
||||
deriveConstraint: { }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
const compiler = factory({}, {
|
||||
customOptions: {
|
||||
code: {
|
||||
source: true,
|
||||
lines: true,
|
||||
optimize: 3
|
||||
},
|
||||
removeAdditional: true,
|
||||
useDefaults: true,
|
||||
coerceTypes: true,
|
||||
keywords: [
|
||||
{
|
||||
keyword: 'setDefaultValue',
|
||||
$data: true,
|
||||
// error: false,
|
||||
modifying: true,
|
||||
valid: true,
|
||||
code (keywordCxt) {
|
||||
const { gen, it, schemaValue } = keywordCxt
|
||||
const logicCode = gen.assign(_`${it.parentData}[${it.parentDataProperty}]`, schemaValue)
|
||||
return logicCode
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
})
|
||||
|
||||
compiler({ schema })
|
||||
11
backend/node_modules/fastify/build/sync-version.js
generated
vendored
Normal file
11
backend/node_modules/fastify/build/sync-version.js
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
'use strict'
|
||||
|
||||
const fs = require('node:fs')
|
||||
const path = require('node:path')
|
||||
|
||||
// package.json:version -> fastify.js:VERSION
|
||||
const { version } = JSON.parse(fs.readFileSync(path.join(__dirname, '..', 'package.json')).toString('utf8'))
|
||||
|
||||
const fastifyJs = path.join(__dirname, '..', 'fastify.js')
|
||||
|
||||
fs.writeFileSync(fastifyJs, fs.readFileSync(fastifyJs).toString('utf8').replace(/const\s*VERSION\s*=.*/, `const VERSION = '${version}'`))
|
||||
Reference in New Issue
Block a user