2017-11-20 19:40:09 +01:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
|
|
|
import $ from 'cafy';
|
2018-03-29 13:32:18 +02:00
|
|
|
import Subscription from '../../../../models/sw-subscription';
|
2017-11-20 19:40:09 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* subscribe service worker
|
|
|
|
*/
|
2018-04-11 10:40:01 +02:00
|
|
|
module.exports = async (params, user, app) => new Promise(async (res, rej) => {
|
2017-11-20 19:40:09 +01:00
|
|
|
// Get 'endpoint' parameter
|
2018-04-27 12:12:15 +02:00
|
|
|
const [endpoint, endpointErr] = $(params.endpoint).string().get();
|
2017-11-20 19:40:09 +01:00
|
|
|
if (endpointErr) return rej('invalid endpoint param');
|
|
|
|
|
|
|
|
// Get 'auth' parameter
|
2018-04-27 12:12:15 +02:00
|
|
|
const [auth, authErr] = $(params.auth).string().get();
|
2017-11-20 19:40:09 +01:00
|
|
|
if (authErr) return rej('invalid auth param');
|
|
|
|
|
|
|
|
// Get 'publickey' parameter
|
2018-04-27 12:12:15 +02:00
|
|
|
const [publickey, publickeyErr] = $(params.publickey).string().get();
|
2017-11-20 19:40:09 +01:00
|
|
|
if (publickeyErr) return rej('invalid publickey param');
|
|
|
|
|
|
|
|
// if already subscribed
|
|
|
|
const exist = await Subscription.findOne({
|
2018-03-29 07:48:47 +02:00
|
|
|
userId: user._id,
|
2017-11-20 19:40:09 +01:00
|
|
|
endpoint: endpoint,
|
|
|
|
auth: auth,
|
|
|
|
publickey: publickey,
|
2018-03-29 07:48:47 +02:00
|
|
|
deletedAt: { $exists: false }
|
2017-11-20 19:40:09 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
if (exist !== null) {
|
|
|
|
return res();
|
|
|
|
}
|
|
|
|
|
|
|
|
await Subscription.insert({
|
2018-03-29 07:48:47 +02:00
|
|
|
userId: user._id,
|
2017-11-20 19:40:09 +01:00
|
|
|
endpoint: endpoint,
|
|
|
|
auth: auth,
|
|
|
|
publickey: publickey
|
|
|
|
});
|
|
|
|
|
|
|
|
res();
|
|
|
|
});
|