/*! * Copyright (c) 2024 PLANKA Software GmbH * Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md */ /** * @swagger * /notification-services/{id}: * patch: * summary: Update notification service * description: Updates a notification service. Users can update their own services, project managers can update board services. * tags: * - Notification Services * parameters: * - name: id * in: path * required: true * description: ID of the notification service to update * schema: * type: string * example: "1357158568008091264" * requestBody: * required: true * content: * application/json: * schema: * type: object * properties: * url: * type: string * maxLength: 512 * description: URL endpoint for notifications * example: https://service.example.com/planka * format: * type: string * enum: [text, markdown, html] * description: Format for notification messages * example: text * responses: * 200: * description: Notification service updated successfully * content: * application/json: * schema: * type: object * required: * - item * properties: * item: * $ref: '#/components/schemas/NotificationService' * 400: * $ref: '#/components/responses/ValidationError' * 401: * $ref: '#/components/responses/Unauthorized' * 404: * $ref: '#/components/responses/NotFound' */ const { idInput } = require('../../../utils/inputs'); const Errors = { NOTIFICATION_SERVICE_NOT_FOUND: { notificationServiceNotFound: 'Notification service not found', }, }; module.exports = { inputs: { id: { ...idInput, required: true, }, url: { type: 'string', isNotEmptyString: true, maxLength: 512, }, format: { type: 'string', isIn: Object.values(NotificationService.Formats), }, }, exits: { notificationServiceNotFound: { responseType: 'notFound', }, }, async fn(inputs) { const { currentUser } = this.req; const pathToProject = await sails.helpers.notificationServices .getPathToUserById(inputs.id) .intercept('pathNotFound', () => Errors.NOTIFICATION_SERVICE_NOT_FOUND); let { notificationService } = pathToProject; const { user, board, project } = pathToProject; const values = _.pick(inputs, ['url', 'format']); if (notificationService.userId) { if (user.id !== currentUser.id) { throw Errors.NOTIFICATION_SERVICE_NOT_FOUND; // Forbidden } notificationService = await sails.helpers.notificationServices.updateOneInUser.with({ values, user, record: notificationService, actorUser: currentUser, request: this.req, }); } else if (notificationService.boardId) { const isProjectManager = await sails.helpers.users.isProjectManager( currentUser.id, project.id, ); if (!isProjectManager) { throw Errors.NOTIFICATION_SERVICE_NOT_FOUND; // Forbidden } notificationService = await sails.helpers.notificationServices.updateOneInBoard.with({ values, project, board, record: notificationService, actorUser: currentUser, request: this.req, }); } if (!notificationService) { throw Errors.NOTIFICATION_SERVICE_NOT_FOUND; } return { item: notificationService, }; }, };