source: skype/skyped.py @ a75f2a7

Last change on this file since a75f2a7 was a75f2a7, checked in by VMiklos <vmiklos@…>, at 2007-10-06T15:35:55Z

display received messages in utf8, so that we can avoid most UnicodeEncodeErrors

  • Property mode set to 100644
File size: 5.2 KB
Line 
1#!/usr/bin/env python
2#
3#   skyped.py
4
5#   Copyright (c) 2007 by Miklos Vajna <vmiklos@frugalware.org>
6#
7#   It uses several code from a very basic python CLI interface, available at:
8#
9#   http://forum.skype.com/index.php?showtopic=42640
10
11#   This program is free software; you can redistribute it and/or modify
12#   it under the terms of the GNU General Public License as published by
13#   the Free Software Foundation; either version 2 of the License, or
14#   (at your option) any later version.
15#
16#   This program is distributed in the hope that it will be useful,
17#   but WITHOUT ANY WARRANTY; without even the implied warranty of
18#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19#   GNU General Public License for more details.
20
21#   You should have received a copy of the GNU General Public License
22#   along with this program; if not, write to the Free Software
23#   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
24#   USA.
25#
26
27import sys
28import os
29import signal
30import locale
31import time
32import gobject
33import socket
34import getopt
35import Skype4Py
36import threading
37
38__version__ = "0.1.1"
39
40SKYPE_SERVICE = 'com.Skype.API'
41CLIENT_NAME = 'SkypeApiPythonShell'
42
43# well, this is a bit hackish. we store the socket of the last connected client
44# here and notify it. maybe later notify all connected clients?
45conn = None
46
47def input_handler(fd, io_condition):
48        input = fd.recv(1024)
49        for i in input.split("\n"):
50                skype.send(i.strip())
51        return True
52
53def idle_handler(skype):
54        try:
55                skype.skype.SendCommand(skype.skype.Command(-1, "PING"))
56        except Skype4Py.SkypeAPIError, s:
57                dprint("Warning, pinging Skype failed (%s)." % (s))
58        try:
59                time.sleep(2)
60        except KeyboardInterrupt:
61                sys.exit("Exiting.")
62        return True
63
64def server(host, port):
65        sock = socket.socket()
66        sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
67        sock.bind((host, port))
68        sock.listen(1)
69        gobject.io_add_watch(sock, gobject.IO_IN, listener)
70
71def listener(sock, *args):
72        global conn
73        conn, addr = sock.accept()
74        fileno = conn.fileno()
75        gobject.io_add_watch(conn, gobject.IO_IN, input_handler)
76        return True
77
78def dprint(msg):
79        global options
80
81        if options.debug:
82                print msg
83
84class SkypeApi():
85        def __init__(self):
86                self.skype = Skype4Py.Skype()
87                self.skype.OnNotify = self.recv
88                self.skype.Attach()
89
90        def recv(self, msg_text):
91                global conn
92                if msg_text == "PONG":
93                        return
94                if "\n" in msg_text:
95                        # crappy skype prefixes only the first line for
96                        # multiline messages so we need to do so for the other
97                        # lines, too. this is something like:
98                        # 'CHATMESSAGE id BODY first line\nsecond line' ->
99                        # 'CHATMESSAGE id BODY first line\nCHATMESSAGE id BODY second line'
100                        prefix = " ".join(msg_text.split(" ")[:3])
101                        msg_text = ["%s %s" % (prefix, i) for i in " ".join(msg_text.split(" ")[3:]).split("\n")]
102                else:
103                        msg_text = [msg_text]
104                for i in msg_text:
105                        # use utf-8 here to solve the following problem:
106                        # people use env vars like LC_ALL=en_US (latin1) then
107                        # they complain about why can't they receive latin2
108                        # messages.. so here it is: always use utf-8 then
109                        # everybody will be happy
110                        e = i.encode('UTF-8')
111                        dprint('<< ' + e)
112                        if conn:
113                                try:
114                                        conn.send(e + "\n")
115                                except IOError, s:
116                                        dprint("Warning, sending '%s' failed (%s)." % (e, s))
117
118        def send(self, msg_text):
119                if not len(msg_text):
120                        return
121                e = msg_text.decode(locale.getdefaultlocale()[1])
122                dprint('>> ' + e)
123                try:
124                        self.skype.SendCommand(self.skype.Command(-1, e))
125                except Skype4Py.ISkypeError:
126                        pass
127                except Skype4Py.SkypeAPIError, s:
128                        dprint("Warning, sending '%s' failed (%s)." % (e, s))
129
130class Options:
131        def __init__(self):
132                self.daemon = True
133                self.debug = False
134                self.help = False
135                self.port = 2727
136                self.version = False
137
138        def usage(self, ret):
139                print """Usage: skyped [OPTION]...
140
141skyped is a daemon that acts as a tcp server on top of a Skype instance.
142
143Options:
144        -d      --debug         enable debug messages
145        -h      --help          this help
146        -n      --nofork        don't run as daemon in the background
147        -p      --port          set the tcp port (default: %d)
148        -v      --version       display version information""" % self.port
149                sys.exit(ret)
150
151if __name__=='__main__':
152        options = Options()
153        try:
154                opts, args = getopt.getopt(sys.argv[1:], "dhnp:v", ["daemon", "help", "nofork", "port=", "version"])
155        except getopt.GetoptError:
156                options.usage(1)
157        for opt, arg in opts:
158                if opt in ("-d", "--debug"):
159                        options.debug = True
160                elif opt in ("-h", "--help"):
161                        options.help = True
162                elif opt in ("-n", "--nofork"):
163                        options.daemon = False
164                elif opt in ("-p", "--port"):
165                        options.port = arg
166                elif opt in ("-v", "--version"):
167                        options.version = True
168        if options.help:
169                options.usage(0)
170        elif options.version:
171                print "skyped %s" % __version__
172                sys.exit(0)
173        elif options.daemon:
174                pid = os.fork()
175                if pid == 0:
176                        nullin = file('/dev/null', 'r')
177                        nullout = file('/dev/null', 'w')
178                        os.dup2(nullin.fileno(), sys.stdin.fileno())
179                        os.dup2(nullout.fileno(), sys.stdout.fileno())
180                        os.dup2(nullout.fileno(), sys.stderr.fileno())
181                else:
182                        print 'skyped is started on port %s, pid: %d' % (options.port, pid)
183                        sys.exit(0)
184        server('0.0.0.0', options.port)
185        try:
186                skype = SkypeApi()
187        except Skype4Py.SkypeAPIError, s:
188                sys.exit("%s. Are you sure you have started Skype?" % s)
189        gobject.idle_add(idle_handler, skype)
190        gobject.MainLoop().run()
Note: See TracBrowser for help on using the repository browser.