mirror of
https://github.com/nikdoof/python-ts3.git
synced 2025-12-17 11:59:27 +00:00
Add in defines from ServerQuery manual, move ts3.py into a package
This commit is contained in:
289
ts3/__init__.py
Normal file
289
ts3/__init__.py
Normal file
@@ -0,0 +1,289 @@
|
||||
# Python TS3 Library (python-ts3)
|
||||
#
|
||||
# Copyright (c) 2011, Andrew Williams
|
||||
# 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 <organization> 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 <COPYRIGHT HOLDER> 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 time
|
||||
import telnetlib
|
||||
import logging
|
||||
|
||||
from defines import *
|
||||
|
||||
__version__ = "0.1"
|
||||
__license__ = "BSD 3-Clause"
|
||||
__copyright__ = "Copyright 2011, Andrew Williams"
|
||||
__author__ = "Andrew Williams, Krzysztof Jagiello"
|
||||
|
||||
class ConnectionError(Exception):
|
||||
def __init__(self, ip, port):
|
||||
self.ip = ip
|
||||
self.port = port
|
||||
|
||||
def __str__():
|
||||
return 'Error connecting to host %s port %s.' % (self.ip, self.port,)
|
||||
|
||||
class NoConnection(Exception):
|
||||
def __str__():
|
||||
return 'No connection established.' % (self.ip, self.port,)
|
||||
|
||||
ts3_escape = { "\\": r'\\',
|
||||
'/': r"\/",
|
||||
' ': r'\s',
|
||||
'|': r'\p',
|
||||
"\a": r'\a',
|
||||
"\b": r'\b',
|
||||
"\f": r'\f',
|
||||
"\n": r'\n',
|
||||
"\r": r'\r',
|
||||
"\t": r'\t',
|
||||
"\v": r'\v' }
|
||||
|
||||
class TS3Response():
|
||||
def __init__(self, response, data):
|
||||
self.response = TS3Proto.parse_command(response)
|
||||
self.data = TS3Proto.parse_command(data)
|
||||
|
||||
if isinstance(self.data, dict):
|
||||
if self.data:
|
||||
self.data = [self.data]
|
||||
else:
|
||||
self.data = []
|
||||
|
||||
@property
|
||||
def is_successful(self):
|
||||
return self.response['keys']['msg'] == 'ok'
|
||||
|
||||
class TS3Proto():
|
||||
def connect(self, ip, port, timeout=5):
|
||||
try:
|
||||
self._telnet = telnetlib.Telnet(ip, port)
|
||||
except telnetlib.socket.error:
|
||||
raise ConnectionError(ip, port)
|
||||
|
||||
self._timeout = timeout
|
||||
self._connected = False
|
||||
|
||||
data = self._telnet.read_until("\n\r", self._timeout)
|
||||
|
||||
if data.endswith("TS3\n\r"):
|
||||
self._connected = True
|
||||
|
||||
return self._connected
|
||||
|
||||
def disconnect(self):
|
||||
self.check_connection()
|
||||
|
||||
self.send_command("quit")
|
||||
self._telnet.close()
|
||||
|
||||
self._connected = False
|
||||
|
||||
def send_command(self, command, keys=None, opts=None):
|
||||
self.check_connection()
|
||||
|
||||
self._telnet.write("%s\n\r" % self.construct_command(command, keys=keys, opts=opts))
|
||||
|
||||
data = ""
|
||||
response = self._telnet.read_until("\n\r", self._timeout)
|
||||
|
||||
if not response.startswith("error"):
|
||||
# what we just got was extra data
|
||||
data = response
|
||||
response = self._telnet.read_until("\n\r", self._timeout)
|
||||
|
||||
return TS3Response(response, data)
|
||||
|
||||
def check_connection(self):
|
||||
if not self.is_connected:
|
||||
raise NoConnectionError
|
||||
|
||||
def is_connected(self):
|
||||
return self._connected
|
||||
|
||||
def construct_command(self, command, keys=None, opts=None):
|
||||
"""
|
||||
Constructs a TS3 formatted command string
|
||||
|
||||
Keys can have a single nested list to construct a nested parameter
|
||||
|
||||
@param command: Command list
|
||||
@type command: string
|
||||
@param keys: Key/Value pairs
|
||||
@type keys: dict
|
||||
@param opts: Options
|
||||
@type opts: list
|
||||
"""
|
||||
|
||||
cstr = [command]
|
||||
|
||||
# Add the keys and values, escape as needed
|
||||
if keys:
|
||||
for key in keys:
|
||||
if isinstance(keys[key], list):
|
||||
ncstr = []
|
||||
for nest in keys[key]:
|
||||
ncstr.append("%s=%s" % (key, self._escape_str(nest)))
|
||||
cstr.append("|".join(ncstr))
|
||||
else:
|
||||
cstr.append("%s=%s" % (key, self._escape_str(keys[key])))
|
||||
|
||||
# Add in options
|
||||
if opts:
|
||||
for opt in opts:
|
||||
cstr.append("-%s" % opt)
|
||||
|
||||
return " ".join(cstr)
|
||||
|
||||
@staticmethod
|
||||
def parse_command(commandstr):
|
||||
"""
|
||||
Parses a TS3 command string into command/keys/opts tuple
|
||||
|
||||
@param commandstr: Command string
|
||||
@type commandstr: string
|
||||
"""
|
||||
if commandstr.strip() == "":
|
||||
return {}
|
||||
|
||||
if len(commandstr.split('|')) > 1:
|
||||
vals = []
|
||||
for cmd in commandstr.split('|'):
|
||||
vals.append(TS3Proto.parse_command(cmd))
|
||||
return vals
|
||||
|
||||
cmdlist = commandstr.strip().split(' ')
|
||||
command = None
|
||||
keys = {}
|
||||
opts = []
|
||||
|
||||
for key in cmdlist:
|
||||
v = key.strip().split('=')
|
||||
if len(v) > 1:
|
||||
# Key
|
||||
if len > 2:
|
||||
# Fix the stupidities in TS3 escaping
|
||||
v = [v[0], '='.join(v[1:])]
|
||||
key, value = v
|
||||
keys[key] = TS3Proto._unescape_str(value)
|
||||
elif v[0][0] == '-':
|
||||
# Option
|
||||
opts.append(v[0][1:])
|
||||
else:
|
||||
command = v[0]
|
||||
|
||||
d = {'keys': keys, 'opts': opts}
|
||||
if command:
|
||||
d['command'] = command
|
||||
return d
|
||||
|
||||
@staticmethod
|
||||
def _escape_str(value):
|
||||
"""
|
||||
Escape a value into a TS3 compatible string
|
||||
|
||||
@param value: Value
|
||||
@type value: string/int
|
||||
|
||||
"""
|
||||
|
||||
if isinstance(value, int):
|
||||
return str(value)
|
||||
|
||||
for i, j in ts3_escape.iteritems():
|
||||
value = value.replace(i, j)
|
||||
|
||||
return value
|
||||
|
||||
@staticmethod
|
||||
def _unescape_str(value):
|
||||
"""
|
||||
Unescape a TS3 compatible string into a normal string
|
||||
|
||||
@param value: Value
|
||||
@type value: string/int
|
||||
|
||||
"""
|
||||
|
||||
if isinstance(value, int):
|
||||
return str(value)
|
||||
|
||||
for i, j in ts3_escape.iteritems():
|
||||
value = value.replace(j, i)
|
||||
|
||||
return value
|
||||
|
||||
|
||||
class TS3Server(TS3Proto):
|
||||
def __init__(self, ip, port, id=0):
|
||||
"""
|
||||
Abstraction class for TS3 Servers
|
||||
|
||||
@param ip: IP Address
|
||||
@type ip: str
|
||||
@param port: Port Number
|
||||
@type port: int
|
||||
|
||||
"""
|
||||
if self.connect(ip, port) and id > 0:
|
||||
self.use(id)
|
||||
|
||||
def login(self, username, password):
|
||||
"""
|
||||
Login to the TS3 Server
|
||||
|
||||
@param username: Username
|
||||
@type username: str
|
||||
@param password: Password
|
||||
@type password: str
|
||||
"""
|
||||
|
||||
response = self.send_command('login', keys={'client_login_name': username, 'client_login_password': password })
|
||||
return response.is_successful
|
||||
|
||||
def serverlist(self):
|
||||
"""
|
||||
Get a list of all Virtual Servers on the connected TS3 instance
|
||||
"""
|
||||
return self.send_command('serverlist')
|
||||
|
||||
def gm(self, msg):
|
||||
"""
|
||||
Send a global message to the current Virtual Server
|
||||
|
||||
@param msg: Message
|
||||
@type ip: str
|
||||
"""
|
||||
response = self.send_command('gm', keys={'msg': msg})
|
||||
return response.is_successful
|
||||
|
||||
def use(self, id):
|
||||
"""
|
||||
Use a particular Virtual Server instance
|
||||
|
||||
@param id: Virtual Server ID
|
||||
@type id: int
|
||||
"""
|
||||
response = self.send_command('use', keys={'sid': id})
|
||||
return response.is_successful
|
||||
60
ts3/defines.py
Normal file
60
ts3/defines.py
Normal file
@@ -0,0 +1,60 @@
|
||||
# Last updated: 2011/06/06 (3.0rc1)
|
||||
# from http://media.teamspeak.com/ts3_literature/TeamSpeak%203%20Server%20Query%20Manual.pdf
|
||||
|
||||
# HostMessageMode
|
||||
HOST_MESSAGE_MODE_LOG = 1 # 1: display message in chatlog
|
||||
HOST_MESSAGE_MODE_MODAL = 2 # 2: display message in modal dialog
|
||||
HOST_MESSAGE_MODE_MODALQUIT = 3 # 3: display message in modal dialog and close connection
|
||||
|
||||
# CodecType
|
||||
CODEC_SPEEX_NARROWBAND = 0 # 0: speex narrowband (mono, 16bit, 8kHz)
|
||||
CODEC_SPEEX_WIDEBAND = 1 # 1: speex wideband (mono, 16bit, 16kHz)
|
||||
CODEC_SPEEX_ULTRAWIDEBAND = 2 # 2: speex ultra-wideband (mono, 16bit, 32kHz)
|
||||
CODEC_CELT_MONO = 3 # 3: celt mono (mono, 16bit, 48kHz)
|
||||
|
||||
# CodecEncryption
|
||||
CODEC_CRYPT_INDIVIDUAL = 0 # 0: configure per channel
|
||||
CODEC_CRYPT_DISABLED = 1 # 1: globally disabled
|
||||
CODEC_CRYPT_ENABLED = 2 # 2: globally enabled
|
||||
|
||||
# TextMessageTarget
|
||||
TEXT_MESSAGE_TARGET_CLIENT = 1 # 1: target is a client
|
||||
TEXT_MESSAGE_TARGET_CHANNEL = 2 # 2: target is a channel
|
||||
TEXT_MESSAGE_TARGET_SERVER = 3 # 3: target is a virtual server
|
||||
|
||||
# LogLevel
|
||||
LOGLEVEL_ERROR = 1 # 1: everything that is really bad
|
||||
LOGLEVEL_WARNING = 2 # 2: everything that might be bad
|
||||
LOGLEVEL_DEBUG = 3 # 3: output that might help find a problem
|
||||
LOGLEVEL_INFO = 4 # 4: informational output
|
||||
|
||||
# ReasonIdentifier
|
||||
REASON_KICK_CHANNEL = 4 # kick client from channel
|
||||
REASON_KICK_SERVER = 5 # kick client from server
|
||||
|
||||
# PermissionGroupDatabaseTypes
|
||||
PERMGROUP_DBTYPE_TEMPLATE = 0 # template group (used for new virtual servers)
|
||||
PERMGROUP_DBTYPE_REGULAR = 1 # regular group (used for regular clients)
|
||||
PERMGROUP_DBTYPE_QUERY = 2 # global query group (used for ServerQuery clients)
|
||||
|
||||
# PermissionGroupTypes
|
||||
PERMGROUP_TYPE_SERVERGROUP = 0 # server group permission
|
||||
PERMGROUP_TYPE_GLOBALCLIENT = 1 # client specific permission
|
||||
PERMGROUP_TYPE_CHANNEL = 2 # channel specific permission
|
||||
PERMGROUP_TYPE_CHANNELGROUP = 3 # channel group permission
|
||||
PERMGROUP_TYPE_CHANNELCLIENT = 4 # channel-client specific permission
|
||||
|
||||
# TokenType
|
||||
TOKEN_SERVER_GROUP = 0 # server group token (id1={groupID} id2=0)
|
||||
TOKEN_CHANNEL_GROUP = 1 # channel group token (id1={groupID} id2={channelID})
|
||||
|
||||
# PermissionAutoUpdateTypes
|
||||
PERMISSION_AUTOUPDATE_QG = 0 # 0: target will be handled as Query Guest
|
||||
PERMISSION_AUTOUPDATE_QA = 1 # 1: target will be handled as Query Admin
|
||||
PERMISSION_AUTOUPDATE_SA = 2 # 2: target will be handled as Server Admin
|
||||
PERMISSION_AUTOUPDATE_SN = 3 # 3: target will be handled as Server Normal
|
||||
PERMISSION_AUTOUPDATE_SG = 4 # 4: target will be handled as Server Guest
|
||||
PERMISSION_AUTOUPDATE_CA = 5 # 5: target will be handled as Channel Admin
|
||||
PERMISSION_AUTOUPDATE_CO = 6 # 6: target will be handled as Channel Operator
|
||||
PERMISSION_AUTOUPDATE_CV = 7 # 7: target will be handled as Channel Voice
|
||||
PERMISSION_AUTOUPDATE_CG = 8 # 8: target will be handled as Channel Guest
|
||||
Reference in New Issue
Block a user