@sourceloop/notification-service / Exports
@sourceloop/notification-service¶
Overview¶
Microservice for handling notifications to users through real time notifications, email, or SMS. This microservice uses the loopback4-notifications module to publish/send the notifications.
Installation¶
Usage¶
- Install the notification service
npm i @sourceloop/notification-service - Install the loopback4-notifications module -
npm i loopback4-notifications - Set the environment variables.
- Run the migrations.
- Add the
NotificationServiceComponentto your Loopback4 Application (inapplication.ts). - Set up a Loopback4 Datasource with
dataSourceNameproperty set toNotifDbSourceName. You can see an example datasource here. - Using this service you can send Email, SMS and push notifications. Steps to add any of these are described below. You may choose to add one or more of these depending on your requirement.
-
Email Notifications with Amazon SES -
-
Bind the SES Config to the
SESBindings.Configkey -
- Implement an SES Provider(refer this) or you can import the default SES provider from the loopback4-notifications module and bind it to the
NotificationBindings.EmailProviderkey as described here.
-
-
Email Notifications with Nodemailer -
- Bind the Nodemailer Config to the
NodemailerBindings.Configkey -
- Implement a Nodemailer Provider(refer this) or import the default Nodemailer provider from the loopback4-notifications module and bind it to the
NotificationBindings.EmailProviderkey as described here,
- Bind the Nodemailer Config to the
- SMS Notification with Amazon SNS -
- Bind the SNS Config to the
SNSBindings.Configkey - - Implement an SnsProvider(refer this) or import the default SNS provider from the loopback4-notifications module and bind it to the
NotificationBindings.SMSProviderkey -
- Bind the SNS Config to the
- Push Notifications with Pubnub -
- Bind the Pubnub Config to the
PubnubBindings.Configkey - - Implement a Pubnub Provider(refer this) or import the default Pubnub provider from the loopback4-notifications module and bind it to the
NotificationBindings.PushProviderkey -
- Bind the Pubnub Config to the
-
Push Notifications with Socket.io -
- Bind the Socket.io Config to the
SocketBindings.Configkey -
- Implement a SocketIO Provider(refer this) or import the default Socket.io provider from the loopback4-notifications module and bind it to the
NotificationBindings.PushProviderkey -
- Bind the Socket.io Config to the
- Start the application
npm start
Create Notification Payload Structures¶
Email Notification with SES¶
Email Notification with Nodemailer¶
SMS Notification with SNS¶
Push Notification with Pubunb¶
Push Notification with Socket.io¶
Using with Sequelize¶
This service supports Sequelize as the underlying ORM using @loopback/sequelize extension. And in order to use it, you'll need to do following changes.
1.To use Sequelize in your application, add following to application.ts:
- Use the
SequelizeDataSourcein your audit datasource as the parent class. Refer this for more.
Blacklisting Users¶
Here is a sample implementation of how we can blacklist a user(s).
Create a new provider:
Add the following line to src/application.ts file
Note: One can modify the provider according to the requirements
Drafting Notification -¶
Notification drafting i.e. draft or save notification to send it later.
- For this, there is a POST API to save notification as draft. There is one column in DB in
notificationstableis_draftwhich is used to mark a notification as draft. -
The drafted notification could be
based on a group keyORwithout a group key. In DB group key is saved in a column calledgroup_key.- There is a POST API with end url
/notifications/draftsto save notification(s) as draft. -
The draft notification request body
with group keylooks like:
-
The draft notification request body
without group keylooks like, e.g. the email notification draft:
- There is a POST API with end url
Grouping Notification -¶
Notification grouping i.e. send many notification as one notification by grouping those together using the groupKey OR group_key field from DB table.
- There is an API's to send already saved or already drafted notifications by grouping it using
groupKey. - The API end point looks like
/notifications/groups/{groupKey}. -
The request body of the API to send the grouped notification looks like below. Note that, this
examplerequest body is for email notification.- In above request body one can add additional key to the json object in case they want to concatenate new thing in addition to saved drafts and then request body will look like below:
Sending Drafted Notification Independently -¶
There is one API for sending drafted notification independently using id of already saved or drafted notification.
- This API has
id(of an already drafted notification) in it's end point which looks like/notifications/{draftedNotificationId}/sendand it sends already saved or drafted notification to the receiver(s). -
The request body for this API looks like
User Notification Sleep Time Settings -¶
User or receiver's sleep time settings will allow user to stop from getting notifications for any given time interval. There are API's as mentioned below which are used to manage User notification settings for sleep time
-
There is a POST API with end url
/notifications/user-notification-settingsto add sleep time of user or receiver into DB. The request body for this looks like below: -
There is a PATCH API with end url
/notifications/user-notification-settings/{id}to update sleep time of user or receiver in DB. The request body for this looks like below: -
There is a GET API with end url
/notifications/user-notification-settingsto get all sleep time settings of users or receivers from DB. - There is a GET API with end url
/notifications/user-notification-settings/{id}to get sleep time setting of a user or a receiver from DB by given id. - There is a DELETE API with end url
/notifications/user-notification-settings/{id}to delete sleep time setting of a user or a receiver from DB by given id.
- Note: Sleep time is applicable for send grouped notification API as well as for send drafted notification by id except in case request body contains parameter
isCriticaland it's value is true. The value of fieldisCriticalis saved in DB into the column namedis_critical. - Send notification to users having sleep time in past:
- There is one POST API with end url
/notifications/sendwhich sends notifications to users (with respect a given search criteria in the request body) who where having sleep time when notifications were being sent (in past). For this API the request body looks like: - Based on given search criteria in the request body, this API finds the receiver(s) and the respective notifications which could not be sent due to the receiver's sleep time interval and sends it.
- There is one POST API with end url
- Note: To use this feature in your application, please run the required migrations. Also if one want to make some logical changes they can make changes in the provider.
Asymmetric Token Signing and Verification¶
If you are using asymmetric token signing and verification, you should have auth datasource present in the service and auth redis datasource on the facade level. Example datasource file for auth database is:-
Auth DB datasource :-
Auth Cache Redis Datasource:-
Environment Variables¶
| Name | Required | Default Value | Description |
|---|---|---|---|
NODE_ENV |
Y | Node environment value, i.e. dev, test, prod |
|
LOG_LEVEL |
Y | Log level value, i.e. error, warn, info, verbose, debug |
|
DB_HOST |
Y | Hostname for the database server. | |
DB_PORT |
Y | Port for the database server. | |
DB_USER |
Y | User for the database. | |
DB_PASSWORD |
Y | Password for the database user. | |
DB_DATABASE |
Y | Database to connect to on the database server. | |
DB_SCHEMA |
Y | Database schema used for the data source. In PostgreSQL, this will be public unless a schema is made explicitly for the service. |
|
JWT_SECRET |
Y | Symmetric signing key of the JWT token. | |
JWT_ISSUER |
Y | Issuer of the JWT token. |
Setting up a DataSource¶
Here is a sample Implementation DataSource implementation using environment variables and PostgreSQL as the data source.
Migrations¶
The migrations required for this service are processed during the installation automatically if you set the NOTIF_MIGRATION or SOURCELOOP_MIGRATION env variable. The migrations use db-migrate with db-migrate-pg driver for migrations, so you will have to install these packages to use auto-migration. Please note that if you are using some pre-existing migrations or databases, they may be affected. In such a scenario, it is advised that you copy the migration files in your project root, using the NOTIF_MIGRATION_COPY or SOURCELOOP_MIGRATION_COPY env variables. You can customize or cherry-pick the migrations in the copied files according to your specific requirements and then apply them to the DB.
This migration script supports both MySQL and PostgreSQL databases, controlled by environment variables. By setting MYSQL_MIGRATION to 'true', the script runs migrations using MySQL configuration files; otherwise, it defaults to PostgreSQL. .
Additionally, there is now an option to choose between SQL migration or PostgreSQL migration.
NOTE: For @sourceloop/cli users, this choice can be specified during the scaffolding process by selecting the "type of datasource" option.
API Documentation¶
Common Headers¶
Authorization: Bearer Content-Type: application/json in the response and in request if the API method is NOT GET
Common Request path Parameters¶
{version}: Defines the API Version
Common Responses¶
| Status | Description |
|---|---|
| 200 | Successful Response. Response body varies w.r.t API |
| 401 | Unauthorized: The JWT token is missing or invalid |
| 403 | Forbidden : Not allowed to execute the concerned API |
| 404 | Entity Not Found |
| 400 | Bad Request (Error message varies w.r.t API) |
| 201 | No content: Empty Response |
API's Details¶
Visit the OpenAPI spec docs
-@2x.png)