-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.py
More file actions
182 lines (168 loc) · 6.54 KB
/
app.py
File metadata and controls
182 lines (168 loc) · 6.54 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
import string
import random
from urllib.request import urlopen
from playhouse.shortcuts import model_to_dict
from flask import Flask, request, jsonify
from models import *
app = Flask(__name__, static_url_path='', static_folder='static')
@app.before_request
def before_request():
initialize_db()
@app.teardown_request
def teardown_request(exception):
db.close()
@app.route('/')
def home():
return app.send_static_file('index.html')
@app.route('/data', methods=['POST'])
def get_game_data():
room = Room.get(Room.id == request.form['room'])
players = Player.select().where(Player.room_id == room.id)
submission_count = Submission.select().where(Submission.room == room, Submission.round_num == room.round_num).count()
if submission_count > 0:
if submission_count == room.num_players:
submissions = Submission.select().where(Submission.room == room, Submission.round_num == room.round_num).order_by(Submission.randomizer)
else:
submissions = Submission.select().where(Submission.room == room, Submission.round_num == room.round_num)
submissions = [model_to_dict(submission) for submission in submissions]
else:
submissions = ''
vote_count = Vote.select().where(Vote.room == room, Vote.round_num == room.round_num).count()
if vote_count > 0:
votes = Vote.select().where(Vote.room == room, Vote.round_num == room.round_num)
else:
votes = ''
return jsonify(gamedata=model_to_dict(room), submissions=submissions, players=[model_to_dict(player) for player in players], votes=[model_to_dict(vote) for vote in votes])
@app.route('/connect', methods=['POST'])
def join_game():
if request.form['action'] == "start":
leader_can_vote = request.form['leaderCanVote'] == "true"
can_vote_for_self = request.form['selfCanVote'] == "true"
player = Player.create(
name=request.form['name']
)
code = get_room_code()
while Room.select().where(Room.code == code).exists():
code = get_room_code()
room = Room.create(
code=code,
owner=player,
leader_can_vote=leader_can_vote,
can_vote_for_self=can_vote_for_self
)
else:
try:
room = Room.get(Room.code == request.form['code'])
except:
return jsonify(error="Sorry, we couldn't find that room. Please try again.")
if Player.select().where(Player.name == request.form['name'], Player.room_id == room.id).exists():
return jsonify(error="Sorry, someone has already joined with that name. Please try again.")
else:
player = Player.create(
name=request.form['name']
)
# When many people are joining quickly, this will not work I think.
room.num_players += 1
room.save()
player.room_id = room.id
# Because this won't match
player.order_in_room = room.num_players
player.save()
players = Player.select().where(Player.room_id == room.id)
return jsonify(players=[model_to_dict(player) for player in players], gamedata=model_to_dict(room), requestingUser=model_to_dict(player))
@app.route('/start', methods=['POST'])
def start_game():
room = Room.get(Room.id == request.form['room'])
first_player = Player.get(Player.room_id == room.id, Player.order_in_room == random.randint(1, room.num_players))
room.leader = first_player
first_player.is_leader = True
first_player.save()
room.round_num = 1
room.save()
return "Game started"
@app.route('/prompt', methods=['POST'])
def handle_prompts():
room = Room.get(Room.id == request.form['room'])
if request.form['action'] == 'clear':
room.prompt = None
room.save()
elif request.form['action'] == 'set':
room.prompt = request.form['prompt']
room.save()
return "Prompt updated"
@app.route('/submit', methods=['POST'])
def handle_submissions():
room = Room.get(Room.id == request.form['room'])
player = Player.get(Player.id == request.form['requestingUser'])
submission = Submission.create(
text = request.form['submission'],
author = player,
room = room,
randomizer = random.random(),
round_num = room.round_num
)
return "Submission added"
@app.route('/reveal', methods=['POST'])
def reveal_submission():
submission = Submission.get(Submission.id == request.form['submission'])
submission.show_auth = True
submission.save()
return "Submission revealed."
@app.route('/advance', methods=['POST'])
def advance_round():
room = Room.get(Room.id == request.form['room'])
room.round_num = room.round_num + 1
next_player = Player.get(Player.room_id == room.id, Player.order_in_room == room.leader.order_in_room % room.num_players + 1)
room.leader.is_leader = False
room.leader.save()
room.leader = next_player
next_player.is_leader = True
room.prompt = None
room.votes = 0
room.save()
next_player.save()
players = Player.select().where(Player.room_id == room.id)
for player in players:
player.has_voted = False
player.save()
return "Begun next round."
@app.route('/vote', methods=['POST'])
def vote():
submission = Submission.get(Submission.id == request.form['submission'])
submission.votes += 1
submission.save()
room = submission.room
room.votes += 1
room.save()
author = submission.author
player = Player.get(Player.id == request.form['player'])
player.has_voted = True
if author == room.leader and author != player and not room.leader_can_vote:
player.score += 1
player.save()
if (author != room.leader and author != player) or (author == room.leader and room.leader_can_vote and author != player):
author.score += 1
author.save()
vote = Vote.create(
room = room,
voter = player,
submission = submission,
round_num = room.round_num
)
all_subs = Submission.select().where(Submission.room == room, Submission.round_num == room.round_num)
vote_count = 0
for submission in all_subs:
vote_count += submission.votes
if room.leader_can_vote:
total_votes_needed = room.num_players
else:
total_votes_needed = room.num_players - 1
if vote_count == total_votes_needed:
for submission in all_subs:
submission.show_auth = True
submission.save()
return jsonify(success=True)
def get_room_code():
return ''.join(random.choice(string.ascii_lowercase) for n in range(6))
if __name__ == '__main__':
app.run(debug=True)