12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- import json
- from bottle import request, response
- import model
- from util import debug
- def missing_attributes(attributes):
- for attr in attributes:
- if attr not in request.json:
- return attr
- else:
- return False
- def login():
- missing = missing_attributes(['username', 'password'])
- if missing:
- return bad_request('Missing value for attribute ' + str(missing))
- username = request.json['username']
- password = request.json['password']
- session_id = model.login(username, password)
- if session_id:
- return {'session_id': session_id}
- else:
- return forbidden('Invalid login data')
- def register():
- missing = missing_attributes(['username', 'password'])
- if missing:
- return bad_request('Missing value for attribute ' + str(missing))
- username = request.json['username']
- password = request.json['password']
- if model.user_exists(username):
- return forbidden('User already exists.')
- game_key = None
- if 'game_key' in request.json:
- game_key = request.json['game_key']
- if game_key not in model.unused_keys():
- return bad_request('Game key is not valid.')
- if model.register(username, password, game_key):
- return {'message': "successfully registered user"}
- else:
- return bad_request('registration not successful')
- def not_found(msg=''):
- response.status = 404
- if debug:
- msg = str(response.status) + ' Page not found: ' + msg
- response.content_type = 'application/json'
- return json.dumps({"error_message": msg})
- def forbidden(msg=''):
- response.status = 403
- if debug:
- msg = str(response.status) + ' Forbidden: ' + msg
- response.content_type = 'application/json'
- return json.dumps({"error_message": msg})
- def bad_request(msg=''):
- response.status = 400
- if debug:
- msg = str(response.status) + ' Bad request: ' + msg
- response.content_type = 'application/json'
- return json.dumps({"error_message": msg})
|