- def getMachines(self, **kw):
- """Get the list of VMs in the database"""
- self.recache()
- return self.machines.keys()
-
- def getMirror(self, machine, path='', **kw):
- """Translate the path into its realpath equivalent, and return that
- """
- real = realpath + path
- if os.path.isdir(real):
- # The list is converted to a set so that we can handle the case
- # where there is already a .k5login in the realpath gracefully
- return routefs.Directory(set(os.listdir(real) + ['.k5login']))
- elif os.path.islink(real):
- return routefs.Symlink(os.readlink(real))
- elif os.path.isfile(real):
- return open(real).read()
- else:
- return -errno.EINVAL
-
- def getK5login(self, machine, **kw):
- """Build the ACL for a machine and turn it into a .k5login file
- """
- self.recache()
- machine = self.machines[machine]
- users = [acl.user for acl in machine.acl]
- return "\n".join(map(self.userToPrinc, users) + [''])
-
- def mirrorPath(self, path):
- """Translate a virtual path to its real path counterpart"""
- return realpath + "/".join(getParts(path)[1:])
-
- def userToPrinc(self, user):
- """Convert Kerberos v4-style names to v5-style and append a default
- realm if none is specified
- """
- if '@' in user:
- (princ, realm) = user.split('@')
- else:
- princ = user
- realm = config.authn[0].realm
-
- return princ.replace('.', '/') + '@' + realm
+ def getMachines(self, **kw):
+ self.recache()
+ return self.machines.keys()
+
+ def getMirror(self, machine, path='', **kw):
+ """Translate the path into its realpath equivalent, and return that
+ """
+ real = realpath + path
+ if os.path.isdir(real):
+ # The list is converted to a set so that we can handle the case
+ # where there is already a .k5login in the realpath gracefully
+ return routefs.Directory(set(os.listdir(real) + ['.k5login']))
+ elif os.path.islink(real):
+ return routefs.Symlink(os.readlink(real))
+ elif os.path.isfile(real):
+ return open(real).read()
+ else:
+ return -errno.EINVAL
+
+ def getK5login(self, machine, **kw):
+ self.recache()
+ machine = self.machines[machine]
+ users = [acl.user for acl in machine.acl]
+ return "\n".join(map(self.userToPrinc, users) + [''])
+
+ def mirrorPath(self, path):
+ """Translate a virtual path to its real path counterpart"""
+ return realpath + "/".join(getParts(path)[1:])
+
+ def userToPrinc(self, user):
+ """Convert Kerberos v4-style names to v5-style and append a default
+ realm if none is specified
+ """
+ if '@' in user:
+ (princ, realm) = user.split('@')
+ else:
+ princ = user
+ realm = config.authn[0].realm
+
+ return princ.replace('.', '/') + '@' + realm