/usr/share/pyshared/bitten/admin.py is in trac-bitten 0.6+final-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 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 | # -*- coding: utf-8 -*-
#
# Copyright (C) 2007-2010 Edgewall Software
# All rights reserved.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution. The terms
# are also available at http://bitten.edgewall.org/wiki/License.
"""Implementation of the web administration interface."""
from pkg_resources import require, DistributionNotFound
import re
from trac.core import *
from trac.admin import IAdminPanelProvider
from trac.web.chrome import add_stylesheet, add_script, add_warning, add_notice
from bitten.model import BuildConfig, TargetPlatform
from bitten.recipe import Recipe, InvalidRecipeError
from bitten.util import xmlio
class BuildMasterAdminPageProvider(Component):
"""Web administration panel for configuring the build master."""
implements(IAdminPanelProvider)
# IAdminPanelProvider methods
def get_admin_panels(self, req):
if req.perm.has_permission('BUILD_ADMIN'):
yield ('bitten', 'Builds', 'master', 'Master Settings')
def render_admin_panel(self, req, cat, page, path_info):
from bitten.master import BuildMaster
master = BuildMaster(self.env)
if req.method == 'POST':
self._save_config_changes(req, master)
req.redirect(req.abs_href.admin(cat, page))
data = {'master': master}
add_stylesheet(req, 'bitten/admin.css')
return 'bitten_admin_master.html', data
# Internal methods
def _save_config_changes(self, req, master):
changed = False
build_all = 'build_all' in req.args
if build_all != master.build_all:
self.config['bitten'].set('build_all',
build_all and 'yes' or 'no')
changed = True
adjust_timestamps = 'adjust_timestamps' in req.args
if adjust_timestamps != master.adjust_timestamps:
self.config['bitten'].set('adjust_timestamps',
adjust_timestamps and 'yes' or 'no')
changed = True
stabilize_wait = int(req.args.get('stabilize_wait', 0))
if stabilize_wait != master.stabilize_wait:
self.config['bitten'].set('stabilize_wait', str(stabilize_wait))
changed = True
slave_timeout = int(req.args.get('slave_timeout', 0))
if slave_timeout != master.slave_timeout:
self.config['bitten'].set('slave_timeout', str(slave_timeout))
changed = True
quick_status = 'quick_status' in req.args
if quick_status != master.quick_status:
self.config['bitten'].set('quick_status',
quick_status and 'yes' or 'no')
changed = True
logs_dir = req.args.get('logs_dir', None)
if logs_dir != master.logs_dir:
self.config['bitten'].set('logs_dir', str(logs_dir))
changed = True
if changed:
self.config.save()
return master
class BuildConfigurationsAdminPageProvider(Component):
"""Web administration panel for configuring the build master."""
implements(IAdminPanelProvider)
# IAdminPanelProvider methods
def get_admin_panels(self, req):
if req.perm.has_permission('BUILD_MODIFY'):
yield ('bitten', 'Builds', 'configs', 'Configurations')
def render_admin_panel(self, req, cat, page, path_info):
data = {}
# Analyze url
try:
config_name, platform_id = path_info.split('/', 1)
except:
config_name = path_info
platform_id = None
if config_name: # Existing build config
warnings = []
if platform_id or (
# Editing or creating one of the config's target platforms
req.method == 'POST' and 'new' in req.args):
if platform_id: # Editing target platform
platform_id = int(platform_id)
platform = TargetPlatform.fetch(self.env, platform_id)
if req.method == 'POST':
if 'cancel' in req.args or \
self._update_platform(req, platform):
req.redirect(req.abs_href.admin(cat, page,
config_name))
else: # creating target platform
platform = self._create_platform(req, config_name)
req.redirect(req.abs_href.admin(cat, page,
config_name, platform.id))
# Set up template variables
data['platform'] = {
'id': platform.id, 'name': platform.name,
'exists': platform.exists,
'rules': [
{'property': propname, 'pattern': pattern}
for propname, pattern in platform.rules
] or [('', '')]
}
else: # Editing existing build config itself
config = BuildConfig.fetch(self.env, config_name)
platforms = list(TargetPlatform.select(self.env,
config=config.name))
if req.method == 'POST':
if 'remove' in req.args: # Remove selected platforms
self._remove_platforms(req)
add_notice(req, "Target Platform(s) Removed.")
req.redirect(req.abs_href.admin(cat, page, config.name))
elif 'save' in req.args: # Save this build config
warnings = self._update_config(req, config)
if not warnings:
add_notice(req, "Configuration Saved.")
req.redirect(req.abs_href.admin(cat, page, config.name))
for warning in warnings:
add_warning(req, warning)
# FIXME: Deprecation notice for old namespace.
# Remove notice code when migration to new namespace is complete
if 'http://bitten.cmlenz.net/tools/' in config.recipe:
add_notice(req, "Recipe uses a deprecated namespace. "
"Replace 'http://bitten.cmlenz.net/tools/' with "
"'http://bitten.edgewall.org/tools/'.")
# Add a notice if configuration is not active
if not warnings and not config.active and config.recipe:
add_notice(req, "Configuration is not active. Activate "
"from main 'Configurations' listing to enable it.")
# Prepare template variables
data['config'] = {
'name': config.name, 'label': config.label or config.name,
'active': config.active, 'path': config.path,
'min_rev': config.min_rev, 'max_rev': config.max_rev,
'description': config.description,
'recipe': config.recipe,
'platforms': [{
'name': platform.name,
'id': platform.id,
'href': req.href.admin('bitten', 'configs', config.name,
platform.id),
'rules': [{'property': propname, 'pattern': pattern}
for propname, pattern in platform.rules]
} for platform in platforms]
}
else: # At the top level build config list
if req.method == 'POST':
if 'add' in req.args: # Add build config
config = self._create_config(req)
req.redirect(req.abs_href.admin(cat, page, config.name))
elif 'remove' in req.args: # Remove selected build configs
self._remove_configs(req)
elif 'apply' in req.args: # Update active state of configs
self._activate_configs(req)
req.redirect(req.abs_href.admin(cat, page))
# Prepare template variables
configs = []
for config in BuildConfig.select(self.env, include_inactive=True):
configs.append({
'name': config.name, 'label': config.label or config.name,
'active': config.active, 'path': config.path,
'min_rev': config.min_rev, 'max_rev': config.max_rev,
'href': req.href.admin('bitten', 'configs', config.name),
'recipe': config.recipe and True or False
})
data['configs'] = sorted(configs, key=lambda x:x['label'].lower())
add_stylesheet(req, 'bitten/admin.css')
add_script(req, 'common/js/suggest.js')
return 'bitten_admin_configs.html', data
# Internal methods
def _activate_configs(self, req):
req.perm.assert_permission('BUILD_MODIFY')
active = req.args.get('active') or []
active = isinstance(active, list) and active or [active]
db = self.env.get_db_cnx()
for config in list(BuildConfig.select(self.env, db=db,
include_inactive=True)):
config.active = config.name in active
config.update(db=db)
db.commit()
def _create_config(self, req):
req.perm.assert_permission('BUILD_CREATE')
config = BuildConfig(self.env)
warnings = self._update_config(req, config)
if warnings:
if len(warnings) == 1:
raise TracError(warnings[0], 'Add Configuration')
else:
raise TracError('Errors: %s' % ' '.join(warnings),
'Add Configuration')
return config
def _remove_configs(self, req):
req.perm.assert_permission('BUILD_DELETE')
sel = req.args.get('sel')
if not sel:
raise TracError('No configuration selected')
sel = isinstance(sel, list) and sel or [sel]
db = self.env.get_db_cnx()
for name in sel:
config = BuildConfig.fetch(self.env, name, db=db)
if not config:
raise TracError('Configuration %r not found' % name)
config.delete(db=db)
db.commit()
def _update_config(self, req, config):
warnings = []
req.perm.assert_permission('BUILD_MODIFY')
name = req.args.get('name')
if not name:
warnings.append('Missing required field "name".')
if name and not re.match(r'^[\w.-]+$', name):
warnings.append('The field "name" may only contain letters, '
'digits, periods, or dashes.')
repos = self.env.get_repository(authname=req.authname)
if not repos:
warnings.append('No "(default)" Repository: Add a repository or '
'alias named "(default)" to Trac.')
path = req.args.get('path', '')
min_rev = req.args.get('min_rev') or None
max_rev = req.args.get('max_rev') or None
if repos:
path = repos.normalize_path(path)
try:
node = repos.get_node(path, max_rev)
assert node.isdir, '%s is not a directory' % node.path
except (AssertionError, TracError), e:
warnings.append('Invalid Repository Path: "%s" does not exist '
'within the "(default)" repository.' % path)
if min_rev:
try:
repos.get_node(path, min_rev)
except TracError, e:
warnings.append('Invalid Oldest Revision: %s.' % unicode(e))
recipe_xml = req.args.get('recipe', '')
if recipe_xml:
try:
Recipe(xmlio.parse(recipe_xml)).validate()
except xmlio.ParseError, e:
warnings.append('Failure parsing recipe: %s.' % unicode(e))
except InvalidRecipeError, e:
warnings.append('Invalid Recipe: %s.' % unicode(e))
config.name = name
config.path = path
config.recipe = recipe_xml
config.min_rev = min_rev
config.max_rev = max_rev
config.label = req.args.get('label', config.name)
config.description = req.args.get('description', '')
if warnings: # abort
return warnings
if config.exists:
config.update()
else:
config.insert()
return []
def _create_platform(self, req, config_name):
req.perm.assert_permission('BUILD_MODIFY')
name = req.args.get('platform_name')
if not name:
raise TracError('Missing required field "name"', 'Missing field')
platform = TargetPlatform(self.env, config=config_name, name=name)
platform.insert()
return platform
def _remove_platforms(self, req):
req.perm.assert_permission('BUILD_MODIFY')
sel = req.args.get('sel')
if not sel:
raise TracError('No platform selected')
sel = isinstance(sel, list) and sel or [sel]
db = self.env.get_db_cnx()
for platform_id in sel:
platform = TargetPlatform.fetch(self.env, platform_id, db=db)
if not platform:
raise TracError('Target platform %r not found' % platform_id)
platform.delete(db=db)
db.commit()
def _update_platform(self, req, platform):
platform.name = req.args.get('name')
properties = [int(key[9:]) for key in req.args.keys()
if key.startswith('property_')]
properties.sort()
patterns = [int(key[8:]) for key in req.args.keys()
if key.startswith('pattern_')]
patterns.sort()
platform.rules = [(req.args.get('property_%d' % property).strip(),
req.args.get('pattern_%d' % pattern).strip())
for property, pattern in zip(properties, patterns)
if req.args.get('property_%d' % property)]
if platform.exists:
platform.update()
else:
platform.insert()
add_rules = [int(key[9:]) for key in req.args.keys()
if key.startswith('add_rule_')]
if add_rules:
platform.rules.insert(add_rules[0] + 1, ('', ''))
return False
rm_rules = [int(key[8:]) for key in req.args.keys()
if key.startswith('rm_rule_')]
if rm_rules:
if rm_rules[0] < len(platform.rules):
del platform.rules[rm_rules[0]]
return False
return True
|