mirror of
https://github.com/jambonz/jambonz-feature-server.git
synced 2025-12-22 01:27:55 +00:00
rest outdial: handle 302 redirect so we can later cancel request if needed (#95)
This commit is contained in:
@@ -132,8 +132,14 @@ router.post('/', async(req, res) => {
|
|||||||
try {
|
try {
|
||||||
const dlg = await srf.createUAC(uri, {...opts, followRedirects: true, keepUriOnRedirect: true}, {
|
const dlg = await srf.createUAC(uri, {...opts, followRedirects: true, keepUriOnRedirect: true}, {
|
||||||
cbRequest: (err, inviteReq) => {
|
cbRequest: (err, inviteReq) => {
|
||||||
/* in case of 302 redirect, this gets called twice, ignore the second */
|
/* in case of 302 redirect, this gets called twice, ignore the second
|
||||||
if (res.headersSent) return;
|
except to update the req so that it can later be canceled if need be
|
||||||
|
*/
|
||||||
|
if (res.headersSent) {
|
||||||
|
logger.info(`create-call: got redirect, updating request to new call-id ${req.get('Call-ID')}`);
|
||||||
|
if (cs) cs.req = inviteReq;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (err) {
|
if (err) {
|
||||||
logger.error(err, 'createCall Error creating call');
|
logger.error(err, 'createCall Error creating call');
|
||||||
|
|||||||
Reference in New Issue
Block a user