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.
128 lines
3.6 KiB
128 lines
3.6 KiB
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
* Copyright (C) 2009, Michael "Svedrin" Ziegler <diese-addy@funzt-halt.net>
|
|
*
|
|
* Mumble-Django is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This package is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
"""
|
|
|
|
import os
|
|
|
|
from mumble import models
|
|
from mumble.mctl import *
|
|
|
|
def find_in_dicts( keys, conf, default, valueIfNotFound=None ):
|
|
if not isinstance( keys, tuple ):
|
|
keys = ( keys, );
|
|
|
|
for keyword in keys:
|
|
if keyword in conf:
|
|
return conf[keyword];
|
|
|
|
for keyword in keys:
|
|
keyword = keyword.lower();
|
|
if keyword in default:
|
|
return default[keyword];
|
|
|
|
return valueIfNotFound;
|
|
|
|
|
|
def find_existing_instances( **kwargs ):
|
|
if "verbosity" in kwargs:
|
|
v = kwargs['verbosity'];
|
|
else:
|
|
v = 1;
|
|
|
|
if v > 1:
|
|
print "Starting Mumble servers and players detection now.";
|
|
|
|
triedEnviron = False;
|
|
online = False;
|
|
while not online:
|
|
if not triedEnviron and 'MURMUR_CONNSTR' in os.environ:
|
|
dbusName = os.environ['MURMUR_CONNSTR'];
|
|
triedEnviron = True;
|
|
else:
|
|
print "--- Murmur connection info ---"
|
|
print " 1) DBus -- net.sourceforge.mumble.murmur"
|
|
print " 2) ICE -- Meta:tcp -h 127.0.0.1 -p 6502"
|
|
print "Enter 1 or 2 for the defaults above, nothing to skip Server detection,"
|
|
print "and if the defaults do not fit your needs, enter the correct string."
|
|
print "Whether to use DBus or ICE will be detected automatically from the"
|
|
print "string's format."
|
|
print
|
|
|
|
dbusName = raw_input( "Service string: " ).strip();
|
|
|
|
if not dbusName:
|
|
if v:
|
|
print 'Be sure to run "python manage.py syncdb" with Murmur running before trying to use this app! Otherwise, existing Murmur servers won\'t be configurable!';
|
|
return False;
|
|
elif dbusName == "1":
|
|
dbusName = "net.sourceforge.mumble.murmur";
|
|
elif dbusName == "2":
|
|
dbusName = "Meta:tcp -h 127.0.0.1 -p 6502";
|
|
|
|
try:
|
|
ctl = MumbleCtlBase.newInstance( dbusName );
|
|
except Exception, instance:
|
|
if v:
|
|
print "Unable to connect using name %s. The error was:" % dbusName;
|
|
print instance;
|
|
print
|
|
else:
|
|
online = True;
|
|
if v > 1:
|
|
print "Successfully connected to Murmur via connection string %s, using %s." % ( dbusName, ctl.method );
|
|
|
|
servIDs = ctl.getAllServers();
|
|
|
|
for id in servIDs:
|
|
if v > 1:
|
|
print "Checking Murmur instance with id %d." % id;
|
|
# first check that the server has not yet been inserted into the DB
|
|
try:
|
|
instance = models.Mumble.objects.get( dbus=dbusName, srvid=id );
|
|
except models.Mumble.DoesNotExist:
|
|
values = {
|
|
"srvid": id,
|
|
"dbus": dbusName,
|
|
}
|
|
|
|
if v > 1:
|
|
print 'Found new Murmur instance... ',
|
|
|
|
# now create a model for the record set.
|
|
instance = models.Mumble( **values );
|
|
else:
|
|
if v > 1:
|
|
print "Syncing Murmur instance... ",
|
|
|
|
instance.configureFromMurmur();
|
|
|
|
if v > 1:
|
|
print instance.name;
|
|
|
|
instance.save( dontConfigureMurmur=True );
|
|
|
|
# Now search for players on this server that have not yet been registered
|
|
if instance.booted:
|
|
if v > 1:
|
|
print "Looking for registered Players on Server id %d." % id;
|
|
instance.readUsersFromMurmur( verbose=v );
|
|
elif v > 1:
|
|
print "This server is not running, can't sync players.";
|
|
|
|
if v > 1:
|
|
print "Successfully finished Servers and Players detection.";
|
|
return True;
|
|
|
|
|