|
@ -113,25 +113,6 @@ class MumbleCtlIce_118(MumbleCtlBase): |
|
|
|
|
|
|
|
|
return ret |
|
|
return ret |
|
|
|
|
|
|
|
|
def getACL(self, srvid, identifier): |
|
|
|
|
|
import Murmur |
|
|
|
|
|
acls = self._getIceServerObject(srvid).getACL(identifier) |
|
|
|
|
|
ret = [] |
|
|
|
|
|
for x in acls: |
|
|
|
|
|
if isinstance(x, list): |
|
|
|
|
|
tmp = [] |
|
|
|
|
|
for y in x: |
|
|
|
|
|
if y.__class__ is Murmur.ACL: |
|
|
|
|
|
tmp.append([y.applyHere, y.applySubs, y.inherited, y.playerid, self.setUnicodeFlag(y.group), y.allow, y.deny]) |
|
|
|
|
|
elif y.__class__ is Murmur.Group: |
|
|
|
|
|
tmp.append([self.setUnicodeFlag(y.name), y.inherited, y.inherit, y.inheritable, y.add, y.remove, y.members]) |
|
|
|
|
|
|
|
|
|
|
|
ret.append(tmp) |
|
|
|
|
|
else: |
|
|
|
|
|
ret.append(x) |
|
|
|
|
|
|
|
|
|
|
|
return ret |
|
|
|
|
|
|
|
|
|
|
|
def getDefaultConf(self): |
|
|
def getDefaultConf(self): |
|
|
return self.setUnicodeFlag(self.meta.getDefaultConf()) |
|
|
return self.setUnicodeFlag(self.meta.getDefaultConf()) |
|
|
|
|
|
|
|
@ -175,6 +156,25 @@ class MumbleCtlIce_118(MumbleCtlBase): |
|
|
# update*r*egistration r is lowercase... |
|
|
# update*r*egistration r is lowercase... |
|
|
return self._getIceServerObject(srvid).updateregistration(user) |
|
|
return self._getIceServerObject(srvid).updateregistration(user) |
|
|
|
|
|
|
|
|
|
|
|
def getACL(self, srvid, channelid): |
|
|
|
|
|
import Murmur |
|
|
|
|
|
acls = self._getIceServerObject(srvid).getACL(channelid) |
|
|
|
|
|
ret = [] |
|
|
|
|
|
for x in acls: |
|
|
|
|
|
if isinstance(x, list): |
|
|
|
|
|
tmp = [] |
|
|
|
|
|
for y in x: |
|
|
|
|
|
if y.__class__ is Murmur.ACL: |
|
|
|
|
|
tmp.append([y.applyHere, y.applySubs, y.inherited, y.playerid, self.setUnicodeFlag(y.group), y.allow, y.deny]) |
|
|
|
|
|
elif y.__class__ is Murmur.Group: |
|
|
|
|
|
tmp.append([self.setUnicodeFlag(y.name), y.inherited, y.inherit, y.inheritable, y.add, y.remove, y.members]) |
|
|
|
|
|
|
|
|
|
|
|
ret.append(tmp) |
|
|
|
|
|
else: |
|
|
|
|
|
ret.append(x) |
|
|
|
|
|
|
|
|
|
|
|
return ret |
|
|
|
|
|
|
|
|
def setACL(self, srvid, acl): |
|
|
def setACL(self, srvid, acl): |
|
|
import Murmur |
|
|
import Murmur |
|
|
|
|
|
|
|
@ -300,9 +300,9 @@ class MumbleCtlIce_120(MumbleCtlIce_118): |
|
|
user['pw'] = password.encode( "UTF-8" ) |
|
|
user['pw'] = password.encode( "UTF-8" ) |
|
|
return self._getIceServerObject( srvid ).updateRegistration( mumbleid, user ) |
|
|
return self._getIceServerObject( srvid ).updateRegistration( mumbleid, user ) |
|
|
|
|
|
|
|
|
def getACL(self, srvid, identifier): |
|
|
|
|
|
|
|
|
def getACL(self, srvid, channelid): |
|
|
import Murmur |
|
|
import Murmur |
|
|
acls = self._getIceServerObject(srvid).getACL(identifier) |
|
|
|
|
|
|
|
|
acls = self._getIceServerObject(srvid).getACL(channelid) |
|
|
ret = [] |
|
|
ret = [] |
|
|
for x in acls: |
|
|
for x in acls: |
|
|
if isinstance(x, list): |
|
|
if isinstance(x, list): |
|
@ -348,3 +348,5 @@ class MumbleCtlIce_120(MumbleCtlIce_118): |
|
|
newgroups.append( new_group ); |
|
|
newgroups.append( new_group ); |
|
|
|
|
|
|
|
|
self._getIceServerObject(srvid).setACL( acl.channelId, newacls, newgroups, acl.inherit ); |
|
|
self._getIceServerObject(srvid).setACL( acl.channelId, newacls, newgroups, acl.inherit ); |
|
|
|
|
|
|
|
|
|
|
|
|