mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-15 13:47:33 +01:00
208 lines
6.4 KiB
JavaScript
208 lines
6.4 KiB
JavaScript
import { authWithHeaders } from '../../middlewares/auth';
|
|
import { model as Webhook } from '../../models/webhook';
|
|
import { removeFromArray } from '../../libs/collectionManipulators';
|
|
import { NotFound, BadRequest } from '../../libs/errors';
|
|
|
|
let api = {};
|
|
|
|
/**
|
|
* @apiDefine Webhook Webhook
|
|
* Webhooks fire when a particular action is performed, such as updating a task, or sending a message in a group.
|
|
*
|
|
* Your user's configured webhooks are stored as an `Array` on the user object under the `webhooks` property.
|
|
*/
|
|
|
|
/**
|
|
* @apiDefine WebhookNotFound
|
|
* @apiError (404) {NotFound} WebhookNotFound The specified webhook could not be found.
|
|
*/
|
|
|
|
/**
|
|
* @apiDefine WebhookBodyInvalid
|
|
* @apiError (400) {BadRequest} WebhookBodyInvalid A body parameter passed in the request did not pass validation.
|
|
*/
|
|
|
|
/**
|
|
* @api {post} /api/v3/user/webhook Create a new webhook - BETA
|
|
* @apiName AddWebhook
|
|
* @apiGroup Webhook
|
|
*
|
|
* @apiParam (Body) {UUID} [id="Randomly Generated UUID"] The webhook's id
|
|
* @apiParam (Body) {String} url The webhook's URL
|
|
* @apiParam (Body) {String} [label] A label to remind you what this webhook does
|
|
* @apiParam (Body) {Boolean} [enabled=true] If the webhook should be enabled
|
|
* @apiParam (Body) {Sring="taskActivity","groupChatReceived"} [type="taskActivity"] The webhook's type.
|
|
* @apiParam (Body) {Object} [options] The webhook's options. Wil differ depending on type. Required for `groupChatReceived` type. If a webhook supports options, the default values are displayed in the examples below
|
|
* @apiParamExample {json} Task Activity Example
|
|
* {
|
|
* "enabled": true, // default
|
|
* "url": "http://some-webhook-url.com",
|
|
* "label": "My Webhook",
|
|
* "type": "taskActivity", // default
|
|
* "options": {
|
|
* "created": false, // default
|
|
* "updated": false, // default
|
|
* "deleted": false, // default
|
|
* "scored": true // default
|
|
* }
|
|
* }
|
|
* @apiParamExample {json} Group Chat Received Example
|
|
* {
|
|
* "enabled": true,
|
|
* "url": "http://some-webhook-url.com",
|
|
* "label": "My Chat Webhook",
|
|
* "type": "groupChatReceived",
|
|
* "options": {
|
|
* "groupId": "required-uuid-of-group"
|
|
* }
|
|
* }
|
|
* @apiParamExample {json} Minimal Example
|
|
* {
|
|
* "url": "http://some-webhook-url.com"
|
|
* }
|
|
*
|
|
* @apiSuccess {Object} data The created webhook
|
|
* @apiSuccess {UUID} data.id The uuid of the webhook
|
|
* @apiSuccess {String} data.url The url of the webhook
|
|
* @apiSuccess {String} data.label A label for you to keep track of what this webhooks is for
|
|
* @apiSuccess {Boolean} data.enabled Whether the webhook should be sent
|
|
* @apiSuccess {String} data.type The type of the webhook
|
|
* @apiSuccess {Object} data.options The options for the webhook (See examples)
|
|
*
|
|
* @apiUse WebhookBodyInvalid
|
|
*/
|
|
api.addWebhook = {
|
|
method: 'POST',
|
|
middlewares: [authWithHeaders()],
|
|
url: '/user/webhook',
|
|
async handler (req, res) {
|
|
let user = res.locals.user;
|
|
let webhook = new Webhook(req.body);
|
|
|
|
let existingWebhook = user.webhooks.find(hook => hook.id === webhook.id);
|
|
|
|
if (existingWebhook) {
|
|
throw new BadRequest(res.t('webhookIdAlreadyTaken', { id: webhook.id }));
|
|
}
|
|
|
|
webhook.formatOptions(res);
|
|
|
|
user.webhooks.push(webhook);
|
|
|
|
await user.save();
|
|
|
|
res.respond(201, webhook);
|
|
},
|
|
};
|
|
|
|
/**
|
|
* @api {put} /api/v3/user/webhook/:id Edit a webhook - BETA
|
|
* @apiName UserUpdateWebhook
|
|
* @apiGroup Webhook
|
|
* @apiDescription Can change `url`, `enabled`, `type`, and `options` properties. Cannot change `id`.
|
|
*
|
|
* @apiParam (Path) {UUID} id URL parameter - The id of the webhook to update
|
|
* @apiParam (Body) {String} [url] The webhook's URL
|
|
* @apiParam (Body) {String} [label] A label to remind you what this webhook does
|
|
* @apiParam (Body) {Boolean} [enabled] If the webhook should be enabled
|
|
* @apiParam (Body) {Sring="taskActivity","groupChatReceived"} [type] The webhook's type.
|
|
* @apiParam (Body) {Object} [options] The webhook's options. Wil differ depending on type. The options are enumerated in the [add webhook examples](#api-Webhook-UserAddWebhook).
|
|
* @apiParamExample {json} Update Enabled and Type Properties
|
|
* {
|
|
* "enabled": false,
|
|
* "type": "taskActivity"
|
|
* }
|
|
* @apiParamExample {json} Update Group Id for Group Chat Receieved Webhook
|
|
* {
|
|
* "options": {
|
|
* "groupId": "new-uuid-of-group"
|
|
* }
|
|
* }
|
|
*
|
|
* @apiSuccess {Object} data The updated webhook
|
|
* @apiSuccess {UUID} data.id The uuid of the webhook
|
|
* @apiSuccess {String} data.url The url of the webhook
|
|
* @apiSuccess {String} data.label A label for you to keep track of what this webhooks is for
|
|
* @apiSuccess {Boolean} data.enabled Whether the webhook should be sent
|
|
* @apiSuccess {String} data.type The type of the webhook
|
|
* @apiSuccess {Object} data.options The options for the webhook (See webhook add examples)
|
|
*
|
|
* @apiUse WebhookNotFound
|
|
* @apiUse WebhookBodyInvalid
|
|
*
|
|
*/
|
|
api.updateWebhook = {
|
|
method: 'PUT',
|
|
middlewares: [authWithHeaders()],
|
|
url: '/user/webhook/:id',
|
|
async handler (req, res) {
|
|
let user = res.locals.user;
|
|
let id = req.params.id;
|
|
let webhook = user.webhooks.find(hook => hook.id === id);
|
|
let { url, label, type, enabled, options } = req.body;
|
|
|
|
if (!webhook) {
|
|
throw new NotFound(res.t('noWebhookWithId', {id}));
|
|
}
|
|
|
|
if (url) {
|
|
webhook.url = url;
|
|
}
|
|
|
|
if (label) {
|
|
webhook.label = label;
|
|
}
|
|
|
|
if (type) {
|
|
webhook.type = type;
|
|
}
|
|
|
|
if (enabled !== undefined) {
|
|
webhook.enabled = enabled;
|
|
}
|
|
|
|
if (options) {
|
|
webhook.options = Object.assign(webhook.options, options);
|
|
}
|
|
|
|
webhook.formatOptions(res);
|
|
|
|
await user.save();
|
|
res.respond(200, webhook);
|
|
},
|
|
};
|
|
|
|
/**
|
|
* @api {delete} /api/v3/user/webhook/:id Delete a webhook - BETA
|
|
* @apiName UserDeleteWebhook
|
|
* @apiGroup Webhook
|
|
*
|
|
* @apiParam (Path) {UUID} id The id of the webhook to delete
|
|
*
|
|
* @apiSuccess {Array} data The remaining webhooks for the user
|
|
* @apiUse WebhookNotFound
|
|
*/
|
|
api.deleteWebhook = {
|
|
method: 'DELETE',
|
|
middlewares: [authWithHeaders()],
|
|
url: '/user/webhook/:id',
|
|
async handler (req, res) {
|
|
let user = res.locals.user;
|
|
let id = req.params.id;
|
|
|
|
let webhook = user.webhooks.find(hook => hook.id === id);
|
|
|
|
if (!webhook) {
|
|
throw new NotFound(res.t('noWebhookWithId', {id}));
|
|
}
|
|
|
|
removeFromArray(user.webhooks, webhook);
|
|
|
|
await user.save();
|
|
|
|
res.respond(200, user.webhooks);
|
|
},
|
|
};
|
|
|
|
module.exports = api;
|