diff --git a/src/app.module.ts b/src/app.module.ts index d3461d27ad0dae5ac43b55c12035af684268717a..9b6831233c530b9bb6fe89adfd79eaec4a387633 100644 --- a/src/app.module.ts +++ b/src/app.module.ts @@ -21,22 +21,22 @@ import { GameModule } from './game/game.module'; import { ScoreModule } from './score/score.module'; import { ReplayModule } from './replay/replay.module'; -/* - Core of the server, - Every module is being imported and combined here. - - AppController needs to be kept in for SSL verification to work (root needs to return something) - - TypeOrmModule checks ormconfig.json for database connection. - - More information on global decorators can be found from shared folder. - - Providers can be found from shared folder - - HttpErrorFilter - - LoggingInterceptor - - RolesGuard Decorator - - StatesGuard Decorator -*/ +/////////////////////////////////////////////////////////////////////////////////////////////////////////// +/// Core of the server, /// +/// Every module is being imported and combined here. /// +/// /// +/// AppController needs to be kept in for SSL verification to work (root needs to return something) /// +/// /// +/// TypeOrmModule checks ormconfig.json for database connection. /// +/// /// +/// More information on global decorators can be found from shared folder. /// +/// /// +/// Providers can be found from shared folder /// +/// - HttpErrorFilter /// +/// - LoggingInterceptor /// +/// - RolesGuard Decorator /// +/// - StatesGuard Decorator /// +/////////////////////////////////////////////////////////////////////////////////////////////////////////// @Module({ imports: [ diff --git a/src/draw/coordinate.entity.ts b/src/draw/coordinate.entity.ts index 01c5d67d3db2d7ae55c8a0cdfaf63cc489bec15e..da5e940a74b31a21479527b02b847aaeda9d950e 100644 --- a/src/draw/coordinate.entity.ts +++ b/src/draw/coordinate.entity.ts @@ -3,11 +3,11 @@ import { Entity, Column, PrimaryGeneratedColumn, ManyToOne } from 'typeorm'; import { GameEntity } from '../game/game.entity'; import { FactionEntity } from '../faction/faction.entity'; -/* -MapDrawingEntity & MapDrawingHistoryEntity reflect database tables. - -MapDrawing ownershipCheck checks users rights to MapDrawing -*/ +/////////////////////////////////////////////////////////////////////////// +/// MapDrawingEntity & MapDrawingHistoryEntity reflect database tables. /// +/// /// +/// MapDrawing ownershipCheck checks users rights to MapDrawing /// +/////////////////////////////////////////////////////////////////////////// @Entity('MapDrawing') export class MapDrawingEntity { diff --git a/src/draw/draw.controller.ts b/src/draw/draw.controller.ts index efc4e1bfbc2694f8e7c5b867d97395d3b9846bbb..d66bebe1ffe091fcda211a64f2b4b49601dd75b1 100644 --- a/src/draw/draw.controller.ts +++ b/src/draw/draw.controller.ts @@ -15,8 +15,6 @@ import { Roles, GameStates } from '../shared/guard.decorator'; import { MapDrawingDTO } from './mapdrawing.dto'; import { GamePerson } from '../game/gameperson.decorator'; -/* - ////////////////////////////////////////////////////////////////////////// /// DrawController /// /// /// @@ -27,8 +25,6 @@ import { GamePerson } from '../game/gameperson.decorator'; /// Data return functions require atleast spectator role. /// ////////////////////////////////////////////////////////////////////////// -*/ - @Controller('draw') export class DrawController { constructor(private drawService: DrawService) {} diff --git a/src/draw/draw.module.ts b/src/draw/draw.module.ts index 5bc079ecc4eea8fa784b22a8ad31841b4a3fa1ec..f03fc3acf1657620259eab31621c81f72ded7d46 100644 --- a/src/draw/draw.module.ts +++ b/src/draw/draw.module.ts @@ -10,12 +10,12 @@ import { import { FactionEntity } from '../faction/faction.entity'; import { Game_PersonEntity } from '../game/game.entity'; import { NotificationModule } from 'src/notifications/notifications.module'; -/* + ///////////////////////////////////////////////////////////////////// /// Draw /// /// - contains everything to do with mapdrawing data. /// ///////////////////////////////////////////////////////////////////// -*/ + @Module({ imports: [ TypeOrmModule.forFeature([ diff --git a/src/draw/draw.service.ts b/src/draw/draw.service.ts index fabc3a4f44e3886ab8450cf0ada1c4599b7c243d..da4b239dd5ef98c1572b5e64ff52525cd9f16e38 100644 --- a/src/draw/draw.service.ts +++ b/src/draw/draw.service.ts @@ -9,9 +9,9 @@ import { import { MapDrawingDTO } from './mapdrawing.dto'; import { NotificationGateway } from '../notifications/notifications.gateway'; -/* -DrawService contains handling of MapDrawings and MapDrawinghistory -*/ +/////////////////////////////////////////////////////////////////////////// +/// DrawService contains handling of MapDrawings and MapDrawinghistory /// +/////////////////////////////////////////////////////////////////////////// @Injectable() export class DrawService { diff --git a/src/faction/faction.controller.ts b/src/faction/faction.controller.ts index e18add70a9853c3f78dc8401720514bb9100a388..5eb905cb17b45b451720b0a021bc2ed877ece4ac 100644 --- a/src/faction/faction.controller.ts +++ b/src/faction/faction.controller.ts @@ -24,22 +24,22 @@ import { FactionService } from './faction.service'; import { Roles, GameStates } from '../shared/guard.decorator'; import { GamePerson } from '../game/gameperson.decorator'; -/* -FactionController is being used for routing: - -Group -- create group when game status is CREATED -- getting groups with faction id(this is used mainly for listing players) -- joining group when game status is CREATED - -Faction -- checking users faction -- joining faction -- leaving faction -- changing faction multiplier (not implemented) - -See shared folder files for more information on decorators. -*/ +///////////////////////////////////////////////////////////////////////////////// +/// FactionController is being used for routing: /// +/// /// +/// Group /// +/// - create group when game status is CREATED /// +/// - getting groups with faction id(this is used mainly for listing players) /// +/// - joining group when game status is CREATED /// +/// /// +/// Faction /// +/// - checking users faction /// +/// - joining faction /// +/// - leaving faction /// +/// - changing faction multiplier (not implemented) /// +/// /// +/// See shared folder files for more information on decorators. /// +///////////////////////////////////////////////////////////////////////////////// @Controller('faction') export class FactionController { diff --git a/src/faction/faction.dto.ts b/src/faction/faction.dto.ts index c905999bf4739f4d3360ef8e81efe4a7bcd08182..511fce12d078c3c126641e62658540cbde7ae71b 100644 --- a/src/faction/faction.dto.ts +++ b/src/faction/faction.dto.ts @@ -16,12 +16,12 @@ import { GameEntity } from '../game/game.entity'; import { GameDTO } from '../game/game.dto'; import { FactionEntity, GameGroupEntity } from './faction.entity'; -/* -Contains Validation for FactionDTO, JoinFactionDTO, PromotePlayerDTO, GameGroupDTO, JoinGameGroupDTO - -uses class-validator built in validations -see https://github.com/typestack/class-validator -*/ +///////////////////////////////////////////////////////////////////////////////////////////////////////////// +/// Contains Validation for FactionDTO, JoinFactionDTO, PromotePlayerDTO, GameGroupDTO, JoinGameGroupDTO /// +/// /// +/// uses class-validator built in validations /// +/// see https://github.com/typestack/class-validator /// +///////////////////////////////////////////////////////////////////////////////////////////////////////////// export class FactionDTO { @IsOptional() diff --git a/src/faction/faction.entity.ts b/src/faction/faction.entity.ts index 0240260a036d0c832f40ba4be8e4d6de8ce4c19e..20b4a0a28b1d6eba7bd24cb0e0bad3fdd518bdcc 100644 --- a/src/faction/faction.entity.ts +++ b/src/faction/faction.entity.ts @@ -14,9 +14,9 @@ import { MapDrawingEntity } from '../draw/coordinate.entity'; import { Exclude } from 'class-transformer'; import { ScoreEntity } from '../score/score.entity'; -/* -FactionEntity & GameGroupEntity reflect database tables. -*/ +/////////////////////////////////////////////////////////////////// +/// FactionEntity & GameGroupEntity reflect database tables. /// +/////////////////////////////////////////////////////////////////// @Entity('Faction') export class FactionEntity { diff --git a/src/faction/faction.module.ts b/src/faction/faction.module.ts index 49ba6e916252a77eaa957a57995d0076d7303bfb..3a3026da3695e79a7e375ea963cceee3360e048f 100644 --- a/src/faction/faction.module.ts +++ b/src/faction/faction.module.ts @@ -6,18 +6,18 @@ import { FactionService } from './faction.service'; import { GameGroupEntity, FactionEntity } from './faction.entity'; import { Game_PersonEntity } from '../game/game.entity'; -/* -Entities -- FactionEntity -- Game_PersonEntity -- GameGroupEntity - -Controllers -- FactionController - -Provider -- FactionService -*/ +///////////////////////////// +/// Entities /// +/// - FactionEntity /// +/// - Game_PersonEntity /// +/// - GameGroupEntity /// +/// /// +/// Controllers /// +/// - FactionController /// +/// /// +/// Provider /// +/// - FactionService /// +///////////////////////////// @Module({ imports: [ diff --git a/src/faction/faction.service.ts b/src/faction/faction.service.ts index ba9370b0a98bed5febf6f05ffeeed6866e909c60..9447c36777b01762a697bf75b38c36d14b34b4b8 100644 --- a/src/faction/faction.service.ts +++ b/src/faction/faction.service.ts @@ -11,20 +11,20 @@ import { } from './faction.dto'; import { Game_PersonEntity } from '../game/game.entity'; -/* -FactionService contains functions for -- Joining faction -- Leaving faction -- Change faction multiplier (not implemented) - -Group -- Creating group -- List faction players in groups - -Player -- Promote player -- verifying user -*/ +/////////////////////////////////////////////////////// +/// FactionService contains functions for /// +/// - Joining faction /// +/// - Leaving faction /// +/// - Change faction multiplier (not implemented) /// +/// /// +/// Group /// +/// - Creating group /// +/// - List faction players in groups /// +/// /// +/// Player /// +/// - Promote player /// +/// - verifying user /// +/////////////////////////////////////////////////////// @Injectable() export class FactionService { diff --git a/src/game/game.module.ts b/src/game/game.module.ts index 2c5ba6add51069313c81227f2f95039db5a9f432..e119e492e4893267e3e1e3e671dd190abdd1db57 100644 --- a/src/game/game.module.ts +++ b/src/game/game.module.ts @@ -22,6 +22,7 @@ import { MulterModule } from '@nestjs/platform-express'; /// Game /// /// - contains everything to do with Game data /// ///////////////////////////////////////////////////////////////////// + @Module({ imports: [ TypeOrmModule.forFeature([ diff --git a/src/game/gameperson.decorator.ts b/src/game/gameperson.decorator.ts index c23eb3800e3a65c596138f0db8d693467c0bd735..3e2a232880332fbd62b54f76bbb37bf91ef714e7 100644 --- a/src/game/gameperson.decorator.ts +++ b/src/game/gameperson.decorator.ts @@ -1,15 +1,16 @@ import { createParamDecorator } from '@nestjs/common'; -/* - gives service access to the gameperson object - Game_PersonEntity { - gamepersonId - role - faction - } +/////////////////////////////////////////////////////////////////////////// +/// gives service access to the gameperson object /// +/// Game_PersonEntity { /// +/// gamepersonId /// +/// role /// +/// faction /// +/// } /// +/// /// +/// See more information from decorators in shared folder files. /// +/////////////////////////////////////////////////////////////////////////// - See more information from decorators in shared folder files. -*/ export const GamePerson = createParamDecorator((data, req) => { return data ? req.gameperson[data] : req.gameperson; }); diff --git a/src/main.ts b/src/main.ts index 6504af39b7092ad0dc77890cba3b53abd22ef45f..20e08b20631984132638f542266bd34a38ef74ba 100644 --- a/src/main.ts +++ b/src/main.ts @@ -2,11 +2,11 @@ import { NestFactory } from '@nestjs/core'; import { AppModule } from './app.module'; -/* - Main.ts starts the server. - - .env.PORT is not defined, port 5000 will be listened by default -*/ +/////////////////////////////////////////////////////////////////////////// +/// Main.ts starts the server. /// +/// /// +/// .env.PORT is not defined, port 5000 will be listened by default /// +/////////////////////////////////////////////////////////////////////////// async function bootstrap() { // port opened diff --git a/src/notifications/notifications.gateway.ts b/src/notifications/notifications.gateway.ts index f0fb1790d6cd4be0636182adb5eef363ec58af0d..79fcc0e5f287858f1cf62862dde722e372ba8ef9 100644 --- a/src/notifications/notifications.gateway.ts +++ b/src/notifications/notifications.gateway.ts @@ -16,9 +16,9 @@ import { GameEntity } from '../game/game.entity'; import { NotificationdDTO } from './notification.dto'; import { ValidationPipe } from '../shared/validation.pipe'; -/* -NotificationGateway contains websocket server and listener for game-info -*/ +/////////////////////////////////////////////////////////////////////////////////// +/// NotificationGateway contains websocket server and listener for game-info /// +/////////////////////////////////////////////////////////////////////////////////// @WebSocketGateway() export class NotificationGateway diff --git a/src/notifications/notifications.module.ts b/src/notifications/notifications.module.ts index ef8a542f79127be9360768383194ca5801475391..5ca243fcb3c39c6d49298beff12de51634575e19 100644 --- a/src/notifications/notifications.module.ts +++ b/src/notifications/notifications.module.ts @@ -7,15 +7,11 @@ import { GameEntity } from '../game/game.entity'; import { NotificationsController } from './notifications.controller'; import { NotificationsService } from './notifications.service'; -/* - ///////////////////////////////////////////////////////////////////// /// Notification /// /// - contains everything to do with Notification data. /// ///////////////////////////////////////////////////////////////////// -*/ - @Module({ imports: [TypeOrmModule.forFeature([NotificationEntity, GameEntity])], providers: [NotificationGateway, NotificationsService], diff --git a/src/replay/replay.controller.ts b/src/replay/replay.controller.ts index a2634a43bde3f4a3d57e08e4feed358f579ba505..e39e99d8ba1e5be763e21fc1e00b6496e6e95648 100644 --- a/src/replay/replay.controller.ts +++ b/src/replay/replay.controller.ts @@ -9,9 +9,9 @@ import { import { ReplayService } from './replay.service'; import { Roles } from 'src/shared/guard.decorator'; -/* -POST mockdata is mainly used for development, it can be removed from the code when needed, remember to remove service & test relations. -*/ +///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// +/// POST mockdata is mainly used for development, it can be removed from the code when needed, remember to remove service & test relations. /// +///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// @Controller('replay') export class ReplayController { diff --git a/src/replay/replay.module.ts b/src/replay/replay.module.ts index 6df113387f4dd010e31128a39592062517a5872f..bea3525dbe2bf79df1b4cff15613e60abea13781 100644 --- a/src/replay/replay.module.ts +++ b/src/replay/replay.module.ts @@ -29,6 +29,7 @@ import { TickService } from 'src/game/tick.service'; /// Replay /// /// - contains everything to do with Replay data. /// ///////////////////////////////////////////////////////////////////// + @Module({ imports: [ TypeOrmModule.forFeature([ diff --git a/src/score/score.module.ts b/src/score/score.module.ts index fce21d189b233bd6f952ebce79e47869171df60b..9ce2f41c5c8ab0cbdbf4c11d1709f305323ba870 100644 --- a/src/score/score.module.ts +++ b/src/score/score.module.ts @@ -15,6 +15,7 @@ import { NotificationModule } from '../notifications/notifications.module'; /// Score /// /// - contains everything to do with Score data. /// ///////////////////////////////////////////////////////////////////// + @Module({ imports: [ TypeOrmModule.forFeature([ diff --git a/src/task/task.module.ts b/src/task/task.module.ts index dc4b8f63d9a1866771f4c68035a09516cfc56bf6..9b009fc9480aab4e6708a9d8a986447393b76634 100644 --- a/src/task/task.module.ts +++ b/src/task/task.module.ts @@ -11,6 +11,7 @@ import { NotificationModule } from '../notifications/notifications.module'; /// Task /// /// - contains everything to do with Task data. /// ///////////////////////////////////////////////////////////////////// + @Module({ imports: [ TypeOrmModule.forFeature([TaskEntity, FactionEntity]), diff --git a/src/tracking/tracking.module.ts b/src/tracking/tracking.module.ts index 98079e9576122273127ce44007bea3fe66276b1d..de4afda4d1450da298902942709df1f039adc024 100644 --- a/src/tracking/tracking.module.ts +++ b/src/tracking/tracking.module.ts @@ -12,6 +12,7 @@ import { FactionEntity } from '../faction/faction.entity'; /// Tracking /// /// - contains everything to do with Tracking data. /// ///////////////////////////////////////////////////////////////////// + @Module({ imports: [ TypeOrmModule.forFeature([ diff --git a/src/user/user.controller.ts b/src/user/user.controller.ts index 09e308de29765af603b07335007d85ffcfa953c7..8e7635767424c627f8372d8b312cc2b7229e673a 100644 --- a/src/user/user.controller.ts +++ b/src/user/user.controller.ts @@ -12,15 +12,15 @@ import { UserDTO } from './user.dto'; import { AuthGuard } from '../shared/auth.guard'; import { ValidationPipe } from '../shared/validation.pipe'; -/* -UserController is being used for routing: -- Login -- Register - -- Verify is checking for logged in user - -See shared folder files for more information on decorators. -*/ +///////////////////////////////////////////////////////////////////// +/// UserController is being used for routing: /// +/// - Login /// +/// - Register /// +/// /// +/// - Verify is checking for logged in user /// +/// /// +/// See shared folder files for more information on decorators. /// +///////////////////////////////////////////////////////////////////// @Controller('user') export class UserController { diff --git a/src/user/user.decorator.ts b/src/user/user.decorator.ts index 2f9a6fc9ab06820e547670336872ac2dbcf32d08..4a6ec4788ceb7698d57d6c7986dd98d11e1dae31 100644 --- a/src/user/user.decorator.ts +++ b/src/user/user.decorator.ts @@ -1,12 +1,12 @@ import { createParamDecorator } from '@nestjs/common'; -/* -UserDecorator - -See auth.guard.ts in shared folder for more information - -Returns user id and user name, this is mainly used to return user id -*/ +/////////////////////////////////////////////////////////////////////////////// +/// UserDecorator /// +/// /// +/// See auth.guard.ts in shared folder for more information /// +/// /// +/// Returns user id and user name, this is mainly used to return user id /// +/////////////////////////////////////////////////////////////////////////////// // used to pass user information to controllers export const User = createParamDecorator((data, req) => { diff --git a/src/user/user.dto.ts b/src/user/user.dto.ts index 4f1b8d624b09468a404bc4bc535880a93b3e6ce3..243dae1faa53acc3c9a6a051db32b1a20b1728d3 100644 --- a/src/user/user.dto.ts +++ b/src/user/user.dto.ts @@ -1,10 +1,10 @@ import { IsString, IsNotEmpty, Length } from 'class-validator'; -/* -Contains Validation for UserDTO -uses class-validator built in validations -see https://github.com/typestack/class-validator -*/ +/////////////////////////////////////////////////////////// +/// Contains Validation for UserDTO /// +/// uses class-validator built in validations /// +/// see https://github.com/typestack/class-validator /// +/////////////////////////////////////////////////////////// export class UserDTO { @IsString() diff --git a/src/user/user.entity.ts b/src/user/user.entity.ts index 216eeb838c49158bca3f7551886bc7e623265a62..1c4c8d9eb7a38f6fb1f8003a6c5cd7a02d44d339 100644 --- a/src/user/user.entity.ts +++ b/src/user/user.entity.ts @@ -11,14 +11,14 @@ import * as jwt from 'jsonwebtoken'; import { Game_PersonEntity } from '../game/game.entity'; import { Exclude } from 'class-transformer'; -/* -UserEntity reflects database table. - -Before handling password to database we encrypt it with bcrypt. -password field will be excluded unless we call repository relation. - -token will be created when user registers or logs in to the system. -*/ +///////////////////////////////////////////////////////////////////////////// +/// UserEntity reflects database table. /// +/// /// +/// Before handling password to database we encrypt it with bcrypt. /// +/// password field will be excluded unless we call repository relation. /// +/// /// +/// token will be created when user registers or logs in to the system. /// +///////////////////////////////////////////////////////////////////////////// @Entity('Person') export class PersonEntity { diff --git a/src/user/user.module.ts b/src/user/user.module.ts index 7216dde2423e5d5aac5817a098c946353aeec315..85ec0ffd05dff0bd401da8d2807ed81ddbafdd57 100644 --- a/src/user/user.module.ts +++ b/src/user/user.module.ts @@ -5,16 +5,16 @@ import { UserController } from './user.controller'; import { UserService } from './user.service'; import { PersonEntity } from './user.entity'; -/* -Entities -- PersonEntity - -Controllers -- UserController - -Provider -- UserService -*/ +/////////////////////////// +/// Entities /// +/// - PersonEntity /// +/// /// +/// Controllers /// +/// - UserController /// +/// /// +/// Provider /// +/// - UserService /// +/////////////////////////// @Module({ imports: [TypeOrmModule.forFeature([PersonEntity])], diff --git a/src/user/user.service.ts b/src/user/user.service.ts index d34dec06df7a8c6d742b26e77bd01cc9c2e73a21..5e05634bb81e51d45d3241f3cb4d1fdfc26ee1b9 100644 --- a/src/user/user.service.ts +++ b/src/user/user.service.ts @@ -4,16 +4,17 @@ import { InjectRepository } from '@nestjs/typeorm'; import { PersonEntity } from './user.entity'; import { UserDTO } from './user.dto'; -/* -UserService contains functions for -- Login -- Register -Both functions return logged in users tokenObject -See more info in UserEntity. - -See more info on DTO in it's respective file -*/ +/////////////////////////////////////////////////////////// +/// UserService contains functions for /// +/// - Login /// +/// - Register /// +/// /// +/// Both functions return logged in users tokenObject /// +/// See more info in UserEntity. /// +/// /// +/// See more info on DTO in it's respective file /// +/////////////////////////////////////////////////////////// @Injectable() export class UserService {