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

54 lines
1.2 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';
2018-09-01 02:13:18 +03:00
import config from '../../../../config';
2017-11-20 20:40:09 +02:00
2018-07-16 22:36:44 +03:00
export const meta = {
requireCredential: true
};
2017-11-20 20:40:09 +02:00
/**
* subscribe service worker
*/
2018-07-05 20:58:29 +03:00
export default 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
});
2018-09-01 02:13:18 +03:00
if (exist != null) {
return res({
state: 'already-subscribed',
key: config.sw.public_key
});
2017-11-20 20:40:09 +02:00
}
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
});
2018-09-01 02:13:18 +03:00
res({
state: 'subscribed',
key: config.sw.public_key
});
2017-11-20 20:40:09 +02:00
});