Forked mumble-django project from https://bitbucket.org/Svedrin/mumble-django
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
220 lines
6.7 KiB
220 lines
6.7 KiB
""" This file is part of the mumble-django application.
|
|
|
|
Copyright (C) 2009, Michael "Svedrin" Ziegler <diese-addy@funzt-halt.net>
|
|
|
|
All rights reserved.
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
modification, are permitted provided that the following conditions
|
|
are met:
|
|
|
|
- Redistributions of source code must retain the above copyright notice,
|
|
this list of conditions and the following disclaimer.
|
|
- Redistributions in binary form must reproduce the above copyright notice,
|
|
this list of conditions and the following disclaimer in the documentation
|
|
and/or other materials provided with the distribution.
|
|
- Neither the name of the Mumble Developers nor the names of its
|
|
contributors may be used to endorse or promote products derived from this
|
|
software without specific prior written permission.
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
|
|
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
"""
|
|
|
|
import dbus
|
|
|
|
import datetime
|
|
from time import time
|
|
|
|
|
|
# base = ice.stringToProxy( "Meta:tcp -h 127.0.0.1 -p 6502" );
|
|
# srv = Murmur.ServerPrx.checkedCast( base );
|
|
# met = Murmur.MetaPrx.checkedCast( base );
|
|
|
|
class mmServer( object ):
|
|
# channels = dict();
|
|
# players = dict();
|
|
# id = int();
|
|
# rootName = str();
|
|
|
|
def __init__( self, serverID, serverObj, rootName = '' ):
|
|
self.dbusObj = serverObj;
|
|
self.channels = dict();
|
|
self.players = dict();
|
|
self.id = serverID;
|
|
self.rootName = rootName;
|
|
|
|
links = dict();
|
|
|
|
for theChan in serverObj.getChannels():
|
|
# Channels - Fields: 0 = ID, 1 = Name, 2 = Parent-ID, 3 = Links
|
|
|
|
if( theChan[2] == -1 ):
|
|
# No parent
|
|
self.channels[theChan[0]] = mmChannel( theChan );
|
|
else:
|
|
self.channels[theChan[0]] = mmChannel( theChan, self.channels[theChan[2]] );
|
|
|
|
self.channels[theChan[0]].serverId = self.id;
|
|
|
|
# process links - if the linked channels are known, link; else save their ids to link later
|
|
for linked in theChan[3]:
|
|
if linked in self.channels:
|
|
self.channels[theChan[0]].linked.append( self.channels[linked] );
|
|
else:
|
|
if linked not in links:
|
|
links[linked] = list();
|
|
links[linked].append( self.channels[theChan[0]] );
|
|
#print "Saving link: %s <- %s" % ( linked, self.channels[theChan[0]] );
|
|
|
|
# check if earlier round trips saved channel ids to be linked to the current channel
|
|
if theChan[0] in links:
|
|
for targetChan in links[theChan[0]]:
|
|
targetChan.linked.append( self.channels[theChan[0]] );
|
|
|
|
if self.rootName:
|
|
self.channels[0].name = self.rootName;
|
|
|
|
for thePlayer in serverObj.getPlayers():
|
|
# Players - Fields: 0 = UserID, 6 = ChannelID
|
|
self.players[ thePlayer[0] ] = mmPlayer( thePlayer, self.channels[ thePlayer[6] ] );
|
|
|
|
|
|
playerCount = property(
|
|
lambda self: len( self.players ),
|
|
None
|
|
);
|
|
|
|
def is_server( self ):
|
|
return True;
|
|
def is_channel( self ):
|
|
return False;
|
|
def is_player( self ):
|
|
return False;
|
|
|
|
def __str__( self ):
|
|
return '<Server "%s" (%d)>' % ( self.rootName, self.id );
|
|
|
|
def visit( self, callback, lvl = 0 ):
|
|
if not callable( callback ):
|
|
raise Exception, "a callback should be callable...";
|
|
|
|
# call callback first on myself, then visit my root chan
|
|
callback( self, lvl );
|
|
self.channels[0].visit( callback, lvl + 1 );
|
|
|
|
|
|
class mmChannel( object ):
|
|
# channels = list();
|
|
# subchans = list();
|
|
# id = int();
|
|
# name = str();
|
|
# parent = mmChannel();
|
|
# linked = list();
|
|
# linkedIDs = list();
|
|
|
|
def __init__( self, channelObj, parentChan = None ):
|
|
self.players = list();
|
|
self.subchans = list();
|
|
self.linked = list();
|
|
|
|
(self.id, self.name, parent, self.linkedIDs ) = channelObj;
|
|
|
|
self.parent = parentChan;
|
|
if self.parent is not None:
|
|
self.parent.subchans.append( self );
|
|
self.serverId = self.parent.serverId;
|
|
|
|
def parentChannels( self ):
|
|
if self.parent is None or self.parent.is_server() or self.parent.id == 0:
|
|
return [];
|
|
return self.parent.parentChannels() + [self.parent.name];
|
|
|
|
def is_server( self ):
|
|
return False;
|
|
def is_channel( self ):
|
|
return True;
|
|
def is_player( self ):
|
|
return False;
|
|
|
|
playerCount = property(
|
|
lambda self: len( self.players ) + sum( [ chan.playerCount for chan in self.subchans ] ),
|
|
None
|
|
);
|
|
|
|
def __str__( self ):
|
|
return '<Channel "%s" (%d)>' % ( self.name, self.id );
|
|
|
|
def visit( self, callback, lvl = 0 ):
|
|
# call callback on myself, then visit my subchans, then my players
|
|
callback( self, lvl );
|
|
for sc in self.subchans:
|
|
sc.visit( callback, lvl + 1 );
|
|
for pl in self.players:
|
|
pl.visit( callback, lvl + 1 );
|
|
|
|
|
|
|
|
class mmPlayer( object ):
|
|
# muted = bool;
|
|
# deafened = bool;
|
|
# suppressed = bool;
|
|
# selfmuted = bool;
|
|
# selfdeafened = bool;
|
|
|
|
# channel = mmChannel();
|
|
# dbaseid = int();
|
|
# userid = int();
|
|
# name = str();
|
|
# onlinesince = time();
|
|
# bytesPerSec = int();
|
|
|
|
# mumbleuser = models.MumbleUser();
|
|
|
|
def __init__( self, playerObj, playerChan ):
|
|
( self.userid, self.muted, self.deafened, self.suppressed, self.selfmuted, self.selfdeafened, chanID, self.dbaseid, self.name, onlinetime, self.bytesPerSec ) = playerObj;
|
|
self.onlinesince = datetime.datetime.fromtimestamp( float( time() - onlinetime ) );
|
|
self.channel = playerChan;
|
|
self.channel.players.append( self );
|
|
|
|
if self.isAuthed():
|
|
from models import Mumble, MumbleUser
|
|
srvInstance = Mumble.objects.get( srvid=self.channel.serverId );
|
|
try:
|
|
self.mumbleuser = MumbleUser.objects.get( mumbleid=self.dbaseid, server=srvInstance );
|
|
except MumbleUser.DoesNotExist:
|
|
self.mumbleuser = None;
|
|
else:
|
|
self.mumbleuser = None;
|
|
|
|
def __str__( self ):
|
|
return '<Player "%s" (%d, %d)>' % ( self.name, self.userid, self.dbaseid );
|
|
|
|
def isAuthed( self ):
|
|
return self.dbaseid != -1;
|
|
|
|
def is_server( self ):
|
|
return False;
|
|
def is_channel( self ):
|
|
return False;
|
|
def is_player( self ):
|
|
return True;
|
|
|
|
# kept for compatibility to mmChannel (useful for traversal funcs)
|
|
playerCount = property(
|
|
lambda self: -1,
|
|
None
|
|
);
|
|
|
|
def visit( self, callback, lvl = 0 ):
|
|
callback( self, lvl );
|
|
|