Created
June 8, 2019 16:16
-
-
Save WhiteyDude/8dfe7c612cafa7dbf6f3970d5f8d946e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
calls = require('./calls') | |
srf.invite((req, res) => { | |
const ms = req.app.locals.ms; | |
ms.connectCaller(req, res, next) | |
.then(({endpoint, dialog}) => { | |
setHandlers(req, res, dialog, endpoint) | |
to = calls.parseURI(req.msg.headers.to); | |
to_number = calls.convertToE164(to.user) | |
calls.check_is_valid(to_number) | |
.then((number) => { | |
if (!number) { | |
console.log(`[${req.callid}] ${to_number} does not match`) | |
calls.playback_failure(endpoint) | |
.then(() => { | |
hangup(endpoint, dialog, req.callid); | |
// Stop execution somehow? | |
}); | |
} | |
console.log("Never get here") | |
}); | |
}); // End ms.ConnectCaller | |
}); // End invite | |
function hangup(endpoint, dialog, call_id) { | |
if (call_id) console.log(`[${call_id}] Destroying ${call_id} from hangup function`) | |
if (dialog) dialog.destroy() | |
if (endpoint) endpoint.destroy | |
return true | |
} | |
function setHandlers(req, res, dialog, endpoint) { | |
dialog.on('destroy', () => { | |
console.log(`Received BYE, deleting ${req.callid}`) | |
endpoint.destroy(); | |
// calls.delete_call(req.call_id); | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment