2003-09-11 08:43:49 +02:00
|
|
|
###
|
2004-08-23 15:14:06 +02:00
|
|
|
# Copyright (c) 2002-2004, Jeremiah Fincher
|
2003-09-11 08:43:49 +02:00
|
|
|
# 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 author of this software nor the name of
|
|
|
|
# contributors to this software may be used to endorse or promote products
|
|
|
|
# derived from this software without specific prior written consent.
|
|
|
|
#
|
|
|
|
# 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 COPYRIGHT OWNER 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.
|
|
|
|
###
|
|
|
|
|
|
|
|
"""
|
|
|
|
Supports various DCC things.
|
|
|
|
"""
|
|
|
|
|
2003-11-25 09:23:47 +01:00
|
|
|
__revision__ = "$Id$"
|
|
|
|
|
2004-07-24 07:18:26 +02:00
|
|
|
import supybot.plugins as plugins
|
2003-09-11 08:43:49 +02:00
|
|
|
|
|
|
|
import socket
|
|
|
|
import textwrap
|
2003-10-09 18:38:14 +02:00
|
|
|
import threading
|
2003-09-11 08:43:49 +02:00
|
|
|
|
2004-07-24 07:18:26 +02:00
|
|
|
import supybot.conf as conf
|
|
|
|
import supybot.utils as utils
|
|
|
|
import supybot.world as world
|
2004-11-20 00:23:14 +01:00
|
|
|
from supybot.commands import *
|
2004-07-24 07:18:26 +02:00
|
|
|
import supybot.ircmsgs as ircmsgs
|
|
|
|
import supybot.ircutils as ircutils
|
|
|
|
import supybot.callbacks as callbacks
|
2003-09-11 08:43:49 +02:00
|
|
|
|
|
|
|
class DCC(callbacks.Privmsg):
|
2004-11-20 00:23:14 +01:00
|
|
|
def chat(self, irc, msg, args, text):
|
2003-09-11 08:43:49 +02:00
|
|
|
"""<text>
|
|
|
|
|
|
|
|
Sends <text> to the user via a DCC CHAT. Use nested commands to your
|
|
|
|
benefit here.
|
|
|
|
"""
|
|
|
|
def openChatPort():
|
|
|
|
try:
|
|
|
|
host = ircutils.hostFromHostmask(irc.prefix)
|
2004-06-20 09:37:25 +02:00
|
|
|
try:
|
2004-06-20 20:03:11 +02:00
|
|
|
sock = utils.getSocket(host)
|
2004-06-20 09:37:25 +02:00
|
|
|
except socket.error, e:
|
|
|
|
s = 'Error connecting to %s: %s'
|
|
|
|
self.log.warning(s, host, e)
|
|
|
|
irc.replyError()
|
|
|
|
return
|
|
|
|
sock.settimeout(60)
|
2004-01-18 08:58:26 +01:00
|
|
|
if conf.supybot.externalIP():
|
|
|
|
ip = conf.supybot.externalIP()
|
2004-01-01 21:09:35 +01:00
|
|
|
else:
|
|
|
|
try:
|
|
|
|
ip = socket.gethostbyname(host)
|
|
|
|
except socket.error, e:
|
|
|
|
s = 'Error trying to determine the external IP ' \
|
|
|
|
'address of this machine via the host %s: %s'
|
|
|
|
self.log.warning(s, host, e)
|
2004-01-09 00:03:48 +01:00
|
|
|
irc.replyError()
|
2004-01-01 21:09:35 +01:00
|
|
|
return
|
2003-10-09 18:38:14 +02:00
|
|
|
i = ircutils.dccIP(ip)
|
2004-06-20 20:03:11 +02:00
|
|
|
try:
|
|
|
|
sock.bind((host, 0))
|
|
|
|
except socket.error, e:
|
|
|
|
irc.error('Unable to initiate DCC CHAT.')
|
|
|
|
return
|
2003-09-11 08:43:49 +02:00
|
|
|
port = sock.getsockname()[1]
|
2003-11-26 19:21:12 +01:00
|
|
|
self.log.info('DCC CHAT port opened at (%s, %s)', host, port)
|
2003-09-11 08:43:49 +02:00
|
|
|
sock.listen(1)
|
2004-09-01 14:37:07 +02:00
|
|
|
m = ircmsgs.privmsg(msg.nick,
|
|
|
|
'\x01DCC CHAT chat %s %s\x01' % (i, port))
|
|
|
|
irc.queueMsg(m)
|
2004-06-20 20:03:11 +02:00
|
|
|
try:
|
|
|
|
(realSock, addr) = sock.accept()
|
|
|
|
except socket.timeout:
|
|
|
|
self.log.info('DCC CHAT timed out.')
|
|
|
|
return
|
2003-11-26 19:21:12 +01:00
|
|
|
self.log.info('DCC CHAT accepted from %s', addr)
|
2003-09-11 08:43:49 +02:00
|
|
|
for line in textwrap.wrap(text, 80):
|
|
|
|
realSock.send(line)
|
|
|
|
realSock.send('\n')
|
|
|
|
finally:
|
2003-11-26 19:21:12 +01:00
|
|
|
self.log.info('Finally closing sock and realSock.')
|
2004-06-20 20:03:11 +02:00
|
|
|
try:
|
|
|
|
sock.close()
|
|
|
|
except UnboundLocalError:
|
|
|
|
pass
|
2003-09-11 08:43:49 +02:00
|
|
|
try:
|
|
|
|
realSock.close()
|
|
|
|
except UnboundLocalError:
|
|
|
|
pass
|
|
|
|
t = threading.Thread(target=openChatPort)
|
|
|
|
world.threadsSpawned += 1
|
|
|
|
t.setDaemon(True)
|
|
|
|
t.start()
|
2004-11-20 00:23:14 +01:00
|
|
|
chat = wrap(chat, ['text'])
|
2004-06-20 20:03:11 +02:00
|
|
|
|
2003-09-11 08:43:49 +02:00
|
|
|
|
|
|
|
|
|
|
|
Class = DCC
|
|
|
|
|
|
|
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|