Skip to content

Commit 7f2d1f0

Browse files
authored
Merge pull request #5 from govau/feat-filter-by-template
Allow filtering of notifications by template
2 parents ed8c918 + 8334d69 commit 7f2d1f0

File tree

6 files changed

+37
-13
lines changed

6 files changed

+37
-13
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [5.2.0] - 2020-04-14
2+
3+
### Changed
4+
5+
- Update API key initialisation parameter to be "apiKey" (not "apiKeyId") as per docs
6+
- Add support for filtering of notifications by template ID
7+
18
## [5.1.0] - 2020-04-07
29

310
### Changed

README.md

+8-3
Original file line numberDiff line numberDiff line change
@@ -470,6 +470,7 @@ Click here to expand for more information.
470470
notifyClient
471471
.getNotifications({
472472
templateType: "email",
473+
templateId: "xxxxx",
473474
status: "delivered",
474475
reference: "client-ref-no",
475476
olderThanId: "xxxxx"
@@ -539,11 +540,15 @@ Click here to expand for more information.
539540

540541
##### `templateType`
541542

542-
If omitted all messages are returned. Otherwise you can filter by:
543+
If omitted, all messages are returned. Otherwise you can filter by:
543544

544545
- `email`
545546
- `sms`
546547

548+
##### `templateId`
549+
550+
If omitted, all messages are returned. Otherwise you can filter by a template ID string.
551+
547552
##### `status`
548553

549554
**email**
@@ -578,7 +583,7 @@ This is the `reference` you gave at the time of sending the notification. This c
578583

579584
##### `olderThanId`
580585

581-
If omitted all messages are returned. Otherwise you can filter to retrieve all notifications older than the given notification `id`.
586+
If omitted, all messages are returned. Otherwise you can filter to retrieve all notifications older than the given notification `id`.
582587

583588
</details>
584589

@@ -779,7 +784,7 @@ Click here to expand for more information.
779784

780785
##### `templateType`
781786

782-
If omitted all messages are returned. Otherwise you can filter by:
787+
If omitted, all messages are returned. Otherwise you can filter by:
783788

784789
- `email`
785790
- `sms`

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.1.0",
4+
"version": "5.2.0",
55
"homepage": "https://github.com/govau/notify-client-node",
66
"description": "Notify.gov.au Node.js client ",
77
"license": "MIT",

spec/client.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ MockDate.set(1234567890000);
1010
const baseUrl = "http://localhost";
1111
const serviceId = "c745a8d8-b48a-4b0d-96e5-dbea0165ebd1";
1212
const secret = "8b3aa916-ec82-434e-b0c5-d5d9b371d6a3";
13-
const apiKeyId = `testkey-${serviceId}-${secret}`;
13+
const apiKey = `testkey-${serviceId}-${secret}`;
1414

1515
function getNotifyClient() {
1616
let baseUrl = "http://localhost";
17-
let notifyClient = new NotifyClient({ baseUrl, apiKeyId });
17+
let notifyClient = new NotifyClient({ baseUrl, apiKey });
1818
return notifyClient;
1919
}
2020

spec/integration/test.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,17 @@ describer("notification api with a live service", function() {
3535

3636
beforeEach(() => {
3737
const baseUrl = process.env.NOTIFY_API_URL;
38-
const apiKeyId = process.env.API_KEY;
38+
const apiKey = process.env.API_KEY;
3939
const inboundSmsKeyId = process.env.INBOUND_SMS_QUERY_KEY;
4040
const whitelistApiKeyId = process.env.API_SENDING_KEY;
41-
notifyClient = new NotifyClient({ baseUrl, apiKeyId });
41+
notifyClient = new NotifyClient({ baseUrl, apiKey });
4242
whitelistNotifyClient = new NotifyClient({
4343
baseUrl,
44-
apiKeyId: whitelistApiKeyId
44+
apiKey: whitelistApiKeyId
4545
});
4646
receivedTextClient = new NotifyClient({
4747
baseUrl,
48-
apiKeyId: inboundSmsKeyId
48+
apiKey: inboundSmsKeyId
4949
});
5050
var definitions_json = require("./schemas/v2/definitions.json");
5151
chai.tv4.addSchema("definitions.json", definitions_json);

src/client.ts

+15-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,11 @@ import { RequestPromise } from "request-promise";
44
export default class Client {
55
httpClient: HttpClient;
66

7-
constructor(params: { apiKeyId: string; baseUrl?: string }) {
8-
this.httpClient = new HttpClient(params);
7+
constructor(params: { apiKey: string; baseUrl?: string }) {
8+
this.httpClient = new HttpClient({
9+
apiKeyId: params.apiKey,
10+
baseUrl: params.baseUrl,
11+
});
912
}
1013

1114
public sendEmail(
@@ -93,6 +96,7 @@ export default class Client {
9396
}
9497

9598
public getNotifications(options?: {
99+
templateId?: string;
96100
templateType?: string;
97101
status?: string;
98102
reference?: string;
@@ -213,6 +217,7 @@ const createPayload = (
213217
};
214218

215219
const buildGetAllNotificationsQuery = (options?: {
220+
templateId?: string;
216221
templateType?: string;
217222
status?: string;
218223
reference?: string;
@@ -223,12 +228,17 @@ const buildGetAllNotificationsQuery = (options?: {
223228
}
224229

225230
const payload: {
231+
template_id?: string;
226232
template_type?: string;
227233
status?: string;
228234
reference?: string;
229235
older_than?: string;
230236
} = {};
231237

238+
if (options.templateId) {
239+
payload.template_id = options.templateId;
240+
}
241+
232242
if (options.templateType) {
233243
payload.template_type = options.templateType;
234244
}
@@ -245,7 +255,9 @@ const buildGetAllNotificationsQuery = (options?: {
245255
payload.older_than = options.olderThanId;
246256
}
247257

248-
return buildQueryStringFromDict(payload);
258+
const queryString = buildQueryStringFromDict(payload);
259+
260+
return queryString;
249261
};
250262

251263
const buildQueryStringFromDict = (dictionary: object) => {

0 commit comments

Comments
 (0)