-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmethods.js
34 lines (31 loc) · 1.07 KB
/
methods.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
import {Meteor} from "meteor/meteor";
import {currentCredentials} from "./credentials";
import {log} from 'meteor/xerdi:logging';
Meteor.methods({
async 'Notifications.publicKey'() {
const cur = await currentCredentials;
return cur.publicKey;
},
'Notifications.authorizeSubscription'(subscription) {
if (!Meteor.userId()) {
log.error('Visitor tried to subscribe push notifications');
throw new Meteor.Error(400, 'Must be logged in');
}
return Meteor.users.update(Meteor.userId(), {
$addToSet: {
'services.notifications.subscriptions': subscription
}
});
},
'Notifications.revokeSubscription'(subscription) {
if (!Meteor.userId()) {
log.error('Visitor tried to subscribe push notifications');
throw new Meteor.Error(400, 'Must be logged in');
}
return Meteor.users.update(Meteor.userId(), {
$pull: {
'services.notifications.subscriptions': subscription
}
});
}
});