forked from philterphactory/skypebot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
skypebot.py
238 lines (217 loc) · 10.9 KB
/
skypebot.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
import Skype4Py
import time
import pkgutil
import datetime
import json
import sys
import logging
import twitterconnector
from hookserver import HookServerMessage, HookServerThread
import queuedthread
import time
from messages import housekeeping, streetnoise
import re
import os
import commands
import urllib2
import urllib
class ChatHandler(object):
def __init__( self, Chat ):
self.chat = Chat
self.last_timestamp = datetime.datetime.now()
def update( self ):
new_messages = []
messages = self.chat.RecentMessages
for message in messages:
dt = message.Datetime
if dt > self.last_timestamp:
new_messages.append( message )
self.last_timestamp = dt
#print message.Id
return new_messages
RUN_SKYPE = True
ENABLE_TWITTER = True
ENABLE_GIFTS = True
ENABLE_RADIO = True
ENABLE_API = True
class BotThread( queuedthread.QueuedThread ):
def __init__( self ):
self.twitter_connector = None
self.radio_url = None
if ENABLE_RADIO:
fh = open( "radio_url")
self.radio_url = fh.readline().rstrip()
fh.close()
logging.info( "Loaded radio_url: %s", self.radio_url )
if ENABLE_API:
self.api_server = HookServerThread()
self.api_server.portnumber = 9666
self.api_server.start()
super( BotThread, self ).__init__()
def message_all( self, message ):
lines = message.split("\n")
# send message to all connected chats
for chat_name in self.chat_handlers:
chat_handler = self.chat_handlers[ chat_name ]
try:
for line in lines:
chat_handler.chat.SendMessage( message )
except Exception, e:
logging.info( e )
def send_radio( self, message, id ):
if self.radio_url is not None:
if message.startswith( "/me" ):
message = message[3:]
message = message.lstrip()
data = dict( id=id, line=message )
f = urllib.urlopen( self.radio_url, urllib.urlencode(data) )
resp = f.read() # force read
def stop( self, message=None ):
if self.twitter_connector:
self.twitter_connector.stop()
if message is not None:
self.message_all( message )
super( BotThread, self ).stop()
def run( self ):
self._abortflag = False
# twitter connection
if ENABLE_TWITTER:
logging.info( "Starting up Twitter connector..." )
self.twitter_connector = twitterconnector.TwitterConnectorThread()
self.twitter_connector.creds_path = "twitter_creds"
self.twitter_connector.track_keywords = ["lndlrd"]
self.twitter_connector.start()
# import commands
all_commands = []
logging.info( "Loading commands..." )
## load all commands
reload( commands )
for loader, modname, ispkg in pkgutil.iter_modules( commands.__path__, prefix="commands." ):
try:
logging.info( "Scan module: %s" % modname)
module = __import__( modname, fromlist="dummy" )
reload( module )
for klassname in dir( module ):
if "Command" in klassname and "BaseCommand" not in klassname:
logging.info( "...instantiate command: %s" % klassname )
try:
kommandklass = getattr( module, klassname )
kommand = kommandklass()
all_commands.append( kommand )
logging.info( "......instantiated. Triggers are %s" % kommand.command_mappings )
except Exception, e:
logging.info( e )
except Exception, e:
logging.info( e )
if RUN_SKYPE:
logging.info( "Attaching to Skype..." )
skype = Skype4Py.Skype(Transport='x11')
skype.Attach()
self.chat_handlers = {}
logging.info( "Entering main run loop..." )
while not self._abortflag:
try:
if RUN_SKYPE:
# maintain list of chats
chats = skype.ActiveChats
defunct_chat_names = set( self.chat_handlers.keys() )
for chat in chats:
chat_name = chat.Name
try:
defunct_chat_names.remove( chat_name )
except KeyError:
pass
if chat_name not in self.chat_handlers:
logging.info( "New handler for chat: %s" % chat.FriendlyName )
self.chat_handlers[chat_name] = ChatHandler(chat)
message = housekeeping.new_chat_message()
try:
chat.SendMessage( message )
except Exception, e:
logging.info( e )
print e
# clear defunct chats
for defunct_chat_name in defunct_chat_names:
logging.info( "Delete handler for chat: %s" % defunct_chat_name )
del self.chat_handlers[ defunct_chat_name ]
# update chats
for chat_name in self.chat_handlers:
chat_handler = self.chat_handlers[ chat_name ]
new_messages = chat_handler.update()
if len(new_messages)> 0:
print "New messages in chat: %s" % chat_handler.chat.FriendlyName
for new_message in new_messages:
body = new_message.Body
print body
bl = body.lower()
for command in all_commands:
try:
if command.enabled:
message_out = None
for commandstring in command.command_mappings:
commandbang = "!" + commandstring
commandhash = "#" + commandstring
if commandbang in bl or commandhash in bl:
print "Excute command %s" % commandstring
# if command is giftable
if command.gifting_enabled and ENABLE_GIFTS:
if hasattr( command, 'gift' ):
# split message up into tokens
tokens = re.split( '\W+', body )
print tokens
if len( tokens ) > 1:
members = chat_handler.chat.Members
# scan tokens for something that looks like a name
for token in tokens:
if len(token) > 3 and token != commandstring:
for member in members:
names = [ member.DisplayName, member.FullName, member.Handle ]
for name in names:
if token.lower() in name.lower():
print "--> gift %s to %s " % (commandbang, name )
message_out = command.gift( name )
break
if message_out is not None:
break
if message_out is not None:
break
if message_out is None:
message_out = command.execute( new_message )
if message_out is not None:
chat_handler.chat.SendMessage( message_out )
if ENABLE_TWITTER and command.tweets:
self.twitter_connector.tweet( message_out )
if ENABLE_RADIO:
self.send_radio( message_out, new_message.Id )
except Exception, e:
logging.info( e )
print e
# update from twitter
if ENABLE_TWITTER:
new_statuses = self.twitter_connector.pop_stream()
for status_in in new_statuses:
try:
message_out = streetnoise.message_for_incoming_status( status_in )
if message_out:
self.message_all( message_out )
if ENABLE_RADIO:
self.send_radio( message_out, status_in.id_str )
except Exception, e:
logging.info( e )
# update from api
if ENABLE_API:
api_message = self.api_server.pop_message()
if api_message is not None:
try:
message_out = api_message.payload["message"]
self.message_all( message_out )
except Exception, e:
logging.info( e )
time.sleep(1)
except Exception, e:
logging.info( e )
print e
if ENABLE_TWITTER:
self.twitter_connector.stop()
if ENABLE_API:
self.api_server.stop()