misskey/src/server/api/endpoints/sw/register.ts
2018-12-20 04:08:13 +09:00

55 lines
966 B
TypeScript

import $ from 'cafy';
import Subscription from '../../../../models/sw-subscription';
import define from '../../define';
import fetchMeta from '../../../../misc/fetch-meta';
export const meta = {
requireCredential: true,
params: {
endpoint: {
validator: $.str
},
auth: {
validator: $.str
},
publickey: {
validator: $.str
}
}
};
export default define(meta, (ps, user) => new Promise(async (res, rej) => {
// if already subscribed
const exist = await Subscription.findOne({
userId: user._id,
endpoint: ps.endpoint,
auth: ps.auth,
publickey: ps.publickey,
deletedAt: { $exists: false }
});
const instance = await fetchMeta();
if (exist != null) {
return res({
state: 'already-subscribed',
key: instance.swPublicKey
});
}
await Subscription.insert({
userId: user._id,
endpoint: ps.endpoint,
auth: ps.auth,
publickey: ps.publickey
});
res({
state: 'subscribed',
key: instance.swPublicKey
});
}));