source: skype/skyped.py @ bcdc24b

Last change on this file since bcdc24b was bcdc24b, checked in by Miklos Vajna <vmiklos@…>, at 2009-02-18T00:30:13Z

skyped: add logfile option

using this option messages are not lost when not running in foreground
mode

  • Property mode set to 100644
File size: 9.3 KB
Line 
1#!/usr/bin/env python
2#
3#   skyped.py
4
5#   Copyright (c) 2007, 2008, 2009 by Miklos Vajna <vmiklos@frugalware.org>
6#
7#   This program is free software; you can redistribute it and/or modify
8#   it under the terms of the GNU General Public License as published by
9#   the Free Software Foundation; either version 2 of the License, or
10#   (at your option) any later version.
11#
12#   This program is distributed in the hope that it will be useful,
13#   but WITHOUT ANY WARRANTY; without even the implied warranty of
14#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15#   GNU General Public License for more details.
16
17#   You should have received a copy of the GNU General Public License
18#   along with this program; if not, write to the Free Software
19#   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
20#   USA.
21#
22
23import sys
24import os
25import signal
26import locale
27import time
28import gobject
29import socket
30import getopt
31import Skype4Py
32import hashlib
33from ConfigParser import ConfigParser, NoOptionError
34from traceback import print_exception
35
36__version__ = "0.1.1"
37
38SKYPE_SERVICE = 'com.Skype.API'
39
40def eh(type, value, tb):
41        if type != KeyboardInterrupt:
42                print_exception(type, value, tb)
43        gobject.MainLoop().quit()
44        # shut down client if it's running
45        try:
46                skype.skype.Client.Shutdown()
47        except NameError:
48                pass
49        sys.exit("Exiting.")
50
51sys.excepthook = eh
52
53def input_handler(fd, io_condition):
54        global options
55        if options.buf:
56                for i in options.buf:
57                        skype.send(i.strip())
58                options.buf = None
59        else:
60                try:
61                        input = fd.recv(1024)
62                except Exception, s:
63                        dprint("Warning, receiving 1024 bytes failed (%s)." % s)
64                        fd.close()
65                        return False
66                for i in input.split("\n"):
67                        skype.send(i.strip())
68                return True
69
70def skype_idle_handler(skype):
71        try:
72                c = skype.skype.Command("PING", Block=True)
73                skype.skype.SendCommand(c)
74        except Skype4Py.SkypeAPIError, s:
75                dprint("Warning, pinging Skype failed (%s)." % (s))
76        return True
77
78def bitlbee_idle_handler(skype):
79        if options.conn:
80                try:
81                        e = "PING"
82                        options.conn.send("%s\n" % e)
83                except Exception, s:
84                        dprint("Warning, sending '%s' failed (%s)." % (e, s))
85                        options.conn.close()
86        return True
87
88def server(host, port):
89        global options
90        try:
91                if "SKYPED_NO_GNUTLS" in os.environ.keys():
92                        dprint("Warning, using OpenSSL instead of gnutls as requested (not recommended).")
93                        raise ImportError
94                from gnutls import crypto, connection
95                cert = crypto.X509Certificate(open(options.config.sslcert).read())
96                key = crypto.X509PrivateKey(open(options.config.sslkey).read())
97                cred = connection.X509Credentials(cert, key)
98                sock = connection.ServerSessionFactory(socket.socket(), cred)
99        except ImportError:
100                from OpenSSL import SSL
101                ctx = SSL.Context(SSL.TLSv1_METHOD)
102                ctx.use_privatekey_file(options.config.sslkey)
103                ctx.use_certificate_file(options.config.sslcert)
104                sock = SSL.Connection(ctx, socket.socket())
105        sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
106        sock.bind((host, port))
107        sock.listen(1)
108        gobject.io_add_watch(sock, gobject.IO_IN, listener)
109
110def listener(sock, *args):
111        global options
112        options.conn, addr = sock.accept()
113        if hasattr(options.conn, 'handshake'):
114                try:
115                        options.conn.handshake()
116                except Exception:
117                        dprint("Warning, handshake failed, closing connection.")
118                        return False
119        ret = 0
120        try:
121                line = options.conn.recv(1024)
122                if line.startswith("USERNAME") and line.split(' ')[1].strip() == options.config.username:
123                        ret += 1
124                line = options.conn.recv(1024)
125                if line.startswith("PASSWORD") and hashlib.sha1(line.split(' ')[1].strip()).hexdigest() == options.config.password:
126                        ret += 1
127        except Exception, s:
128                dprint("Warning, receiving 1024 bytes failed (%s)." % s)
129                options.conn.close()
130                return False
131        if ret == 2:
132                dprint("Username and password OK.")
133                options.conn.send("PASSWORD OK\n")
134                gobject.io_add_watch(options.conn, gobject.IO_IN, input_handler)
135                return True
136        else:
137                dprint("Username and/or password WRONG.")
138                options.conn.send("PASSWORD KO\n")
139                return False
140
141def dprint(msg):
142        global options
143
144        if options.debug:
145                print msg
146        if options.log:
147                sock = open(options.log, "a")
148                sock.write("%s\n" % msg)
149                sock.close()
150
151class SkypeApi:
152        def __init__(self):
153                self.skype = Skype4Py.Skype()
154                self.skype.OnNotify = self.recv
155                self.skype.Client.Start()
156
157        def recv(self, msg_text):
158                global options
159                if msg_text == "PONG":
160                        return
161                if "\n" in msg_text:
162                        # crappy skype prefixes only the first line for
163                        # multiline messages so we need to do so for the other
164                        # lines, too. this is something like:
165                        # 'CHATMESSAGE id BODY first line\nsecond line' ->
166                        # 'CHATMESSAGE id BODY first line\nCHATMESSAGE id BODY second line'
167                        prefix = " ".join(msg_text.split(" ")[:3])
168                        msg_text = ["%s %s" % (prefix, i) for i in " ".join(msg_text.split(" ")[3:]).split("\n")]
169                else:
170                        msg_text = [msg_text]
171                for i in msg_text:
172                        # use utf-8 here to solve the following problem:
173                        # people use env vars like LC_ALL=en_US (latin1) then
174                        # they complain about why can't they receive latin2
175                        # messages.. so here it is: always use utf-8 then
176                        # everybody will be happy
177                        e = i.encode('UTF-8')
178                        dprint('<< ' + e)
179                        if options.conn:
180                                try:
181                                        options.conn.send(e + "\n")
182                                except Exception, s:
183                                        dprint("Warning, sending '%s' failed (%s)." % (e, s))
184                                        options.conn.close()
185
186        def send(self, msg_text):
187                if not len(msg_text) or msg_text == "PONG":
188                        return
189                try:
190                        encoding = locale.getdefaultlocale()[1]
191                        if not encoding:
192                                raise ValueError
193                        e = msg_text.decode(encoding)
194                except ValueError:
195                        e = msg_text.decode('UTF-8')
196                dprint('>> ' + e)
197                try:
198                        c = self.skype.Command(e, Block=True)
199                        self.skype.SendCommand(c)
200                        self.recv(c.Reply)
201                except Skype4Py.SkypeError:
202                        pass
203                except Skype4Py.SkypeAPIError, s:
204                        dprint("Warning, sending '%s' failed (%s)." % (e, s))
205
206class Options:
207        def __init__(self):
208                self.cfgpath = "/usr/local/etc/skyped/skyped.conf"
209                self.daemon = True
210                self.debug = False
211                self.help = False
212                self.host = "0.0.0.0"
213                self.log = None
214                self.port = None
215                self.version = False
216                # well, this is a bit hackish. we store the socket of the last connected client
217                # here and notify it. maybe later notify all connected clients?
218                self.conn = None
219                # this will be read first by the input handler
220                self.buf = None
221
222
223        def usage(self, ret):
224                print """Usage: skyped [OPTION]...
225
226skyped is a daemon that acts as a tcp server on top of a Skype instance.
227
228Options:
229        -c      --config        path to configuration file (default: %s)
230        -d      --debug         enable debug messages
231        -h      --help          this help
232        -H      --host          set the tcp host (default: %s)
233        -l      --log           set the log file in background mode (default: none)
234        -n      --nofork        don't run as daemon in the background
235        -p      --port          set the tcp port (default: %s)
236        -v      --version       display version information""" % (self.cfgpath, self.host, self.port)
237                sys.exit(ret)
238
239if __name__=='__main__':
240        options = Options()
241        try:
242                opts, args = getopt.getopt(sys.argv[1:], "c:dhH:l:np:v", ["config=", "daemon", "help", "host=", "log=", "nofork", "port=", "version"])
243        except getopt.GetoptError:
244                options.usage(1)
245        for opt, arg in opts:
246                if opt in ("-c", "--config"):
247                        options.cfgpath = arg
248                elif opt in ("-d", "--debug"):
249                        options.debug = True
250                elif opt in ("-h", "--help"):
251                        options.help = True
252                elif opt in ("-H", "--host"):
253                        options.host = arg
254                elif opt in ("-l", "--log"):
255                        options.log = arg
256                elif opt in ("-n", "--nofork"):
257                        options.daemon = False
258                elif opt in ("-p", "--port"):
259                        options.port = int(arg)
260                elif opt in ("-v", "--version"):
261                        options.version = True
262        if options.help:
263                options.usage(0)
264        elif options.version:
265                print "skyped %s" % __version__
266                sys.exit(0)
267        # parse our config
268        if not os.path.exists(options.cfgpath):
269                print "Can't find configuration file at '%s'." % options.cfgpath
270                print "Use the -c option to specify an alternate one."
271                sys.exit(1)
272        options.config = ConfigParser()
273        options.config.read(options.cfgpath)
274        options.config.username = options.config.get('skyped', 'username').split('#')[0]
275        options.config.password = options.config.get('skyped', 'password').split('#')[0]
276        options.config.sslkey = options.config.get('skyped', 'key').split('#')[0]
277        options.config.sslcert = options.config.get('skyped', 'cert').split('#')[0]
278        # hack: we have to parse the parameters first to locate the
279        # config file but the -p option should overwrite the value from
280        # the config file
281        try:
282                options.config.port = int(options.config.get('skyped', 'port').split('#')[0])
283                if not options.port:
284                        options.port = options.config.port
285        except NoOptionError:
286                pass
287        if not options.port:
288                options.port = 2727
289        dprint("Parsing config file '%s' done, username is '%s'." % (options.cfgpath, options.config.username))
290        if options.daemon:
291                pid = os.fork()
292                if pid == 0:
293                        nullin = file(os.devnull, 'r')
294                        nullout = file(os.devnull, 'w')
295                        os.dup2(nullin.fileno(), sys.stdin.fileno())
296                        os.dup2(nullout.fileno(), sys.stdout.fileno())
297                        os.dup2(nullout.fileno(), sys.stderr.fileno())
298                else:
299                        print 'skyped is started on port %s, pid: %d' % (options.port, pid)
300                        sys.exit(0)
301        else:
302                dprint('skyped is started on port %s' % options.port)
303        server(options.host, options.port)
304        try:
305                skype = SkypeApi()
306        except Skype4Py.SkypeAPIError, s:
307                sys.exit("%s. Are you sure you have started Skype?" % s)
308        gobject.timeout_add(2000, skype_idle_handler, skype)
309        gobject.timeout_add(60000, bitlbee_idle_handler, skype)
310        gobject.MainLoop().run()
Note: See TracBrowser for help on using the repository browser.