-
Notifications
You must be signed in to change notification settings - Fork 0
/
go-app-ussd_pmtct_rapidpro.js
545 lines (499 loc) · 22 KB
/
go-app-ussd_pmtct_rapidpro.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
var go = {};
go;
go.RapidPro = function() {
var vumigo = require('vumigo_v02');
var url_utils = require('url');
var events = vumigo.events;
var Eventable = events.Eventable;
var RapidPro = Eventable.extend(function(self, json_api, base_url, auth_token) {
self.json_api = json_api;
self.base_url = base_url;
self.auth_token = auth_token;
self.json_api.defaults.headers.Authorization = ['Token ' + self.auth_token];
self.json_api.defaults.headers['User-Agent'] = ['NDoH-JSBox/RapidPro'];
self.get_contact = function(filters) {
filters = filters || {};
var url = self.base_url + "/api/v2/contacts.json";
return self.json_api.get(url, {params: filters})
.then(function(response){
var contacts = response.data.results;
if(contacts.length > 0){
return contacts[0];
}
else {
return null;
}
});
};
self.update_contact = function(filter, details) {
var url = self.base_url + "/api/v2/contacts.json";
return self.json_api.post(url, {params: filter, data: details})
.then(function(response) {
return response.data;
});
};
self.create_contact = function(details) {
var url = self.base_url + "/api/v2/contacts.json";
return self.json_api.post(url, {data: details})
.then(function(response) {
return response.data;
});
};
self._get_paginated_response = function(url, params) {
/* Gets all the pages of a paginated response */
return self.json_api.get(url, {params: params})
.then(function(response){
var results = response.data.results;
if(response.data.next === null) {
return results;
}
var query = url_utils.parse(response.data.next).query;
return self._get_paginated_response(url, query)
.then(function(response) {
return results.concat(response);
});
});
};
self.get_flows = function(filter) {
var url = self.base_url + "/api/v2/flows.json";
return self._get_paginated_response(url, filter);
};
self.get_flow_by_name = function(name) {
name = name.toLowerCase().trim();
return self.get_flows().then(function(flows){
flows = flows.filter(function(flow) {
return flow.name.toLowerCase().trim() === name;
});
if(flows.length > 0) {
return flows[0];
} else {
return null;
}
});
};
self.start_flow = function(flow_uuid, contact_uuid, contact_urn, extra) {
var url = self.base_url + "/api/v2/flow_starts.json";
var data = {flow: flow_uuid};
if(contact_uuid) {
data.contacts = [contact_uuid];
}
if(contact_urn) {
data.urns = [contact_urn];
}
if(extra) {
data.extra = extra;
}
return self.json_api.post(url, {data: data});
};
self.get_global_flag = function(global_name) {
var url = self.base_url + "/api/v2/globals.json";
return self.json_api.get(url, {params: {key: global_name}})
.then(function(response){
var results = response.data.results;
if(results.length > 0){
return results[0].value.toLowerCase() === "true";
}
else {
return false;
}
});
};
});
return RapidPro;
}();
go.app = function() {
var vumigo = require("vumigo_v02");
var App = vumigo.App;
var _ = require("lodash");
var moment = require('moment');
var utils = require("seed-jsbox-utils").utils;
var JsonApi = vumigo.http.api.JsonApi;
var Choice = vumigo.states.Choice;
var MenuState = vumigo.states.MenuState;
var FreeText = vumigo.states.FreeText;
var EndState = vumigo.states.EndState;
var PaginatedChoiceState = vumigo.states.PaginatedChoiceState;
var ChoiceState = vumigo.states.ChoiceState;
var GoNDOH = App.extend(function(self) {
App.call(self, "state_start");
var $ = self.$;
self.init = function() {
self.rapidpro = new go.RapidPro(
new JsonApi(self.im, {headers: {'User-Agent': ["Jsbox/NDoH-PMTCT"]}}),
self.im.config.services.rapidpro.base_url,
self.im.config.services.rapidpro.token
);
};
self.add = function(name, creator) {
self.states.add(name, function(name, opts) {
if (self.im.msg.session_event !== 'new')
return creator(name, opts);
var timeout_opts = opts || {};
timeout_opts.name = name;
return self.states.create('state_timed_out', timeout_opts);
});
};
self.states.add('state_timed_out', function(name, creator_opts) {
return new MenuState(name, {
question: $('Welcome back. Please select an option:'),
choices: [
new Choice(creator_opts.name, $('Continue signing up for messages')),
new Choice('state_start', $('Main menu'))
]
});
});
self.states.add("state_start", function(name) {
self.im.user.answers = {};
return new MenuState(name, {
question: $([
"Welcome! The Dept. of Health's MomConnect sends Eng msgs on WhatsApp.",
"Is {{msisdn}} the no. signing up/opting out of HIV msgs?"
].join("\n")).context({msisdn: utils.readable_msisdn(self.im.user.addr, "27")}),
error:
"Sorry we don't understand. Please enter the number next to the mother's " +
"answer.",
choices: [
new Choice("state_check_subscription", "Yes"),
new Choice("state_enter_msisdn", "No")
]
});
});
self.add("state_enter_msisdn", function(name) {
return new FreeText(name, {
question:
"Please enter the cell number of the mom that would like to sign up to or " +
"opt out of HIV-related messages from MomConnect e.g. 0813547654.",
check: function(content) {
if(!utils.is_valid_msisdn(content, "ZA")) {
return (
"Sorry, we don't understand that number. Please enter 10 digit " +
"cell number that the mother would like to get or opt out of HIV-related messages " +
"e.g. 0813547654.");
}
if(utils.normalize_msisdn(content, "ZA") === "+27813547654") {
return (
"We're looking for the mother's information. Please avoid entering " +
"the examples in the messages. Enter the mother's details."
);
}
},
next: "state_check_subscription"
});
});
self.add("state_check_subscription", function(name, opts) {
var msisdn = utils.normalize_msisdn(
_.get(self.im.user.answers, "state_enter_msisdn", self.im.user.addr), "ZA");
return self.rapidpro.get_contact({urn: "whatsapp:" + _.trim(msisdn, "+")})
.then(function(contact) {
self.im.user.set_answer("contact", contact);
// Set the language if we have it
if(_.isString(_.get(contact, "language"))) {
return self.im.user.set_lang(contact.language);
}
}).then(function() {
// Delegate to the correct state depending on contact fields
var contact = self.im.user.get_answer("contact");
if(_.inRange(_.get(contact, "fields.prebirth_messaging"), 1, 7)) {
if(_.toUpper(_.get(contact, "fields.pmtct_messaging")) === "TRUE") {
return self.states.create("state_optout");
} else {
return self.states.create("state_no_pmtct_subscription");
}
} else {
return self.states.create("state_no_subscription");
}
}).catch(function(e) {
// Go to error state after 3 failed HTTP requests
opts.http_error_count = _.get(opts, "http_error_count", 0) + 1;
if(opts.http_error_count === 3) {
self.im.log.error(e.message);
return self.states.create("__error__");
}
return self.states.create(name, opts);
});
});
self.states.add("state_optout", function(name) {
return new ChoiceState(name, {
question: $("The mother is currently receiving messages about keeping her baby " +
"HIV-negative. Does she want to stop getting these messages?"),
error:
$("Sorry, please reply with the number next to your answer. " +
"Does she want to stop getting these messages?"),
choices: [
new Choice("yes", $("Yes")),
new Choice("no", $("No"))
],
next: function(choice) {
if(choice.value === "yes") {
return "state_optout_reason";
} else {
return "state_no_optout";
}
}
});
});
self.states.add("state_no_optout", function(name) {
return new EndState(name, {
next: "state_start",
text:
$("Thanks! MomConnect will continue to send HER helpful messages and process your " +
"personal info.")
});
});
self.add("state_optout_reason", function(name) {
var question = $("Please tell us why she no longer wants to get msgs:");
return new PaginatedChoiceState(name, {
question: question,
error: question,
accept_labels: true,
options_per_page: null,
characters_per_page: 160,
choices: [
new Choice("not_hiv_pos", $("She's not HIV+")),
new Choice("miscarriage", $("Miscarriage")),
new Choice("stillbirth", $("Baby was stillborn")),
new Choice("babyloss", $("Baby passed away")),
new Choice("not_useful", $("Msgs aren't helpful")),
new Choice("other", $("Other")),
new Choice("unknown", $("I prefer not to say"))
],
next: function(choice) {
if(_.includes(["miscarriage", "stillbirth", "babyloss"], choice.value)) {
return "state_loss_optout";
} else {
return "state_trigger_rapidpro_flow";
}
}
});
});
self.states.add("state_opted_out", function(name) {
return new EndState(name, {
next: "state_start",
text:
$("Thank you. She will no longer receive messages from us about HIV. She will " +
"get her regular MomConnect messages. For any medical concerns, please visit a clinic.")
});
});
self.add("state_loss_optout", function(name) {
return new ChoiceState(name, {
question: $("We're sorry for your loss. Would she like to receive a small set of " +
"MomConnect messages that could help you during this difficult time?"),
error:
$("Sorry, please reply with the number next to your answer. " +
"Would she like to receive a small set of MomConnect messages?"),
choices: [
new Choice("yes", $("Yes")),
new Choice("no", $("No"))
],
next: "state_trigger_rapidpro_flow"
});
});
self.states.add("state_loss_subscription", function(name) {
return new EndState(name, {
next: "state_start",
text:
$("Thank you. She will receive messages of support from MomConnect in the coming weeks.")
});
});
self.add("state_no_pmtct_subscription", function(name) {
var contact = self.im.user.get_answer("contact");
return new ChoiceState(name, {
question: $("Would the mother like to receive messages about keeping her baby " +
"HIV-negative? The messages will use words like HIV, medicine and ARVs."),
error: $(
"Sorry, please reply with the number next to your answer. " +
"Would the mother like to get messages about keeping her baby " +
"HIV-negative?"
),
choices: [
new Choice("yes", $("Yes")),
new Choice("no", $("No"))
],
next: function(choice) {
if(choice.value === "yes") {
if(_.isString(_.get(contact, "fields.dob"))){
return "state_trigger_rapidpro_flow";
}
else{
return "state_dob_year";
}
}
else {
return "state_no_registration";
}
}
});
});
self.add("state_dob_year", function(name) {
return new FreeText(name, {
question: $(
"In what year was she born? Please enter the year as 4 digits in " +
"the format YYYY."
),
check: function(content) {
var match = content.match(/^(\d{4})$/);
var today = new moment(self.im.config.testing_today), dob;
if(
!match ||
!(dob = new moment(match[1], "YYYY")) ||
!dob.isBetween(
today.clone().add(-130, "years"),
today.clone().add(-5, "years")
)
){
return $(
"Sorry, we don't understand. Please try again by entering the year " +
"she was born as 4 digits in the format YYYY, e.g. 1910."
);
}
},
next: "state_dob_month",
});
});
self.add("state_dob_month", function(name) {
return new ChoiceState(name, {
question: $("What month was she born? Please enter the number that matches the answer."),
error: $(
"Sorry we don't understand. Please enter the no. next to the mom's answer."
),
choices: [
new Choice("01", $("Jan")),
new Choice("02", $("Feb")),
new Choice("03", $("Mar")),
new Choice("04", $("Apr")),
new Choice("05", $("May")),
new Choice("06", $("Jun")),
new Choice("07", $("Jul")),
new Choice("08", $("Aug")),
new Choice("09", $("Sep")),
new Choice("10", $("Oct")),
new Choice("11", $("Nov")),
new Choice("12", $("Dec")),
],
next: "state_dob_day"
});
});
self.add("state_dob_day", function(name) {
return new FreeText(name, {
question: $(
"On what day was she born? Please enter the day as a number, e.g. 12."
),
check: function(content) {
var match = content.match(/^(\d+)$/), dob;
if(
!match ||
!(dob = new moment(
self.im.user.answers.state_dob_year +
self.im.user.answers.state_dob_month +
match[1],
"YYYYMMDD")
) ||
!dob.isValid()
){
return $(
"Sorry, we don't understand. Please try again by entering the day " +
"she was born as a number, e.g. 12."
);
}
},
next: "state_trigger_rapidpro_flow"
});
});
self.states.add("state_no_registration", function(name) {
return new EndState(name, {
next: "state_start",
text: "Thank you for using MomConnect. Have a lovely day."
});
});
self.states.add("state_no_subscription", function(name) {
return new EndState(name, {
next: "state_start",
text: $(
"Welcome to the Department of Health's MomConnect. To get msgs " +
"about keeping your baby HIV-negative, register to MomConnect by " +
"dialing *134*550*2# at the clinic."
)
});
});
self.add("state_trigger_rapidpro_flow", function(name, opts) {
var dob;
var swt = 1;
var contact = self.im.user.get_answer("contact");
var msisdn = utils.normalize_msisdn(self.im.user.addr, "ZA");
var babyloss_subscription = self.im.user.get_answer("state_loss_optout") === "yes" ? "TRUE" : "FALSE";
if(_.isString(_.get(contact, "fields.dob"))) {
dob = moment.utc(contact.fields.dob).format();
}
else {
dob = new moment.utc(
self.im.user.answers.state_dob_year +
self.im.user.answers.state_dob_month +
self.im.user.answers.state_dob_day,
"YYYYMMDD"
).format();
}
if(_.isString(_.get(contact, "fields.preferred_channel"))) {
swt = _.toUpper(contact.fields.preferred_channel) === "WHATSAPP" ? 7 : 1;
}
if (self.im.user.get_answer("state_enter_msisdn")) {
msisdn = utils.normalize_msisdn(self.im.user.get_answer("state_enter_msisdn"), "ZA");
}
return self.rapidpro.start_flow(self.im.config.flow_uuid, null, "whatsapp:" + _.trim(msisdn, "+"), {
dob: dob,
optout_reason: self.im.user.get_answer("state_optout_reason"),
babyloss_subscription: babyloss_subscription,
optout:
self.im.user.get_answer("state_optout") === "yes" ? "TRUE" : "FALSE",
source: "PMTCT USSD",
registered_by: utils.normalize_msisdn(self.im.user.addr, "ZA"),
mha: 1,
swt: swt,
}).then(function() {
if ((self.im.user.get_answer("state_optout") === "yes") && babyloss_subscription === "FALSE"){
return self.states.create("state_opted_out");
}else if (self.im.user.get_answer("state_loss_optout") === "yes"){
return self.states.create("state_loss_subscription");
}
else{
return self.states.create("state_end_registration");
}
}).catch(function(e) {
// Go to error state after 3 failed HTTP requests
opts.http_error_count = _.get(opts, "http_error_count", 0) + 1;
if(opts.http_error_count === 3) {
self.im.log.error(e.message);
return self.states.create("__error__", {return_state: name});
}
return self.states.create(name, opts);
});
});
self.states.add("state_end_registration", function(name) {
return new EndState(name, {
next: "state_start",
text: $(
"Thank you. The mother will receive messages about keeping her baby " +
"HIV-negative. Have a lovely day."
)
});
});
self.states.creators.__error__ = function(name, opts) {
var return_state = _.get(opts, "return_state", "state_start");
return new EndState(name, {
next: return_state,
text: $("Sorry, something went wrong. We have been notified. Please try again later")
});
};
});
return {
GoNDOH: GoNDOH
};
}();
/* globals api */
go.init = function() {
var vumigo = require('vumigo_v02');
var InteractionMachine = vumigo.InteractionMachine;
var GoNDOH = go.app.GoNDOH;
return {
im: new InteractionMachine(api, new GoNDOH())
};
}();