mirror of
https://codeberg.org/yeentown/barkey.git
synced 2026-01-11 23:18:33 +00:00
* 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
54 lines
936 B
TypeScript
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
|
|
};
|
|
});
|