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
Revert r1154 and instead apply the patch in cache_acls so that an error is
[invirt/packages/invirt-web.git]
/
code
/
webcommon.py
diff --git
a/code/webcommon.py
b/code/webcommon.py
index
e82f790
..
9052a4e
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):
@@
-44,9
+45,11
@@
class State(object):
def getMachines(self):
if self.isadmin:
def getMachines(self):
if self.isadmin:
- return Machine.select()
+ return Machine.query().join('acl').filter_by(
+ database.or_(MachineAccess.c.user == self.username,
+ Machine.c.adminable == True))
else:
else:
- return Machine.query().join('acl').select_by(user=self.username)
+ return Machine.query().join('acl').filter_by(user=self.username)
machines = cachedproperty(getMachines)
xmlist_raw = cachedproperty(lambda self: controls.getList())
machines = cachedproperty(getMachines)
xmlist_raw = cachedproperty(lambda self: controls.getList())