From cdf83c3af5275cf2c1c1e8d5c533bb17fb80db12 Mon Sep 17 00:00:00 2001 From: Peter Krzyzek Date: Tue, 14 Mar 2023 15:25:11 +0100 Subject: [PATCH] Added twillio code --- Twillio/call-management.js | 58 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 Twillio/call-management.js diff --git a/Twillio/call-management.js b/Twillio/call-management.js new file mode 100644 index 0000000..5e4db42 --- /dev/null +++ b/Twillio/call-management.js @@ -0,0 +1,58 @@ +const moment = require('moment-timezone'); + +function isServiceOpen() { + let now = moment().tz('Australia/Brisbane'); + let isWorkday = now.isoWeekday() < 6; + let isWorkingHour = now.hour() > 7 && now.hour() < 17; + + return isWorkday && isWorkingHour; +} + +exports.handler = function(context, event, callback) { + const twiml = new Twilio.twiml.VoiceResponse(); + + console.log(event); + + const callIncludesRecording = !!event.RecordingUrl; + const callWasAnswered = event.DialCallStatus === 'completed'; + const callWasNotAnswered = event.DialCallStatus === 'no-answer'; + const serviceIsOpen = isServiceOpen(); + + if (callWasAnswered) { + twiml.hangup(); + } else if (callIncludesRecording) { + console.log('Call includes recording!'); + + // do something with the recording URL here + console.log(event.RecordingUrl); + + twiml.say("Thank you! We'll come back to you shortly."); + twiml.hangup(); + } else if (callWasNotAnswered) { + console.log('Call was not answered...'); + + twiml.say( + 'Unfortunately no one can answer right now. But you can leave a message.' + ); + twiml.record({ + action: '/handle-call' + }); + } else if (!serviceIsOpen) { + console.log('Service is closed...'); + twiml.say('Service is closed but you can leave a message'); + twiml.record({ + action: '/handle-call' + }); + } else { + twiml.dial( + { + action: '/handle-call', + method: 'POST', + timeout: 5 + }, + '+4915...' + ); + } + + callback(null, twiml); +}; \ No newline at end of file