Sharkey/src/server/api/endpoints/sw/register.ts

45 lines
1,013 B
TypeScript
Raw Normal View History

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