/usr/lib/python2.7/dist-packages/pybitweb/buildd.py is in pybit-web 1.0.0-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 | # pybit-web
# Copyright 2012:
#
# Nick Davidson <nicholas.davidson@gmail.com>,
# Simon Haswell <maxcady78@hotmail.co.uk>,
# Neil Williams <codehelp@debian.org>,
# James Bennet <github@james-bennet.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
from bottle import Bottle,template,response,request
import jsonpickle
from bottle_basic_auth import requires_auth
import psycopg2.errorcodes
def get_buildd_app(settings, db, controller):
app = Bottle()
app.config= {'settings' : settings, 'db' : db, 'controller': controller}
@app.route('/', method='GET')
@app.route('/page/<page:int>', method='GET')
def get_buildd(page = None):
try:
# Return list of BuildDs
if page:
buildds = app.config['db'].get_buildclients(page)
else:
buildds = app.config['db'].get_buildclients()
encoded = jsonpickle.encode(buildds)
response.content_type = "application/json"
return encoded
except Exception as e:
raise Exception('Exception encountered: ' + str(e))
return None
@app.route('/count', method='GET')
def get_count():
#return count of buildds
count = app.config['db'].count_buildclients()
encoded = jsonpickle.encode(count)
response.content_type = "application/json"
return encoded
@app.route('/', method='POST')
@app.route('/', method='PUT')
@requires_auth
def put_buildd():
try:
# Register a new BuildD.
name = request.forms.get('name')
if name:
app.config['db'].put_buildclient(name)
else:
response.status = "400 - Required fields missing."
return
except Exception as e:
raise Exception('Exception encountered: ' + str(e))
return None
@app.route('/<buildd_id:int>', method='GET')
def get_buildd_id(buildd_id):
try:
# Returns all information about a specific buildd
res = app.config['db'].get_buildd_id(buildd_id)
# check results returned
if res:
encoded = jsonpickle.encode(res)
response.content_type = "application/json"
return encoded
else:
response.status = "404 - No buildd found with this ID."
return
except Exception as e:
raise Exception('Exception encountered: ' + str(e))
return None
@app.route('/<buildd_id:int>/delete', method='GET')
@app.route('/<buildd_id:int>', method='DELETE')
@requires_auth
def delete_buildd_id(buildd_id):
try:
# Deletes a specific buildd
retval = app.config['db'].delete_buildclient(buildd_id)
if(retval == True):
response.status = "200 DELETE OK"
elif(retval == False):
response.status = "404 Cannot DELETE"
elif(retval == "23503"):
response.status = "409 " + str(psycopg2.errorcodes.lookup(retval))
else:
response.status = "500 " + str(psycopg2.errorcodes.lookup(retval))
return response.status
except Exception as e:
raise Exception('Exception encountered: ' + str(e))
return None
@app.route('/<buildd_name>/status', method='GET')
def get_buildd_status(buildd_name):
#TODO: FIXME
try:
res = app.config['controller'].buildd_command_queue_exists(buildd_name)
if res == True :
return "Active"
else :
return "Not Active"
except Exception as e:
raise Exception('Exception encountered: ' + str(e))
return None
@app.route('/<buildclient_id:int>/jobs', method='GET')
def get_buildd_jobs(buildclient_id):
try:
#Returns jobs for specified buildd
res = app.config['db'].get_buildd_jobs(buildclient_id)
# check results returned
if res:
encoded = jsonpickle.encode(res)
response.content_type = "application/json"
return encoded
else:
response.status = "404 - No buildd found with this ID."
return
except Exception as e:
raise Exception('Exception encountered: ' + str(e))
return None
@app.route('/<buildd_id:int>/:command', method='POST')
@requires_auth
def post_command(buildd_id,command):
try:
response.status = "202 - Command sent"
#TODO - CODEME
return template("POSTed command '{{command}}' to buildd: {{buildd_id}}",buildd_id=buildd_id, command=command)
except Exception as e:
raise Exception('Exception encountered: ' + str(e))
return None
return app
|