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

43 lines
1 KiB
TypeScript
Raw Normal View History

2017-11-20 20:40:09 +02:00
import $ from 'cafy';
2018-03-29 14:32:18 +03:00
import Subscription from '../../../../models/sw-subscription';
2018-06-18 03:54:53 +03:00
import { ILocalUser } from '../../../../models/user';
2017-11-20 20:40:09 +02:00
/**
* subscribe service worker
*/
2018-06-18 03:54:53 +03:00
module.exports = async (params: any, user: ILocalUser) => 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();
});