如何为要作为响应发送的文件编写Joi模式?
我的路线返回此return h.file(filename, { mode: 'attachment'}).code(201);
,好吧,content-dispostion
响应标头是attachment; filename=entries.csv
。
我也许可以检查响应的对象结构,但是Joi有没有办法提供一种属性来检查响应中的文件?
答案 0 :(得分:1)
我误解了这个问题-这是关于验证响应标头,而不是请求标头。 简短的答案:无法完成。
长答案:
基于 hapijs 17.5.3 https://hapijs.com/api#-routeoptionsresponseoptions,它似乎可以通过以下功能实现:
server.route({
method: 'GET',
path: '/file',
options: {
handler: (request, h) => {
return h.file('foobar.csv', { mode: 'attachment'}).code(201);
},
response: {
schema: async (value, options) => {
console.log('validating response:', value);
}
}
}
});
但是这种方法无效。 hapijs不支持它,您将从第151行得到一个异常:https://github.com/hapijs/hapi/blob/76fcd7fa97747c92501b912d64db459d7172cb26/lib/validation.js 这是
if (!response.isBoom &&
request.response.variety !== 'plain') {
throw Boom.badImplementation('Cannot validate non-object response');
}
这是在请求上验证标题的方法:
'use strict';
const Joi = require('joi');
const ErrorHandler = require('../handlers/errorHandler');
const fileUploadValidator = {
config: {
validate: {
params: {
env: Joi.string().min(2).max(10).required()
},
query: {
id: Joi.number().integer().min(0).required()
},
headers: Joi.object({
'x-request-id': Joi.string().guid().required(),
'content-disposition': Joi.string().regex(/attachment;\s*filename=.+\.csv/gi).insensitive().required()
}).options({ allowUnknown: true }),
failAction: ErrorHandler.apply_genericHandler
}
}
};
module.exports = fileUploadValidator;
路线定义:
server.route({
method: 'POST',
path: '/{env}/v1/fileUpload',
handler: FileUploadHandler.apply,
options: FileUploadValidator.config
});
您可能需要稍微调整一下。我是根据您的问题制作的。