MAPG-235 created error handling for challenge access without login
This commit is contained in:
parent
069c6b37c8
commit
62251b1062
@ -514,7 +514,11 @@ const GameType = Object.freeze({'SINGLE': 0, 'MULTI': 1, 'CHALLENGE': 2});
|
||||
break;
|
||||
|
||||
case 'game_not_found':
|
||||
MapGuesser.showModalWithContent('Error', 'The game room was not found by this ID. Please check the link.');
|
||||
MapGuesser.showModalWithContent('Error', 'The game was not found by this ID. Please check the link.');
|
||||
break;
|
||||
|
||||
case 'anonymous_user':
|
||||
MapGuesser.showModalWithContent('Error', 'You have to login to join a challenge!');
|
||||
break;
|
||||
|
||||
default:
|
||||
@ -637,48 +641,6 @@ const GameType = Object.freeze({'SINGLE': 0, 'MULTI': 1, 'CHALLENGE': 2});
|
||||
Game.pov = this.response.place.pov;
|
||||
}
|
||||
|
||||
// if(this.response.history) {
|
||||
|
||||
// // game finished
|
||||
// // delete everything but the last round
|
||||
// for (var i = 0; i < Game.rounds.length -1; ++i) {
|
||||
// var round = Game.rounds[i];
|
||||
|
||||
// if (round.realMarker) {
|
||||
// round.realMarker.setMap(null);
|
||||
// }
|
||||
// for (var j = 0; j < round.guessMarkers.length; ++j) {
|
||||
// var guessMarker = round.guessMarkers[j];
|
||||
// guessMarker.marker.setMap(null);
|
||||
// guessMarker.line.setMap(null);
|
||||
// if (guessMarker.info) {
|
||||
// guessMarker.info.close();
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
|
||||
// // Game.rounds = [];
|
||||
|
||||
// for (var i = 0; i < this.response.history.length; ++i) {
|
||||
// var round = this.response.history[i];
|
||||
// Game.rounds[i] = { position: round.position, guessPosition: round.result.guessPosition, realMarker: null, guessMarkers: [] };
|
||||
// Game.addPositionToResultMap(true);
|
||||
// if (round.result.guessPosition) {
|
||||
// Game.addGuessPositionToResultMap(round.result.guessPosition, null, true);
|
||||
// }
|
||||
// Game.scoreSum += round.result.score;
|
||||
|
||||
// for (var j = 0; j < round.allResults.length; ++j) {
|
||||
// var result = round.allResults[j];
|
||||
// if (result.guessPosition) {
|
||||
// Game.addGuessPositionToResultMap(result.guessPosition, result, true);
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
|
||||
// }
|
||||
|
||||
|
||||
}, data);
|
||||
},
|
||||
|
||||
|
@ -239,8 +239,19 @@ class GameController
|
||||
$challengeToken_str = $this->request->query('challengeToken');
|
||||
$session = $this->request->session();
|
||||
$userId = $session->get('userId');
|
||||
|
||||
if (!isset($userId))
|
||||
{
|
||||
return new JsonContent(['error' => 'anonymous_user']);
|
||||
}
|
||||
|
||||
$challenge = $this->challengeRepository->getByTokenStr($challengeToken_str);
|
||||
|
||||
if (!isset($challenge))
|
||||
{
|
||||
return new JsonContent(['error' => 'game_not_found']);
|
||||
}
|
||||
|
||||
if(!$this->userInChallengeRepository->isUserParticipatingInChallenge($userId, $challenge)) {
|
||||
// new player is joining
|
||||
$userInChallenge = new UserInChallenge();
|
||||
|
Loading…
Reference in New Issue
Block a user