source: skype/skyped.py @ 1a575f69

Last change on this file since 1a575f69 was 1a575f69, checked in by Miklos Vajna <vmiklos@…>, at 2009-08-31T17:06:46Z

skyped: let the error message suggest placing the config file under ~/.skyped

so the new error message will be like:

$ python skyped.py -d -n
Can't find configuration file at '/home/vmiklos/.skyped/skyped.conf'.
Use the -c option to specify an alternate one.

  • Property mode set to 100644
File size: 9.6 KB
RevLine 
[4ddda13]1#!/usr/bin/env python
[cd3022c]2#
3#   skyped.py
4
[bcdc24b]5#   Copyright (c) 2007, 2008, 2009 by Miklos Vajna <vmiklos@frugalware.org>
[cd3022c]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
[4ddda13]23import sys
[8237df5]24import os
[4ddda13]25import signal
26import locale
27import time
28import gobject
29import socket
[8237df5]30import getopt
[c15f71a]31import Skype4Py
[8edfc90]32import hashlib
[d891915]33from ConfigParser import ConfigParser, NoOptionError
[eeeb30e]34from traceback import print_exception
[4ddda13]35
[8237df5]36__version__ = "0.1.1"
[4ddda13]37
38SKYPE_SERVICE = 'com.Skype.API'
39
[eeeb30e]40def eh(type, value, tb):
[3a2a0b2]41        if type != KeyboardInterrupt:
42                print_exception(type, value, tb)
43        gobject.MainLoop().quit()
[7415989]44        # shut down client if it's running
45        try:
46                skype.skype.Client.Shutdown()
47        except NameError:
48                pass
[3a2a0b2]49        sys.exit("Exiting.")
[eeeb30e]50
51sys.excepthook = eh
52
[4ddda13]53def input_handler(fd, io_condition):
[5245e9d]54        global options
55        if options.buf:
56                for i in options.buf:
57                        skype.send(i.strip())
58                options.buf = None
59        else:
[2eb4b1f]60                try:
61                        input = fd.recv(1024)
[140ffc8]62                except Exception, s:
63                        dprint("Warning, receiving 1024 bytes failed (%s)." % s)
[bd85ec5]64                        fd.close()
65                        return False
[5245e9d]66                for i in input.split("\n"):
67                        skype.send(i.strip())
68                return True
[c15f71a]69
[4b0092e]70def skype_idle_handler(skype):
[3922d44]71        try:
[6af541d]72                c = skype.skype.Command("PING", Block=True)
73                skype.skype.SendCommand(c)
[3922d44]74        except Skype4Py.SkypeAPIError, s:
75                dprint("Warning, pinging Skype failed (%s)." % (s))
[94bd28f]76        return True
[4ddda13]77
[4b0092e]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
[a316c4e]88def server(host, port):
[c7304b2]89        global options
[b0d40f5]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())
[a316c4e]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):
[5245e9d]111        global options
112        options.conn, addr = sock.accept()
[b0d40f5]113        if hasattr(options.conn, 'handshake'):
[5588f7c4]114                try:
115                        options.conn.handshake()
116                except Exception:
117                        dprint("Warning, handshake failed, closing connection.")
118                        return False
[5245e9d]119        ret = 0
[6b9cab1]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)
[8edfc90]125                if line.startswith("PASSWORD") and hashlib.sha1(line.split(' ')[1].strip()).hexdigest() == options.config.password:
[6b9cab1]126                        ret += 1
127        except Exception, s:
128                dprint("Warning, receiving 1024 bytes failed (%s)." % s)
129                options.conn.close()
130                return False
[5245e9d]131        if ret == 2:
132                dprint("Username and password OK.")
[c7304b2]133                options.conn.send("PASSWORD OK\n")
[5245e9d]134                gobject.io_add_watch(options.conn, gobject.IO_IN, input_handler)
135                return True
136        else:
137                dprint("Username and/or password WRONG.")
[c7304b2]138                options.conn.send("PASSWORD KO\n")
[5245e9d]139                return False
[a316c4e]140
141def dprint(msg):
[ffd078a]142        from time import strftime
[8237df5]143        global options
144
[ffd078a]145        now = strftime("%Y-%m-%d %H:%M:%S")
146
[8237df5]147        if options.debug:
[ffd078a]148                print now + ": " + msg
[bcdc24b]149        if options.log:
150                sock = open(options.log, "a")
[ffd078a]151                sock.write("%s: %s\n" % now, msg)
[bcdc24b]152                sock.close()
[a316c4e]153
[944a941]154class SkypeApi:
[94bd28f]155        def __init__(self):
[c15f71a]156                self.skype = Skype4Py.Skype()
[5268bd7]157                self.skype.OnNotify = self.recv
[6af541d]158                self.skype.Client.Start()
[94bd28f]159
[5268bd7]160        def recv(self, msg_text):
[5245e9d]161                global options
[d86dfb1]162                if msg_text == "PONG":
163                        return
[c15f71a]164                if "\n" in msg_text:
[7613670]165                        # crappy skype prefixes only the first line for
166                        # multiline messages so we need to do so for the other
167                        # lines, too. this is something like:
168                        # 'CHATMESSAGE id BODY first line\nsecond line' ->
169                        # 'CHATMESSAGE id BODY first line\nCHATMESSAGE id BODY second line'
[c15f71a]170                        prefix = " ".join(msg_text.split(" ")[:3])
171                        msg_text = ["%s %s" % (prefix, i) for i in " ".join(msg_text.split(" ")[3:]).split("\n")]
[7613670]172                else:
[c15f71a]173                        msg_text = [msg_text]
174                for i in msg_text:
[a75f2a7]175                        # use utf-8 here to solve the following problem:
176                        # people use env vars like LC_ALL=en_US (latin1) then
177                        # they complain about why can't they receive latin2
178                        # messages.. so here it is: always use utf-8 then
179                        # everybody will be happy
180                        e = i.encode('UTF-8')
[52d779e]181                        dprint('<< ' + e)
[5245e9d]182                        if options.conn:
[af8675f]183                                try:
[5245e9d]184                                        options.conn.send(e + "\n")
[80dfdce]185                                except Exception, s:
[a75f2a7]186                                        dprint("Warning, sending '%s' failed (%s)." % (e, s))
[bd85ec5]187                                        options.conn.close()
[c15f71a]188
189        def send(self, msg_text):
[4b0092e]190                if not len(msg_text) or msg_text == "PONG":
[c15f71a]191                        return
[885e563e]192                try:
[072c0fe]193                        encoding = locale.getdefaultlocale()[1]
194                        if not encoding:
195                                raise ValueError
196                        e = msg_text.decode(encoding)
[885e563e]197                except ValueError:
198                        e = msg_text.decode('UTF-8')
[52d779e]199                dprint('>> ' + e)
[c15f71a]200                try:
[05cf927]201                        c = self.skype.Command(e, Block=True)
202                        self.skype.SendCommand(c)
203                        self.recv(c.Reply)
204                except Skype4Py.SkypeError:
[c15f71a]205                        pass
[8b3beef]206                except Skype4Py.SkypeAPIError, s:
[a75f2a7]207                        dprint("Warning, sending '%s' failed (%s)." % (e, s))
[4ddda13]208
[8237df5]209class Options:
210        def __init__(self):
[1b48afb]211                self.cfgpath = os.path.join(os.environ['HOME'], ".skyped", "skyped.conf")
[1a575f69]212                # for backwards compatibility
213                self.syscfgpath = "/usr/local/etc/skyped/skyped.conf"
214                if os.path.exists(self.syscfgpath):
215                        self.cfgpath = self.syscfgpath
[8237df5]216                self.daemon = True
217                self.debug = False
218                self.help = False
[7e450c3]219                self.host = "0.0.0.0"
[bcdc24b]220                self.log = None
[d891915]221                self.port = None
[8237df5]222                self.version = False
[5245e9d]223                # well, this is a bit hackish. we store the socket of the last connected client
224                # here and notify it. maybe later notify all connected clients?
225                self.conn = None
226                # this will be read first by the input handler
227                self.buf = None
228
[8237df5]229
230        def usage(self, ret):
231                print """Usage: skyped [OPTION]...
232
233skyped is a daemon that acts as a tcp server on top of a Skype instance.
234
235Options:
[5245e9d]236        -c      --config        path to configuration file (default: %s)
[8237df5]237        -d      --debug         enable debug messages
238        -h      --help          this help
[7e450c3]239        -H      --host          set the tcp host (default: %s)
[bcdc24b]240        -l      --log           set the log file in background mode (default: none)
[8237df5]241        -n      --nofork        don't run as daemon in the background
[a349932]242        -p      --port          set the tcp port (default: %s)
[5245e9d]243        -v      --version       display version information""" % (self.cfgpath, self.host, self.port)
[8237df5]244                sys.exit(ret)
245
[4ddda13]246if __name__=='__main__':
[8237df5]247        options = Options()
248        try:
[bcdc24b]249                opts, args = getopt.getopt(sys.argv[1:], "c:dhH:l:np:v", ["config=", "daemon", "help", "host=", "log=", "nofork", "port=", "version"])
[8237df5]250        except getopt.GetoptError:
251                options.usage(1)
252        for opt, arg in opts:
[5245e9d]253                if opt in ("-c", "--config"):
254                        options.cfgpath = arg
255                elif opt in ("-d", "--debug"):
[8237df5]256                        options.debug = True
257                elif opt in ("-h", "--help"):
258                        options.help = True
[7e450c3]259                elif opt in ("-H", "--host"):
260                        options.host = arg
[bcdc24b]261                elif opt in ("-l", "--log"):
262                        options.log = arg
[8237df5]263                elif opt in ("-n", "--nofork"):
264                        options.daemon = False
265                elif opt in ("-p", "--port"):
[d891915]266                        options.port = int(arg)
[8237df5]267                elif opt in ("-v", "--version"):
268                        options.version = True
269        if options.help:
270                options.usage(0)
271        elif options.version:
272                print "skyped %s" % __version__
273                sys.exit(0)
[5245e9d]274        # parse our config
275        if not os.path.exists(options.cfgpath):
276                print "Can't find configuration file at '%s'." % options.cfgpath
277                print "Use the -c option to specify an alternate one."
278                sys.exit(1)
279        options.config = ConfigParser()
280        options.config.read(options.cfgpath)
281        options.config.username = options.config.get('skyped', 'username').split('#')[0]
282        options.config.password = options.config.get('skyped', 'password').split('#')[0]
[c7304b2]283        options.config.sslkey = options.config.get('skyped', 'key').split('#')[0]
284        options.config.sslcert = options.config.get('skyped', 'cert').split('#')[0]
[d891915]285        # hack: we have to parse the parameters first to locate the
286        # config file but the -p option should overwrite the value from
287        # the config file
288        try:
289                options.config.port = int(options.config.get('skyped', 'port').split('#')[0])
290                if not options.port:
291                        options.port = options.config.port
292        except NoOptionError:
293                pass
294        if not options.port:
295                options.port = 2727
[5245e9d]296        dprint("Parsing config file '%s' done, username is '%s'." % (options.cfgpath, options.config.username))
297        if options.daemon:
[8237df5]298                pid = os.fork()
299                if pid == 0:
[56ae398]300                        nullin = file(os.devnull, 'r')
301                        nullout = file(os.devnull, 'w')
[8237df5]302                        os.dup2(nullin.fileno(), sys.stdin.fileno())
303                        os.dup2(nullout.fileno(), sys.stdout.fileno())
304                        os.dup2(nullout.fileno(), sys.stderr.fileno())
305                else:
306                        print 'skyped is started on port %s, pid: %d' % (options.port, pid)
307                        sys.exit(0)
[d891915]308        else:
309                dprint('skyped is started on port %s' % options.port)
[7e450c3]310        server(options.host, options.port)
[c15f71a]311        try:
[3953172]312                skype = SkypeApi()
[8b3beef]313        except Skype4Py.SkypeAPIError, s:
[c15f71a]314                sys.exit("%s. Are you sure you have started Skype?" % s)
[4b0092e]315        gobject.timeout_add(2000, skype_idle_handler, skype)
316        gobject.timeout_add(60000, bitlbee_idle_handler, skype)
[c15f71a]317        gobject.MainLoop().run()
Note: See TracBrowser for help on using the repository browser.