aboutsummaryrefslogtreecommitdiffstats
path: root/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/users.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/users.py')
-rw-r--r--lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/users.py90
1 files changed, 0 insertions, 90 deletions
diff --git a/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/users.py b/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/users.py
deleted file mode 100644
index 953ae68f..00000000
--- a/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/users.py
+++ /dev/null
@@ -1,90 +0,0 @@
-# This file is part of Buildbot. Buildbot 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, version 2.
-#
-# 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.
-#
-# Copyright Buildbot Team Members
-
-import urllib
-from twisted.internet import defer
-from twisted.web.util import redirectTo
-from buildbot.status.web.base import HtmlResource, path_to_authzfail, \
- path_to_root, ActionResource
-
-class UsersActionResource(ActionResource):
-
- def __init__(self):
- self.action = "showUsersPage"
-
- @defer.inlineCallbacks
- def performAction(self, req):
- res = yield self.getAuthz(req).actionAllowed('showUsersPage', req)
- if not res:
- defer.returnValue(path_to_authzfail(req))
- return
- # show the table
- defer.returnValue(path_to_root(req) + "users")
-
-# /users/$uid
-class OneUserResource(HtmlResource):
- addSlash = False
- def __init__(self, uid):
- HtmlResource.__init__(self)
- self.uid = int(uid)
-
- def getPageTitle (self, req):
- return "Buildbot User: %s" % self.uid
-
- def content(self, request, ctx):
- status = self.getStatus(request)
-
- d = status.master.db.users.getUser(self.uid)
- def cb(usdict):
- ctx['user_identifier'] = usdict['identifier']
- user = ctx['user'] = {}
- for attr in usdict:
- if attr not in ['uid', 'identifier', 'bb_password']:
- user[attr] = usdict[attr]
-
- template = request.site.buildbot_service.templates.get_template("user.html")
- data = template.render(**ctx)
- return data
- d.addCallback(cb)
- return d
-
-# /users
-class UsersResource(HtmlResource):
- pageTitle = "Users"
- addSlash = True
-
- def __init__(self):
- HtmlResource.__init__(self)
-
- def getChild(self, path, req):
- return OneUserResource(path)
-
- @defer.inlineCallbacks
- def content(self, req, ctx):
- res = yield self.getAuthz(req).actionAllowed('showUsersPage', req)
- if not res:
- defer.returnValue(redirectTo(path_to_authzfail(req), req))
- return
-
- s = self.getStatus(req)
-
- usdicts = yield s.master.db.users.getUsers()
- users = ctx['users'] = usdicts
-
- for user in users:
- user['user_link'] = req.childLink(urllib.quote(str(user['uid']), ''))
- template = req.site.buildbot_service.templates.get_template(
- "users.html")
- defer.returnValue(template.render(**ctx))