Skip to content

Commit ed8c918

Browse files
authored
Add status callback options to send calls
1 parent f9e286a commit ed8c918

File tree

7 files changed

+167
-8
lines changed

7 files changed

+167
-8
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [5.1.0] - 2020-04-07
2+
3+
### Changed
4+
5+
- Added delivery status callback options to sendEmail and sendSms calls
6+
17
## [5.0.3] - 2019-12-19
28

39
### Changed

CONTRIBUTING.md

-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ export API_SENDING_KEY="API_whitelist_key for sending a SMS to a receiving numbe
3131
export INBOUND_SMS_QUERY_KEY="API_test_key to get received text messages - leave blank for local development as cannot test locally"
3232
```
3333

34-
3534
To run the integration tests:
3635

3736
`make integration-test`

README.md

+16
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,14 @@ If you omit this argument your default sms sender will be set for the notificati
150150

151151
Example usage with optional reference -
152152

153+
##### `statusCallbackUrl`
154+
155+
Optional. Specifies the identifier of the HTTPS URL for delivery status updates to be sent to.
156+
157+
##### `statusCallbackBearerToken`
158+
159+
Optional. Specifies the identifier of the Bearer token that will be used for authentication to the delivery status callback URL. This must be provided if the status callback URL is provided.
160+
153161
</details>
154162

155163
### Email
@@ -257,6 +265,14 @@ personalisation = {
257265
Optional. Specifies the identifier of the email reply-to address to set for the notification. The identifiers are found in your service Settings, when you 'Manage' your 'Email reply to addresses'.
258266
If you omit this argument your default email reply-to address will be set for the notification.
259267

268+
##### `statusCallbackUrl`
269+
270+
Optional. Specifies the identifier of the HTTPS URL for delivery status updates to be sent to.
271+
272+
##### `statusCallbackBearerToken`
273+
274+
Optional. Specifies the identifier of the Bearer token that will be used for authentication to the delivery status callback URL. This must be provided if the status callback URL is provided.
275+
260276
</details>
261277

262278
### Send a document by email

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@govau-platforms/notify-client",
33
"author": "Digital Transformation Agency",
4-
"version": "5.0.3",
4+
"version": "5.1.0",
55
"homepage": "https://github.com/govau/notify-client-node",
66
"description": "Notify.gov.au Node.js client ",
77
"license": "MIT",

spec/client.ts

+54
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,33 @@ describe("notification api", () => {
8888
});
8989
});
9090

91+
it("should send an email with status callback url and bearer token", () => {
92+
let email = "[email protected]",
93+
templateId = "123",
94+
options = {
95+
personalisation: { foo: "bar" },
96+
statusCallbackUrl: "https://localhost/callback",
97+
statusCallbackBearerToken: "1234567890"
98+
},
99+
data = {
100+
template_id: templateId,
101+
email_address: email,
102+
personalisation: options.personalisation,
103+
status_callback_url: options.statusCallbackUrl,
104+
status_callback_bearer_token: options.statusCallbackBearerToken
105+
};
106+
107+
notifyAuthNock
108+
.post("/v2/notifications/email", data)
109+
.reply(200, { hooray: "bkbbk" });
110+
111+
return notifyClient
112+
.sendEmail(templateId, email, options)
113+
.then(response => {
114+
expect(response.statusCode).to.equal(200);
115+
});
116+
});
117+
91118
it("should reject options dicts with unknown options", () => {
92119
let email = "[email protected]",
93120
templateId = "123",
@@ -154,6 +181,33 @@ describe("notification api", () => {
154181
});
155182
});
156183

184+
it("should send an sms with status callback url and bearer token", () => {
185+
let phoneNo = "07525755555",
186+
templateId = "123",
187+
options = {
188+
personalisation: { foo: "bar" },
189+
statusCallbackUrl: "https://localhost/callback",
190+
statusCallbackBearerToken: "1234567890"
191+
},
192+
data = {
193+
template_id: templateId,
194+
phone_number: phoneNo,
195+
personalisation: options.personalisation,
196+
status_callback_url: options.statusCallbackUrl,
197+
status_callback_bearer_token: options.statusCallbackBearerToken
198+
};
199+
200+
notifyAuthNock
201+
.post("/v2/notifications/sms", data)
202+
.reply(200, { hooray: "bkbbk" });
203+
204+
return notifyClient
205+
.sendSms(templateId, phoneNo, options)
206+
.then(function(response) {
207+
expect(response.statusCode).to.equal(200);
208+
});
209+
});
210+
157211
it("should reject options dicts with unknown options", () => {
158212
let phoneNumber = "07123456789",
159213
templateId = "123",

spec/integration/test.ts

+50-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ describer("notification api with a live service", function() {
2424
let smsNotificationId;
2525
const personalisation = { name: "Foo" };
2626
const clientRef = "client-ref";
27+
const statusCallbackUrl = "https://localhost/callback";
28+
const statusCallbackBearerToken = "1234567890";
2729
const email = process.env.FUNCTIONAL_TEST_EMAIL;
2830
const phoneNumber = process.env.FUNCTIONAL_TEST_NUMBER;
2931
const smsTemplateId = process.env.SMS_TEMPLATE_ID;
@@ -98,9 +100,38 @@ describer("notification api with a live service", function() {
98100
});
99101
});
100102

103+
it("send email notification with status callback URL and bearer token", () => {
104+
const postEmailNotificationResponseJson = require("./schemas/v2/POST_notification_email_response.json");
105+
const options = {
106+
personalisation: personalisation,
107+
reference: clientRef,
108+
statusCallbackUrl: statusCallbackUrl,
109+
statusCallbackBearerToken: statusCallbackBearerToken
110+
};
111+
112+
return notifyClient
113+
.sendEmail(emailTemplateId, email, options)
114+
.then(response => {
115+
response.statusCode.should.equal(201);
116+
expect(response.body).to.be.jsonSchema(
117+
postEmailNotificationResponseJson
118+
);
119+
response.body.content.body.should.equal(
120+
"Hello Foo\n\nFunctional test help make our world a better place\n"
121+
);
122+
response.body.content.subject.should.equal("NodeJS integration test");
123+
response.body.reference.should.equal(clientRef);
124+
emailNotificationId = response.body.id;
125+
});
126+
});
127+
101128
it("send sms notification", () => {
102129
var postSmsNotificationResponseJson = require("./schemas/v2/POST_notification_sms_response.json"),
103-
options = { personalisation: personalisation };
130+
options = {
131+
personalisation: personalisation,
132+
statusCallbackUrl: statusCallbackUrl,
133+
statusCallbackBearerToken: statusCallbackBearerToken
134+
};
104135

105136
return notifyClient
106137
.sendSms(smsTemplateId, phoneNumber, options)
@@ -139,6 +170,24 @@ describer("notification api with a live service", function() {
139170
});
140171
});
141172

173+
it("send sms notification with status callback URL and bearer token", () => {
174+
var postSmsNotificationResponseJson = require("./schemas/v2/POST_notification_sms_response.json"),
175+
options = { personalisation: personalisation };
176+
177+
return notifyClient
178+
.sendSms(smsTemplateId, phoneNumber, options)
179+
.then(response => {
180+
response.statusCode.should.equal(201);
181+
expect(response.body).to.be.jsonSchema(
182+
postSmsNotificationResponseJson
183+
);
184+
response.body.content.body.should.equal(
185+
"Hello Foo\n\nFunctional Tests make our world a better place"
186+
);
187+
smsNotificationId = response.body.id;
188+
});
189+
});
190+
142191
const getNotificationJson = require("./schemas/v2/GET_notification_response.json");
143192
const getNotificationsJson = require("./schemas/v2/GET_notifications_response.json");
144193

src/client.ts

+40-5
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,25 @@ export default class Client {
1515
): any {
1616
options = options || {};
1717
const err = checkOptionsKeys(
18-
["personalisation", "reference", "emailReplyToId"],
18+
[
19+
"personalisation",
20+
"reference",
21+
"emailReplyToId",
22+
"statusCallbackUrl",
23+
"statusCallbackBearerToken"
24+
],
1925
options
2026
);
2127
if (err) {
2228
return Promise.reject(err);
2329
}
30+
2431
const personalisation = options.personalisation || undefined;
2532
const reference = options.reference || undefined;
2633
const emailReplyToId = options.emailReplyToId || undefined;
34+
const statusCallbackUrl = options.statusCallbackUrl || undefined;
35+
const statusCallbackBearerToken =
36+
options.statusCallbackBearerToken || undefined;
2737

2838
return this.httpClient.post(
2939
"/v2/notifications/email",
@@ -33,15 +43,23 @@ export default class Client {
3343
emailAddress,
3444
personalisation,
3545
reference,
36-
emailReplyToId
46+
emailReplyToId,
47+
statusCallbackUrl,
48+
statusCallbackBearerToken
3749
)
3850
);
3951
}
4052

4153
public sendSms(templateId: string, phoneNumber: string, options?: any): any {
4254
options = options || {};
4355
const err = checkOptionsKeys(
44-
["personalisation", "reference", "smsSenderId"],
56+
[
57+
"personalisation",
58+
"reference",
59+
"smsSenderId",
60+
"statusCallbackUrl",
61+
"statusCallbackBearerToken"
62+
],
4563
options
4664
);
4765
if (err) {
@@ -51,6 +69,9 @@ export default class Client {
5169
const personalisation = options.personalisation || undefined;
5270
const reference = options.reference || undefined;
5371
const smsSenderId = options.smsSenderId || undefined;
72+
const statusCallbackUrl = options.statusCallbackUrl || undefined;
73+
const statusCallbackBearerToken =
74+
options.statusCallbackBearerToken || undefined;
5475

5576
return this.httpClient.post(
5677
"/v2/notifications/sms",
@@ -60,7 +81,9 @@ export default class Client {
6081
phoneNumber,
6182
personalisation,
6283
reference,
63-
smsSenderId
84+
smsSenderId,
85+
statusCallbackUrl,
86+
statusCallbackBearerToken
6487
)
6588
);
6689
}
@@ -142,7 +165,9 @@ const createPayload = (
142165
to: string,
143166
personalisation?: object,
144167
reference?: string,
145-
replyToId?: string
168+
replyToId?: string,
169+
statusCallbackUrl?: string,
170+
statusCallbackBearerToken?: string
146171
) => {
147172
const payload: {
148173
template_id: string;
@@ -152,6 +177,8 @@ const createPayload = (
152177
reference?: string;
153178
email_reply_to_id?: string;
154179
sms_sender_id?: string;
180+
status_callback_url?: string;
181+
status_callback_bearer_token?: string;
155182
} = { template_id: templateId };
156183

157184
if (type == "email") {
@@ -174,6 +201,14 @@ const createPayload = (
174201
payload.sms_sender_id = replyToId;
175202
}
176203

204+
if (statusCallbackUrl) {
205+
payload.status_callback_url = statusCallbackUrl;
206+
}
207+
208+
if (statusCallbackBearerToken) {
209+
payload.status_callback_bearer_token = statusCallbackBearerToken;
210+
}
211+
177212
return payload;
178213
};
179214

0 commit comments

Comments
 (0)