X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dakweb%2Fdakwebserver.py;fp=dakweb%2Fdakwebserver.py;h=181a2e7447af2b86cbcab76120ec8809501b5806;hb=47cd096281f1cc36dfe9818ef1fbae8d02f6ada6;hp=0000000000000000000000000000000000000000;hpb=8ddfb3391d47d9b73c90948b521b6b0a76add4b7;p=dak.git diff --git a/dakweb/dakwebserver.py b/dakweb/dakwebserver.py new file mode 100755 index 00000000..181a2e74 --- /dev/null +++ b/dakweb/dakwebserver.py @@ -0,0 +1,41 @@ +#!/usr/bin/python + +# Main script to run the dakweb server and also +# to provide the list_paths and path_help functions + +from sqlalchemy import or_ +import bottle +from daklib.dbconn import DBConn, DBSource, Suite, DSCFile, PoolFile +import json + +from dakweb.webregister import QueryRegister + +@bottle.route('/') +def root_path(): + """Returns a useless welcome message""" + return json.dumps('Use the /list_paths path to list all available paths') +QueryRegister().register_path('/', root_path) + +@bottle.route('/list_paths') +def list_paths(): + """Returns a list of available paths""" + return json.dumps(QueryRegister().get_paths()) +QueryRegister().register_path('/list_paths', list_paths) + +@bottle.route('/path_help/') +def path_help(path=None): + + if path is None: + return bottle.HTTPError(503, 'Path not specified.') + + return json.dumps(QueryRegister().get_path_help(path)) +QueryRegister().register_path('/path_help', list_paths) + +# Import our other methods +from queries.source import * + +print "Connecting" +# Set up our initial database connection +d = DBConn() +#bottle.run(host='localhost', port=8765) +bottle.run()