projects
/
invirt/packages/invirt-web.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
using mako-render instead of mako; fixed a typo in svn.mako
[invirt/packages/invirt-web.git]
/
code
/
webcommon.py
diff --git
a/code/webcommon.py
b/code/webcommon.py
index
0449046
..
eaf533c
100644
(file)
--- a/
code/webcommon.py
+++ b/
code/webcommon.py
@@
-1,6
+1,7
@@
"""Exceptions for the web interface."""
import time
"""Exceptions for the web interface."""
import time
+from invirt import database
from invirt.database import Machine, MachineAccess
class MyException(Exception):
from invirt.database import Machine, MachineAccess
class MyException(Exception):
@@
-38,13
+39,15
@@
def cachedproperty(func):
class State(object):
"""State for a request"""
class State(object):
"""State for a request"""
- def __init__(self, user, overlord=False):
+ def __init__(self, user, isadmin=False):
self.username = user
self.username = user
- self.overlord = overlord
+ self.isadmin = isadmin
def getMachines(self):
def getMachines(self):
- if self.overlord:
- return Machine.select()
+ if self.isadmin:
+ return Machine.query().join('acl').select_by(
+ database.or_(MachineAccess.c.user == self.username,
+ Machine.c.adminable == True))
else:
return Machine.query().join('acl').select_by(user=self.username)
else:
return Machine.query().join('acl').select_by(user=self.username)