From f49285476798f082f459c7bf6b6713c5c4fa6576 Mon Sep 17 00:00:00 2001 From: Ronnie Friman <L4168@student.jamk.fi> Date: Tue, 9 Jul 2019 18:22:35 +0300 Subject: [PATCH] added notifications controller&service --- src/notifications/notifications.controller.ts | 16 ++++++++++++++++ src/notifications/notifications.module.ts | 5 ++++- src/notifications/notifications.service.ts | 16 ++++++++++++++++ 3 files changed, 36 insertions(+), 1 deletion(-) create mode 100644 src/notifications/notifications.controller.ts create mode 100644 src/notifications/notifications.service.ts diff --git a/src/notifications/notifications.controller.ts b/src/notifications/notifications.controller.ts new file mode 100644 index 0000000..83101be --- /dev/null +++ b/src/notifications/notifications.controller.ts @@ -0,0 +1,16 @@ +import { Controller, Get, Param } from '@nestjs/common'; +import { NotificationsService } from './notifications.service'; +import { Roles } from 'src/shared/guard.decorator'; + +@Controller('notifications') +export class NotificationsController { + constructor(private notificationService: NotificationsService) {} + + // get all sent notifications for game + // :id is the id of the game + @Get(':id') + @Roles('admin', 'factionleader', 'soldier', 'groupleader') + async(@Param('id') gameId) { + return this.notificationService.getNotifications(gameId); + } +} diff --git a/src/notifications/notifications.module.ts b/src/notifications/notifications.module.ts index 41e2fca..607ea0c 100644 --- a/src/notifications/notifications.module.ts +++ b/src/notifications/notifications.module.ts @@ -4,10 +4,13 @@ import { TypeOrmModule } from '@nestjs/typeorm'; import { NotificationGateway } from './notifications.gateway'; import { NotificationEntity } from './notification.entity'; import { GameEntity } from '../game/game.entity'; +import { NotificationsController } from './notifications.controller'; +import { NotificationsService } from './notifications.service'; @Module({ imports: [TypeOrmModule.forFeature([NotificationEntity, GameEntity])], - providers: [NotificationGateway], + providers: [NotificationGateway, NotificationsService], exports: [NotificationGateway], + controllers: [NotificationsController], }) export class NotificationModule {} diff --git a/src/notifications/notifications.service.ts b/src/notifications/notifications.service.ts new file mode 100644 index 0000000..d63f017 --- /dev/null +++ b/src/notifications/notifications.service.ts @@ -0,0 +1,16 @@ +import { Injectable } from '@nestjs/common'; +import { InjectRepository } from '@nestjs/typeorm'; +import { NotificationEntity } from './notification.entity'; +import { Repository } from 'typeorm'; + +@Injectable() +export class NotificationsService { + constructor( + @InjectRepository(NotificationEntity) + private notificationRepository: Repository<NotificationEntity>, + ) {} + + async getNotifications(game: string) { + return this.notificationRepository.find({ game }); + } +} -- GitLab