File size: 1,927 Bytes
3722089 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | import {
Body,
Controller,
Delete,
Get,
Param,
Post,
Put,
Query,
} from '@nestjs/common';
import { GetOrgFromRequest } from '@gitroom/nestjs-libraries/user/org.from.request';
import { Organization } from '@prisma/client';
import { ApiTags } from '@nestjs/swagger';
import { WebhooksService } from '@gitroom/nestjs-libraries/database/prisma/webhooks/webhooks.service';
import { CheckPolicies } from '@gitroom/backend/services/auth/permissions/permissions.ability';
import {
OnlyURL, UpdateDto, WebhooksDto
} from '@gitroom/nestjs-libraries/dtos/webhooks/webhooks.dto';
import { AuthorizationActions, Sections } from '@gitroom/backend/services/auth/permissions/permission.exception.class';
@ApiTags('Webhooks')
@Controller('/webhooks')
export class WebhookController {
constructor(private _webhooksService: WebhooksService) {}
@Get('/')
async getStatistics(@GetOrgFromRequest() org: Organization) {
return this._webhooksService.getWebhooks(org.id);
}
@Post('/')
@CheckPolicies([AuthorizationActions.Create, Sections.WEBHOOKS])
async createAWebhook(
@GetOrgFromRequest() org: Organization,
@Body() body: WebhooksDto
) {
return this._webhooksService.createWebhook(org.id, body);
}
@Put('/')
async updateWebhook(
@GetOrgFromRequest() org: Organization,
@Body() body: UpdateDto
) {
return this._webhooksService.createWebhook(org.id, body);
}
@Delete('/:id')
async deleteWebhook(
@GetOrgFromRequest() org: Organization,
@Param('id') id: string
) {
return this._webhooksService.deleteWebhook(org.id, id);
}
@Post('/send')
async sendWebhook(@Body() body: any, @Query() query: OnlyURL) {
try {
await fetch(query.url, {
method: 'POST',
body: JSON.stringify(body),
headers: { 'Content-Type': 'application/json' },
});
} catch (err) {
/** sent **/
}
return { send: true };
}
}
|