/usr/lib/python2.7/dist-packages/pybitweb/packageinstance.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 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 | #!/usr/bin/python
# 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,response,request
import jsonpickle
from bottle_basic_auth import requires_auth
import psycopg2.errorcodes
def get_packageinstance_app(settings, db):
app = Bottle()
app.config = { 'settings': settings, 'db': db}
@app.route('/<packageinstance_id:int>/togglemaster/<master:int>', method='GET')
def update_packageinstance_masterflag(packageinstance_id,master):
try:
app.config['db'].update_packageinstance_masterflag(packageinstance_id,master)
response.status = "202 - Master flag changed."
return
except Exception as e:
raise Exception('Exception encountered: ' + str(e))
return None
@app.route('/', method='GET')
@app.route('/page/<page:int>', method='GET')
def get_all_packageinstances(page = None):
try:
# Returning list of all packageinstances
if page:
packageinstances = app.config['db'].get_packageinstances(page)
else:
packageinstances = app.config['db'].get_packageinstances()
encoded = jsonpickle.encode(packageinstances)
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 packageinstances
count = app.config['db'].count_packageinstances()
encoded = jsonpickle.encode(count)
response.content_type = "application/json"
return encoded
@app.route('/<packageinstance_id:int>', method='GET')
def get_packageinstance_id(packageinstance_id):
try:
# Returns all information about a specific packageinstance
res = app.config['db'].get_packageinstance_id(packageinstance_id)
# check results returned
if res:
encoded = jsonpickle.encode(res)
response.content_type = "application/json"
return encoded
else:
response.status = "404 - No packageinstance found with this ID."
return
except Exception as e:
raise Exception('Exception encountered: ' + str(e))
return None
@app.route('/', method='POST')
@app.route('/', method='PUT')
@requires_auth
def put_packageinstance():
try:
# Add a new packageinstance.
package = request.forms.get('package')
version = request.forms.get('version')
build_env_id = request.forms.get('build_env_id')
# If thet chose "Not specified"
if (build_env_id == ""):
build_env_id = None
arch_id = request.forms.get('arch_id')
suite_id = request.forms.get('suite_id')
dist_id = request.forms.get('dist_id')
format_id = request.forms.get('format_id')
slave = request.forms.get('slave')
# This but is confusing
if slave:
#print "SLAVE NOT NULL:" + str (slave)
slave = "true"
master = "false"
else:
#print "SLAVE NULL"
slave = "false" # not slave means master
master = "true"
if package and version and arch_id and suite_id and dist_id and format_id and slave:
build_env = None
package_obj = app.config['db'].get_package_byvalues(package,version)[0]
if (build_env_id):
build_env = app.config['db'].get_build_env_id(build_env_id)
arch = app.config['db'].get_arch_id(arch_id)
suite = app.config['db'].get_suite_id(suite_id)
dist = app.config['db'].get_dist_id(dist_id)
pkg_format = app.config['db'].get_format_id(format_id)
app.config['db'].put_packageinstance(package_obj,build_env,arch,suite,dist,pkg_format,master)
else:
response.status = "400 - Required fields missing."
return
except Exception as e:
raise Exception('Exception encountered: ' + str(e))
return None
@app.route('/<packageinstance_id:int>/delete', method='GET')
@app.route('/<packageinstance_id:int>', method='DELETE')
@requires_auth
def delete_packageinstance(packageinstance_id):
try:
# Deletes a specific package instance
retval = app.config['db'].delete_packageinstance(packageinstance_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('/list', method='GET')
def get_packageinstances_filtered():
try:
response.content_type = "application/json"
#TODO - CODEME, filter by parameter (request.query.[x])
return "Returning packageinstances by filter"
except Exception as e:
raise Exception('Exception encountered: ' + str(e))
return None
@app.route('/details/:name', method='GET')
def get_packageinstance_versions(name):
try:
res = app.config['db'].get_packageinstances_byname(name)
# lists all instances of a package by name
if res:
encoded = jsonpickle.encode(res)
response.content_type = "application/json"
return encoded
else:
response.status = "404 - No packageinstances found with this name."
return
except Exception as e:
raise Exception('Exception encountered: ' + str(e))
return None
return app
|