* Adding the base of our API * Little file and lint adjustments * Adding the lint command to Makefile * Adding the Minesweeper logic for game creation * Adding some tests for the Minesweeper algorithm * Adding some tools command to Makefile like pre-commit and pip-tools * Adding test help text to Makefile * all new user is_staff=True, for development for now * Now we can get the data from specific game Adding game status Adding game status Fixing game models
31 lines
960 B
Python
31 lines
960 B
Python
from rest_framework import status
|
|
from rest_framework.response import Response
|
|
from rest_framework.views import APIView
|
|
|
|
from game.models import Game
|
|
from ..serializers import GameSerializer
|
|
|
|
|
|
class GameResource(APIView):
|
|
def post(self, request):
|
|
""" Creates a new game """
|
|
|
|
serializer = GameSerializer(data=request.data)
|
|
if serializer.is_valid():
|
|
serializer.save()
|
|
return Response(serializer.data, status=status.HTTP_201_CREATED)
|
|
return Response(serializer.errors, status=status.HTTP_400_BAD_REQUEST)
|
|
|
|
|
|
class GameSingleResource(APIView):
|
|
def get(self, request, game_id):
|
|
""" Returns a game serialized or not found """
|
|
|
|
try:
|
|
game = Game.objects.get(pk=game_id)
|
|
except Game.DoesNotExist:
|
|
return Response(status=status.HTTP_404_NOT_FOUND)
|
|
|
|
serializer = GameSerializer(game)
|
|
return Response(serializer.data, status=status.HTTP_200_OK)
|