summaryrefslogtreecommitdiff
path: root/app.py
blob: 5c39c0d57e56a6fa46e0e1ebc74d2c51790dd4c3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
from os import getenv
from dotenv import load_dotenv
from flask import Flask, abort, render_template
from model import CourtList, PlayerList, GameList

load_dotenv()


PLAYERS = PlayerList(location="test_data_large.csv")
COURTS = CourtList(12)
GAME_GENERATOR = GameList()
GAME_GENERATOR.clear(COURTS)


app = Flask("Match Up! Backend")
env_config = getenv("PROD_APP_SETTINGS", "config.DevelopmentConfig")
app.config.from_object(env_config)


@app.route("/", methods=["GET"])
def home():
    return render_template("index.j2")


@app.route("/random-games", methods=["POST"])
def get_random_games():
    print("Creating new games...")
    GAME_GENERATOR.create_random_games(COURTS, PLAYERS)
    return render_template("games.j2", games=GAME_GENERATOR.games)


@app.route("/skilled-games", methods=["POST"])
def get_skilled_games():
    print("Creating new games...")
    GAME_GENERATOR.create_skilled_games(COURTS, PLAYERS)
    return render_template("games.j2", games=GAME_GENERATOR.games)


@app.route("/clear-games", methods=["POST"])
def clear_games():
    print("Clearing games...")
    GAME_GENERATOR.clear(COURTS)
    return render_template("games.j2", games=GAME_GENERATOR.games)


@app.route("/game-list", methods=["GET"])
def get_list_of_games():
    return render_template("games.j2", games=GAME_GENERATOR.games)


@app.route("/player-toggle/<player_request>", methods=["POST"])
def toggle_player(player_request):
    selection = PLAYERS.get_player(player_request)
    if len(selection) != 1:
        abort(404)
    PLAYERS.toggle_player(player_request)
    selection = PLAYERS.get_player(player_request)
    return render_template("player.j2", player=selection[0])


@app.route("/player-list", methods=["GET"])
def get_list_of_players():
    return render_template("players.j2", players=PLAYERS.players)


@app.route("/court-toggle/<court_number>", methods=["POST"])
def toggle_court(court_number):
    id = int(court_number)
    status = COURTS.toggle_court_status(id)
    return render_template("court.j2", id=id, status=status)


@app.route("/court-list", methods=["GET"])
def get_list_of_courts():
    return render_template("courts.j2", courts=COURTS.courts)