Skip to content
Snippets Groups Projects
Commit 631e4935 authored by L4721's avatar L4721
Browse files

Merge branch 'Development' into 'JoinGame'

# Conflicts:
#   src/game/coordinate.entity.ts
#   src/game/faction.entity.ts
#   src/game/game.controller.ts
#   src/game/game.dto.ts
#   src/game/game.entity.ts
#   src/game/game.module.ts
#   src/game/game.service.ts
#   src/user/user.entity.ts
#   src/user/user.module.ts
parents 4616442a cab7ecb0
No related branches found
No related tags found
2 merge requests!59Development to master,!18Join game
This commit is part of merge request !18. Comments created here will be created in the context of that merge request.
import { import {
IsString,
IsDateString,
IsJSON,
IsNotEmpty, IsNotEmpty,
IsString,
IsDate,
Length, Length,
IsInt,
Min,
Max,
IsArray, IsArray,
Validate, IsJSON,
} from 'class-validator'; } from 'class-validator';
import { ArrayLength } from 'src/shared/array-validation'; import { Timestamp } from 'typeorm';
export class GameDTO { export class GameDTO {
// uses class-validator built in validations
// see https://github.com/typestack/class-validator
@IsString() @IsString()
@IsNotEmpty() @IsNotEmpty()
@Length(2, 31) @Length(3, 30)
name: string; name: string;
@IsString() @IsString()
gameDescription?: string;
@IsDate()
@IsNotEmpty() @IsNotEmpty()
@Length(1, 255) @Length(1, 255)
desc: string; desc: string;
...@@ -36,6 +40,14 @@ export class GameDTO { ...@@ -36,6 +40,14 @@ export class GameDTO {
// custom validation for array length (arr>min, arr<max) // custom validation for array length (arr>min, arr<max)
//@Validate(ArrayLength, [4, 8]) //@Validate(ArrayLength, [4, 8])
factions?: FactionDTO[]; factions?: FactionDTO[];
@IsArray()
@IsNotEmpty()
objectivePoint?: ObjectivePointDTO[];
@IsJSON()
@IsNotEmpty()
mapCoordinates: JSON;
} }
export class FactionDTO { export class FactionDTO {
......
...@@ -11,6 +11,6 @@ import { FactionEntity } from './faction.entity'; ...@@ -11,6 +11,6 @@ import { FactionEntity } from './faction.entity';
@Module({ @Module({
imports: [TypeOrmModule.forFeature([GameEntity, FactionEntity, Game_PersonEntity, PersonEntity, GameGroupEntity])], imports: [TypeOrmModule.forFeature([GameEntity, FactionEntity, Game_PersonEntity, PersonEntity, GameGroupEntity])],
controllers: [GameController], controllers: [GameController],
providers: [GameService] providers: [GameService],
}) })
export class GameModule {} export class GameModule {}
...@@ -92,6 +92,14 @@ export class GameService { ...@@ -92,6 +92,14 @@ export class GameService {
}; };
} }
async deleteGame(id) {
// TODO: Delete factions from Faction table associated with the deleted game
await this.gameRepository.delete({ id });
return {
message: 'Game deleted',
};
}
// checks the password, creates an entry in GamePerson table with associated role&faction // checks the password, creates an entry in GamePerson table with associated role&faction
async createGroup(person, gameId, groupData) { async createGroup(person, gameId, groupData) {
try { try {
......
...@@ -7,9 +7,9 @@ import { ...@@ -7,9 +7,9 @@ import {
} from 'typeorm'; } from 'typeorm';
import * as bcrypt from 'bcryptjs'; import * as bcrypt from 'bcryptjs';
import * as jwt from 'jsonwebtoken'; import * as jwt from 'jsonwebtoken';
import { MapMarkerEntity } from 'src/mapmarkers/mapmarker.entity';
import { MapMarkerEntity } from '../mapmarkers/mapmarker.entity'; import {TaskEntity} from '../game/faction.entity'
import { Game_PersonEntity } from '../game/game.entity'; import {Game_PersonEntity} from '../game/game.entity'
@Entity('Person') @Entity('Person')
export class PersonEntity { export class PersonEntity {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment