X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-web.git/blobdiff_plain/daa95318e6cee597593b33f77a99cd224c8be893..bf27ca1d371e1bb6b49c7e7d47438985e1399d24:/code/webcommon.py diff --git a/code/webcommon.py b/code/webcommon.py index ce0ddc7..0e3fd1d 100644 --- a/code/webcommon.py +++ b/code/webcommon.py @@ -1,7 +1,8 @@ """Exceptions for the web interface.""" import time -from sipb_xen_database import Machine, MachineAccess +from invirt import database +from invirt.database import Machine, MachineAccess class MyException(Exception): """Base class for my exceptions""" @@ -38,15 +39,17 @@ def cachedproperty(func): class State(object): """State for a request""" - def __init__(self, user, overlord=False): + def __init__(self, user, isadmin=False): self.username = user - self.overlord = overlord + self.isadmin = isadmin def getMachines(self): - if self.overlord: - return Machine.select() + if self.isadmin: + return Machine.query().join('acl').filter( + database.or_(MachineAccess.user==self.username, + Machine.adminable==True)) 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())