barkey/src/server/api/endpoints/sw/register.ts
syuilo 2756f553c6
Improve error handling of API (#4345)
* wip

* wip

* wip

* Update attached_notes.ts

* wip

* Refactor

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* Update call.ts

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* ✌️

* Fix
2019-02-22 11:46:58 +09:00

54 lines
936 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, async (ps, user) => {
// 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 {
state: 'already-subscribed',
key: instance.swPublicKey
};
}
await Subscription.insert({
userId: user._id,
endpoint: ps.endpoint,
auth: ps.auth,
publickey: ps.publickey
});
return {
state: 'subscribed',
key: instance.swPublicKey
};
});