Skip to content
Snippets Groups Projects
Commit f9b2e98e authored by Samuli Virtapohja's avatar Samuli Virtapohja
Browse files

add get players

parent 4b1e2eee
No related branches found
No related tags found
3 merge requests!59Development to master,!36Development,!34Get player location
...@@ -79,7 +79,7 @@ export class FactionController { ...@@ -79,7 +79,7 @@ export class FactionController {
// :id is the id of the game, and is needed for GameStates to check the state of the game // :id is the id of the game, and is needed for GameStates to check the state of the game
@Put('join-faction/:id') @Put('join-faction/:id')
@UseGuards(new AuthGuard()) @UseGuards(new AuthGuard())
@GameStates('CREATED') @GameStates('CREATED', 'STARTED')
@UsePipes(new ValidationPipe()) @UsePipes(new ValidationPipe())
joinFaction( joinFaction(
@User('id') person, @User('id') person,
......
...@@ -19,8 +19,8 @@ export class TrackingService { ...@@ -19,8 +19,8 @@ export class TrackingService {
async trackLocation(personId, gameId, trackdata: TrackingDTO) { async trackLocation(personId, gameId, trackdata: TrackingDTO) {
// find player // find player
let gameperson = await this.gamepersonrepository.findOne({ let gameperson = await this.gamepersonrepository.findOne({
game: gameId, where: { game: gameId, person: personId },
person: personId, relations: ['faction'],
}); });
if (!gameperson) { if (!gameperson) {
throw new HttpException( throw new HttpException(
...@@ -51,6 +51,8 @@ export class TrackingService { ...@@ -51,6 +51,8 @@ export class TrackingService {
// initialize timestamp // initialize timestamp
trackdata.data['geometry']['properties']['time'] = []; trackdata.data['geometry']['properties']['time'] = [];
trackedperson = await this.trackingrepository.create(trackdata); trackedperson = await this.trackingrepository.create(trackdata);
trackedperson.faction = gameperson.faction;
trackedperson.game = gameId;
trackedperson.gamepersonId = gameperson; trackedperson.gamepersonId = gameperson;
return await this.trackingrepository.save(trackedperson); return await this.trackingrepository.save(trackedperson);
} }
...@@ -64,18 +66,33 @@ export class TrackingService { ...@@ -64,18 +66,33 @@ export class TrackingService {
relations: ['faction'], relations: ['faction'],
}); });
// if user , user is factionleader let playerdata;
// get playerdata
if (gameperson.faction) { if (gameperson.faction) {
const playerdata = await this.trackingrepository.find({ playerdata = await this.trackingrepository.find({
where: { faction: gameperson.faction }, where: { faction: gameperson.faction },
relations: ['faction', 'gamepersonId'],
}); });
return playerdata;
} else { } else {
const playerdata = await this.trackingrepository.find({ playerdata = await this.trackingrepository.find({
where: { game: gameId }, where: { game: gameId },
relations: ['faction', 'gamepersonId'],
}); });
return 'admin';
} }
// parse data
const currentdata = await Promise.all(
playerdata.map(async player => {
return {
gamepersonId: player['gamepersonId']['gamepersonId'],
gamepersonRole: player['gamepersonId']['role'],
factionId: player['faction']['factionId'],
coordinates: player['data']['geometry']['coordinates'].pop(),
};
}),
);
return currentdata;
} }
private async mapFunction(data): Promise<Number> { private async mapFunction(data): Promise<Number> {
......
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