|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- from flask import Flask, request, render_template, jsonify, g
- from werkzeug.contrib.cache import SimpleCache
- import json
- import abp
- import argparse
-
- #TODO: only send deltas
-
- #graphstate = abp.GraphState()
- cache = SimpleCache(default_timeout = 10000)
- cache.set("state", abp.GraphState())
- app = Flask(__name__)
-
- class InvalidUsage(Exception):
- status_code = 400
-
- def __init__(self, message, status_code=None, payload=None):
- Exception.__init__(self)
- self.message = message
- if status_code is not None:
- self.status_code = status_code
- self.payload = payload
-
- def to_dict(self):
- rv = dict(self.payload or ())
- rv['message'] = self.message
- return rv
-
- @app.errorhandler(InvalidUsage)
- def handle_invalid_usage(error):
- response = jsonify(error.to_dict())
- response.status_code = error.status_code
- return response
-
- @app.before_request
- def before_request():
- g.state = cache.get("state")
-
- @app.after_request
- def after_request(response):
- cache.set("state", g.state)
- return response
-
- @app.route("/")
- def index():
- return render_template("index.html")
-
- @app.route("/state", methods = ["GET", "POST"])
- def state():
- if request.method == "GET":
- output = g.state.to_json()
- output["needs_update"] = cache.get("needs_update")
- cache.set("needs_update", False)
- return jsonify(output)
- elif request.method == "POST":
- g.state = abp.GraphState()
- g.state.from_json(json.loads(request.data))
- cache.set("needs_update", True)
- return jsonify({"update": "ok"})
-
- @app.route("/add_node/<int:node>")
- def add_node(node):
- """ Add a node to the graph """
- if node in g.state.vops:
- raise InvalidUsage("Node {} is already in the graph".format(node))
-
- g.state.add_node(node)
- g.state.layout()
- cache.set("needs_update", True)
- return jsonify({"add_node": "okay"})
-
- @app.route("/act_local_rotation/<int:node>/<int:operation>")
- def act_local_rotation(node, operation):
- """ Add a node to the graph """
- # TODO: try to lookup the operation first
- if not node in g.state.vops:
- raise InvalidUsage("Node {} does not exist".format(node))
- if not operation in range(24):
- raise InvalidUsage("Invalid local rotation {}".format(operation))
-
- g.state.act_local_rotation(node, operation)
- cache.set("needs_update", True)
- return jsonify({"act_local_rotation": "okay"})
-
- @app.route("/act_cz/<int:a>/<int:b>")
- def act_cz(a, b):
- """ Add a node to the graph """
- for node in (a, b):
- if not node in g.state.vops:
- raise InvalidUsage("Node {} does not exist".format(node))
- g.state.act_cz(a, b)
- g.state.layout()
- cache.set("needs_update", True)
- return jsonify({"act_cz": "okay"})
-
- @app.route("/clear")
- def clear():
- """ Clear the current state """
- g.state = abp.GraphState()
- cache.set("needs_update", True)
- return jsonify({"clear": "okay"})
-
-
- if __name__ == "__main__":
- parser = argparse.ArgumentParser()
- parser.add_argument("-d", "--debug", help="Run in debug mode", action="store_true", default=False)
- args = parser.parse_args()
- app.debug = args.debug
-
- app.run(host="0.0.0.0")
-
-
|