-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSubscriptionService.js
34 lines (32 loc) · 959 Bytes
/
SubscriptionService.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
class SubscriptionService {
/**
*
*/
subscriptions = [];
cron;
/**
* Push service constructor.
* @param {[*]} subscriptions A list of all the subscriptions.
* @param {*} cron Cron instance for scheduling notifications.
*/
constructor(subscriptions, cron) {
this.subscriptions = subscriptions;
this.cron = cron;
}
startSubscriptionService = async () => {
}
/**
* Adds a subscription to the subscriptions store
* @param {*} subscription Subscriber
*/
addSubscription = (subscription) => {
this.subscriptions.push(subscription);
}
/**
* Returns a subscription
* @param {*} subscriptionKey The key associated with the subscription
* @returns [] Subsricption
*/
getSubscription = subscriptionKey => this.subscriptions.find(subscription => subscription['key'] === subscriptionKey);
}
module.exports = SubscriptionService;