-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo-app-ussd_chw_rapidpro.js
878 lines (809 loc) · 36.1 KB
/
go-app-ussd_chw_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
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
var go = {};
go;
go.Hub = function() {
var vumigo = require('vumigo_v02');
var events = vumigo.events;
var Eventable = events.Eventable;
var url = require("url");
var Hub = 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.send_whatsapp_template_message = function(msisdn, template_name, media) {
var api_url = url.resolve(self.base_url, "/api/v1/sendwhatsapptemplate");
var data = {
"msisdn": msisdn,
"template_name": template_name,
"save_status_record": true
};
if(media) {
data.media = media;
}
return self.json_api.post(api_url, {data: data})
.then(function(response){
return response.data;
});
};
self.get_whatsapp_failure_count = function(msisdn) {
var api_url = url.resolve(self.base_url, "/api/v2/deliveryfailure/" + msisdn + "/");
return self.json_api.get(api_url)
.then(
function(response){
return response.data.number_of_failures;
}
);
};
self.get_whatsapp_template_status = function(status_id) {
var api_url = url.resolve(self.base_url, "/api/v2/whatsapptemplatesendstatus/" + status_id + "/");
return self.json_api.get(api_url)
.then(
function(response){
return response.data;
}
);
};
});
return Hub;
}();
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 ChoiceState = vumigo.states.ChoiceState;
var PaginatedChoiceState = vumigo.states.PaginatedChoiceState;
var PaginatedState = vumigo.states.PaginatedState;
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-CHW"]}}),
self.im.config.services.rapidpro.base_url,
self.im.config.services.rapidpro.token
);
self.hub = new go.Hub(
new JsonApi(self.im, {
headers: {
'User-Agent': ["Jsbox/NDoH-Clinic"]
}
}),
self.im.config.services.hub.base_url,
self.im.config.services.hub.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 to the Department of Health's MomConnect. We send free msgs " +
"to help pregnant moms.",
"",
"Is {{msisdn}} the no. signing up?",
].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 mother who would like to sign up to " +
"receive messages from MomConnect, e.g. 0813547654."),
check: function(content) {
if(!utils.is_valid_msisdn(content, "ZA")) {
return $(
"Sorry, we don't understand that cell number. Please enter 10 digit " +
"cell number that the mother would like to get MomConnect messages " +
"on, 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);
}).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)) {
return self.states.create("state_active_subscription");
} else if(_.toUpper(_.get(contact, "fields.opted_out")) === "TRUE"){
return self.states.create("state_opted_out");
} else {
return self.states.create("state_pregnant");
}
}).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.add("state_active_subscription", function(name) {
var msisdn = utils.readable_msisdn(
_.get(self.im.user.answers, "state_enter_msisdn", self.im.user.addr), "27");
return new MenuState(name, {
question: $(
"The cell number {{msisdn}} is already signed up to MomConnect. What would " +
"you like to do?"
).context({msisdn: msisdn}),
error: $(
"Sorry we don't understand. Please enter the number next to the mother's " +
"answer."
),
choices: [
new Choice("state_enter_msisdn", $("Use a different number")),
new Choice("state_exit", $("Exit"))
]
});
});
self.states.add("state_exit", function(name) {
return new EndState(name, {
next: "state_start",
text: $(
"Thank you for using MomConnect. Dial *134*550*2# at any time to sign up. " +
"Have a lovely day!"
)
});
});
self.add("state_opted_out", function(name) {
return new MenuState(name, {
question: $(
"This number previously asked us to stop sending MomConnect messages. Is the " +
"mother sure she wants to get messages from us again?"
),
error: $(
"Sorry we don't understand. Please enter the number next to the mother's " +
"answer."
),
choices: [
new Choice("state_info_consent", $("Yes")),
new Choice("state_no_opt_in", $("No"))
]
});
});
self.states.add("state_no_opt_in", function(name) {
return new EndState(name, {
next: "state_start",
text: $(
"This number has chosen not to receive MomConnect messages. If she changes " +
"her mind, she can dial *134*550*2# to register any time. Have a lovely day!"
)
});
});
self.add("state_pregnant", function(name) {
return new MenuState(name, {
question: $(
"MomConnect sends support messages to help pregnant moms and babies. " +
"Is the mother or does she suspect that she is pregnant?"
),
error: $(
"Sorry, please reply with the number next to your answer. " +
"Is the mother or does she suspect that she is pregnant?"
),
accept_labels: true,
choices: [
new Choice("state_info_consent", $("Yes")),
new Choice("state_pregnant_only", $("No"))
]
});
});
self.states.add("state_pregnant_only", function(name) {
return new EndState(name, {
next: "state_start",
text: $(
"We're sorry but this service is only for pregnant mothers. If you have other health concerns " +
"please visit your nearest clinic."
)
});
});
self.add("state_info_consent", function(name) {
// Skip this state if we already have consent
var consent = _.get(self.im.user.get_answer("contact"), "fields.info_consent");
if(consent === "TRUE") {
return self.states.create("state_message_consent");
}
return new MenuState(name, {
question: $(
"We need to process the mom's personal info to send her relevant messages about " +
"her pregnancy or baby. Does she agree?"
),
error: $("Sorry, please reply with the number next to your answer. Does she agree?"),
accept_labels: true,
choices: [
new Choice("state_message_consent", $("Yes")),
new Choice("state_info_consent_denied", $("No")),
new Choice("state_question_menu", $("Needs more info to decide")),
],
});
});
self.add("state_info_consent_denied", function(name) {
return new MenuState(name, {
question: $("Unfortunately, without agreeing she can't sign up to MomConnect. " +
"Does she agree to MomConnect processing her personal info?"),
error: $(
"Sorry, please reply with the number next to your answer. Does she agree " +
"to sign up to MomConnect?"
),
accept_labels: true,
choices: [
new Choice("state_info_consent", $("Yes")),
new Choice("state_no_consent_exit", $("No")),
]
});
});
self.add("state_message_consent", function(name) {
// Skip this state if we already have consent
var consent = _.get(self.im.user.get_answer("contact"), "fields.messaging_consent");
if(consent === "TRUE") {
return self.states.create("state_research_consent");
}
return new MenuState(name, {
question: $(
"Does the mother agree to receive messages from MomConnect? This may include " +
"receiving messages on public holidays and weekends."
),
error: $(
"Sorry, please reply with the number next to your answer. Does she agree to receiving messages " +
"from MomConnect?"
),
accept_labels: true,
choices: [
new Choice("state_research_consent", $("Yes")),
new Choice("state_message_consent_denied", $("No")),
]
});
});
self.add("state_message_consent_denied", function(name) {
return new MenuState(name, {
question: $("Unfortunately, without agreeing she can't sign up to MomConnect. " +
"Does she agree to get messages from MomConnect?"),
error: $(
"Sorry, please reply with the number next to your answer. Does she agree " +
"to get messages from MomConnect?"
),
accept_labels: true,
choices: [
new Choice("state_message_consent", $("Yes")),
new Choice("state_no_consent_exit", $("No")),
]
});
});
self.states.add("state_no_consent_exit", function(name) {
return new EndState(name, {
next: "state_start",
text: $(
"Thank you for considering MomConnect. We respect her decision. Have a lovely day."
)
});
});
self.add("state_research_consent", function(name) {
// Skip this state if we already have consent
var consent = _.get(self.im.user.get_answer("contact"), "fields.research_consent");
if(consent === "TRUE") {
return self.states.create("state_id_type");
}
return new ChoiceState(name, {
// TODO: Proper copy
question: $(
"We may occasionally call or send msgs for historical/statistical/research reasons. " +
"We'll keep her info safe. Does she agree?"
),
error: $(
"Sorry, please reply with the number next to your answer. We may call or send " +
"msgs for research reasons. Does she agree?"
),
accept_labels: true,
choices: [
new Choice("yes", $("Yes")),
new Choice("no", $("No, only send MC msgs")),
],
next: "state_id_type"
});
});
self.add("state_id_type", function(name) {
return new MenuState(name, {
question: $("What type of identification does the mother have?"),
error: $(
"Sorry we don't understand. Please enter the number next to the mother's " +
"answer."
),
choices: [
new Choice("state_sa_id_no", $("SA ID")),
new Choice("state_passport_country", $("Passport")),
new Choice("state_dob_year", $("None"))
]
});
});
self.add("state_sa_id_no", function(name) {
return new FreeText(name, {
question: $(
"Please reply with the mother's ID number as she finds it in her Identity " +
"Document."
),
check: function(content) {
var match = content.match(/^(\d{6})(\d{4})(0|1)8\d$/);
var today = new moment(self.im.config.testing_today).startOf("day"), dob;
var validLuhn = function(content) {
return content.split("").reverse().reduce(function(sum, digit, i){
return sum + _.parseInt(i % 2 ? [0,2,4,6,8,1,3,5,7,9][digit] : digit);
}, 0) % 10 == 0;
};
if(
!match ||
!validLuhn(content) ||
!(dob = new moment(match[1], "YYMMDD")) ||
!dob.isValid() ||
!dob.isBetween(
today.clone().add(-130, "years"),
today.clone().add(-5, "years")
) ||
_.parseInt(match[2]) >= 5000
) {
return $(
"Sorry, we don't understand. Please try again by entering the " +
"mother's 13 digit South African ID number."
);
}
},
next: "state_send_welcome_template"
});
});
self.add("state_passport_country", function(name) {
return new ChoiceState(name, {
question: $(
"What is her passport's country of origin? Enter the number matching her " +
"answer e.g. 1."
),
error: $(
"Sorry we don't understand. Please enter the number next to the mother's " +
"answer."
),
choices: [
new Choice("zw", $("Zimbabwe")),
new Choice("mz", $("Mozambique")),
new Choice("mw", $("Malawi")),
new Choice("ng", $("Nigeria")),
new Choice("cd", $("DRC")),
new Choice("so", $("Somalia")),
new Choice("other", $("Other"))
],
next: "state_passport_no"
});
});
self.add("state_passport_no", function(name) {
return new FreeText(name, {
question: $(
"Please enter the mother's Passport number as it appears in her passport."
),
check: function(content) {
if(!content.match(/^\w+$/)){
return $(
"Sorry, we don't understand. Please try again by entering the " +
"mother's Passport number as it appears in her passport."
);
}
},
next: "state_send_welcome_template"
});
});
self.add("state_dob_year", function(name) {
return new FreeText(name, {
question: $(
"What year was the mother born? Please reply with 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 " +
"the mother 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 the mother born?"),
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 the mother 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 " +
"the mother was born as a number, e.g. 12."
);
}
},
next: "state_send_welcome_template"
});
});
self.add("state_send_welcome_template", function(name, opts) {
var msisdn = utils.normalize_msisdn(
_.get(self.im.user.answers, "state_enter_msisdn", self.im.user.addr), "ZA");
var template_name = self.im.config.welcome_template;
return self.hub
.send_whatsapp_template_message(msisdn, template_name)
.then(function(data) {
self.im.user.set_answer("preferred_channel", data.preferred_channel);
self.im.user.set_answer("status_id", data.status_id);
if (data.preferred_channel == "SMS") {
return self.rapidpro.get_global_flag("sms_registrations_enabled")
.then(function(sms_registration_enabled) {
if (sms_registration_enabled) {
return self.states.create("state_trigger_rapidpro_flow");
}
else{
return self.states.create("state_sms_registration_not_available");
}
});
}
return self.states.create("state_trigger_rapidpro_flow");
}).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_sms_registration_not_available", function(name) {
return new EndState(name, {
next: "state_start",
text: $([
"It seems this number is not on WhatsApp and we don't offer SMS at this moment.",
"",
"Please register the new number on WhatsApp for the MomConnect Service."
].join("\n"))
});
});
self.add("state_trigger_rapidpro_flow", function(name, opts) {
var msisdn = utils.normalize_msisdn(
_.get(self.im.user.answers, "state_enter_msisdn", self.im.user.addr), "ZA");
var data = {
research_consent:
self.im.user.answers.state_research_consent === "no" ? "FALSE" : "TRUE",
registered_by: utils.normalize_msisdn(self.im.user.addr, "ZA"),
language: "eng",
timestamp: new moment.utc(self.im.config.testing_today).format(),
source: "CHW USSD",
id_type: {
state_sa_id_no: "sa_id",
state_passport_country: "passport",
state_dob_year: "dob"
}[self.im.user.answers.state_id_type],
sa_id_number: self.im.user.answers.state_sa_id_no,
dob: self.im.user.answers.state_id_type === "state_sa_id_no"
? new moment.utc(
self.im.user.answers.state_sa_id_no.slice(0, 6),
"YYMMDD"
).format()
: 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(),
passport_origin: self.im.user.answers.state_passport_country,
passport_number: self.im.user.answers.state_passport_no,
preferred_channel: self.im.user.answers.preferred_channel,
status_id: self.im.user.answers.status_id
};
return self.rapidpro
.start_flow(self.im.config.flow_uuid, null, "whatsapp:" + _.trim(msisdn, "+"), data)
.then(function() {
return self.states.create("state_registration_complete");
}).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_registration_complete", function(name) {
var msisdn = _.get(self.im.user.answers, "state_enter_msisdn", self.im.user.addr);
msisdn = utils.readable_msisdn(msisdn, "27");
var whatsapp_message = $(
"You're done! {{ msisdn }} will get helpful messages from MomConnect. " +
"To sign up for the full set of messages, visit a clinic. " +
"Have a lovely day!").context({msisdn: msisdn});
return new EndState(name, {
next: "state_start",
text: whatsapp_message
});
});
self.add("state_question_menu", function(name) {
return new PaginatedChoiceState(name, {
question: $("Choose a question you're interested in:"),
options_per_page: null,
characters_per_page: 160,
choices: [
new Choice("state_what_is_mc", $("What is MomConnect?")),
new Choice("state_why_info", $("Why does MomConnect need my info?")),
new Choice("state_what_info", $("What personal info is collected?")),
new Choice("state_who_info", $("Who can see my personal info?")),
new Choice("state_how_long_info", $("How long does MC keep my info?")),
new Choice("state_info_consent", $("Back to main menu")),
],
more: $("Next"),
back: $("Back"),
next: function(choice) {
if(choice !== undefined){
return choice.value;
}
}
});
});
self.add("state_what_is_mc", function(name) {
return new PaginatedState(name, {
text: $("MomConnect is a Health Department programme. It sends helpful messages for you & your baby."),
characters_per_page: 160,
exit: $("Menu"),
more: $("Next"),
next: "state_question_menu"
});
});
self.add("state_why_info", function(name) {
return new PaginatedState(name, {
text: $(
"MomConnect needs your personal info to send you messages that are relevant to your pregnancy or " +
"your baby's age. By knowing where you registered for MomConnect, the Health Department can make " +
"sure that the service is being offered to women at your clinic. Your info assists the Health " +
"Department to improve its services, understand your needs better and provide even better " +
"messaging."),
characters_per_page: 160,
exit: $("Menu"),
more: $("Next"),
next: "state_question_menu"
});
});
self.add("state_what_info", function(name) {
return new PaginatedState(name, {
text: $(
"MomConnect collects your phone and ID numbers, clinic location, and info about how your " +
"pregnancy or baby is progressing."),
characters_per_page: 160,
exit: $("Menu"),
more: $("Next"),
next: "state_question_menu"
});
});
self.add("state_who_info", function(name) {
return new PaginatedState(name, {
text: $(
"MomConnect is owned by the Health Department. Your data is " +
"protected. It's processed by MTN, Cell C, Telkom, Vodacom, Praekelt, " +
"Jembi, HISP & WhatsApp."),
characters_per_page: 160,
exit: $("Menu"),
more: $("Next"),
next: "state_question_menu"
});
});
self.add("state_how_long_info", function(name) {
return new PaginatedState(name, {
text: $("MomConnect holds your info for historical, research & statistical reasons after you opt out."),
characters_per_page: 160,
exit: $("Menu"),
more: $("Next"),
next: "state_question_menu"
});
});
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())
};
}();