mirror of
https://github.com/cwinfo/yggdrasil-map
synced 2024-11-09 16:00:27 +00:00
35 lines
760 B
Python
35 lines
760 B
Python
from flask import Flask, render_template, request
|
|
from graphData import insert_graph_data
|
|
|
|
app = Flask(__name__)
|
|
app.config.from_pyfile('web_config.cfg')
|
|
|
|
|
|
@app.context_processor
|
|
def add_ip():
|
|
return dict(ip=request.environ['REMOTE_ADDR'])
|
|
|
|
|
|
@app.route('/')
|
|
@app.route('/network')
|
|
def page_network():
|
|
return render_template('network.html', page='network')
|
|
|
|
@app.route('/about')
|
|
def page_about():
|
|
return render_template('about.html', page='about')
|
|
|
|
@app.route('/sendGraph', methods=['POST'])
|
|
def page_sendGraph():
|
|
print "Receiving graph from %s" % (request.remote_addr)
|
|
|
|
data = request.form['data']
|
|
ret = insert_graph_data(app.config, data)
|
|
if ret == None:
|
|
return 'OK'
|
|
else:
|
|
return 'Error: %s' % ret
|
|
|
|
if __name__ == '__main__':
|
|
app.run(host='::')
|