forked from twilio/starter-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
92 lines (78 loc) · 2.78 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
var createError = require('http-errors');
var express = require('express');
var path = require('path');
var cookieParser = require('cookie-parser');
var logger = require('morgan');
var twilio = require('twilio');
// Load configuration information from system environment variables.
var TWILIO_ACCOUNT_SID = process.env.TWILIO_ACCOUNT_SID,
TWILIO_AUTH_TOKEN = process.env.TWILIO_AUTH_TOKEN,
TWILIO_PHONE_NUMBER = process.env.TWILIO_PHONE_NUMBER;
// Create an authenticated client to access the Twilio REST API
var client = twilio(TWILIO_ACCOUNT_SID, TWILIO_AUTH_TOKEN);
var app = express();
// view engine setup
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'ejs');
app.use(logger('dev'));
app.use(express.json());
app.use(express.urlencoded({ extended: false }));
app.use(cookieParser());
app.use(express.static(path.join(__dirname, 'public')));
// render our home page
app.get('/', function(req, res, next) {
res.render('index');
});
// handle a POST request to send a text message.
// This is sent via ajax on our home page
app.post('/message', function(req, res, next) {
// Use the REST client to send a text message
client.messages.create({
to: req.body.to,
from: TWILIO_PHONE_NUMBER,
body: 'Good luck on your Twilio quest!'
}).then(function(message) {
// When we get a response from Twilio, respond to the HTTP POST request
res.send('Message is inbound!');
});
});
// handle a POST request to make an outbound call.
// This is sent via ajax on our home page
app.post('/call', function(req, res, next) {
// Use the REST client to send a text message
client.calls.create({
to: req.body.to,
from: TWILIO_PHONE_NUMBER,
url: 'http://demo.twilio.com/docs/voice.xml'
}).then(function(message) {
// When we get a response from Twilio, respond to the HTTP POST request
res.send('Call incoming!');
});
});
// Create a TwiML document to provide instructions for an outbound call
app.post('/hello', function(req, res, next) {
// Create a TwiML generator
var twiml = new twilio.twiml.VoiceResponse();
// var twiml = new twilio.TwimlResponse();
twiml.say('Hello there! You have successfully configured a web hook.');
twiml.say('Good luck on your Twilio quest!', {
voice:'woman'
});
// Return an XML response to this request
res.set('Content-Type','text/xml');
res.send(twiml.toString());
});
// catch 404 and forward to error handler
app.use(function(req, res, next) {
next(createError(404));
});
// error handler
app.use(function(err, req, res, next) {
// set locals, only providing error in development
res.locals.message = err.message;
res.locals.error = req.app.get('env') === 'development' ? err : {};
// render the error page
res.status(err.status || 500);
res.render('error');
});
module.exports = app;