我正在尝试在AdonisJS控制器中使用node-http-proxy,但出现错误
The "url" argument must be of type string. Received type function
导致错误的行是proxy.web(request, response, { target: urlToProxy });
async proxy({ request, response }){
var resource = await Resource.query().where('uri', request.url()).with('service.user').with('userSecurity').first()
resource = resource.toJSON()
if(!resource.service.active){
return response.status(404).send(`Parent service '${resource.service.title}' is disabled`)
}
if(!resource.active){
return response.status(404).send(`Resource is disabled`)
}
if(resource.userSecurity.length <= 0) {
return response.status(403).send(`You are not permitted to access that resource. Contact ${resource.service.user.first_name} ${resource.service.user.last_name} (${resource.service.user.email})`)
}
var urlToProxy = url.resolve(resource.service.basepath, request.originalUrl())
var proxy = httpProxy.createProxyServer()
proxy.web(request, response, { target: urlToProxy });
}
答案 0 :(得分:0)
最后,我走得更近了,但还没有完全解决。渐渐接近的一点是意识到http-proxy通过缓冲区传递数据,所以我必须要做类似的事情
proxy.web(req, res, { target: data.service.basepath})
proxy.on('error', function(err, req, res){
console.log("There was an error", err)
})
proxy.on('proxyRes', async (proxyRes, request, response) =>{
var body = new Buffer('')
proxyRes.on('data', (data)=>{
body = Buffer.concat([body, data])
})
proxyRes.on('end', ()=>{
body = body.toString()
try{
res.send(body)
}catch(err){
}
})
});
但是,由于控制器在http-proxy完成请求之前返回,因此我仍然无法使它工作。
最后,也许为了最好,我编写了一个独立的代理应用程序,并使用主应用程序只是为了在JWT令牌通过代理之前对其进行验证。
答案 1 :(得分:0)
您是如此亲密,我想做类似的事情并将代理服务器包装在一个Promise中,以便我们可以等待代理服务器返回后再用我们的响应进行响应:
const proxy = httpProxy.createProxyServer();
const prom = new Promise((resolve, reject) => {
proxy.web(request.request, response.response, {
target: urlToTarget
}, (e) => {
reject(e);
});
proxy.on('proxyRes', function (proxyRes, req, res) {
let body = [];
proxyRes.on('data', function (chunk) {
body.push(chunk);
});
proxyRes.on('end', function () {
body = Buffer.concat(body).toString();
resolve(body);
});
});
});
const result = await prom;
response.body(result);
return response;
我想我会为遇到此问题的任何人提供一个完整的答案。