easyctf-2017/server/api/stats.py
2016-01-26 20:30:30 -06:00

25 lines
527 B
Python

from flask import Blueprint, request, session
from flask import current_app as app
from decorators import api_wrapper
import team
blueprint = Blueprint("stats", __name__)
@blueprint.route("/scoreboard")
@api_wrapper
def all_teams_stats():
teams = team.get_team().all()
result = [ ]
count = 0
for _team in teams:
count += 1
result.append({
"rank": count,
"teamname": _team.teamname,
"tid": _team.tid,
"school": _team.school,
"points": _team.points()
})
return { "success": 1, "scoreboard": result }