Skip to content

Commit

Permalink
slackness
Browse files Browse the repository at this point in the history
  • Loading branch information
shardcore committed Dec 8, 2015
1 parent 1043da3 commit fb34f42
Showing 1 changed file with 318 additions and 0 deletions.
318 changes: 318 additions & 0 deletions slackbot.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,318 @@
#!/usr/bin/python
import json
from BaseHTTPServer import HTTPServer, BaseHTTPRequestHandler
import urlparse
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

RUN_SKYPE = True
ENABLE_TWITTER = True
ENABLE_GIFTS = True
ENABLE_RADIO = True
ENABLE_API = True
all_commands = []

class EmptyMessage:
def __init__(self):
self.Id=0
self.Body=''
self.FriendlyName=''
self.FromDisplayName=''

class RequestHandler(BaseHTTPRequestHandler):


def SendSlackMessage(server, m):

# remove skype stuff

m=m.replace('/me','*')
m=m+'*'


payload=dict()
payload['text']=m



t=json.dumps(payload)

server.send_response(200)
server.send_header('Content-type',
'text/plain')
server.end_headers()
server.wfile.write( t )

print "sending "+m


def do_POST(self):
global server
server=self



content_length = int(self.headers['Content-Length'])
post_data = self.rfile.read(content_length)

dta=urlparse.parse_qs(post_data)


print "New message from: %s" % str(dta['channel_name'][0])



body = dta['text'][0]
print body
global bl
bl = body.lower()

global uname
uname=dta['user_name'][0]

botthread.respond()









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_SLACK = True
ENABLE_TWITTER = True
ENABLE_GIFTS = True
ENABLE_RADIO = False
ENABLE_API = False
class BotThread( queuedthread.QueuedThread ):

def __init__( self ):
self.twitter_connector = None
self.radio_url = None
global botthread
botthread=self

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 respond(self):
print "in respond"
print bl
for command in all_commands:

try:
if command.enabled:
message_out = None
for commandstring in command.command_mappings:
commandbang = "!" + commandstring
commandhash = "#" + commandstring
print "looking for "+commandbang
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+', bl )
print tokens
if len( tokens ) > 1:


# manual hack for now - need to look at slack API
members =['shardcore','hank','Louisa','mjays','Satan','atomoil','conch']
# 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 = members
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:

msg=EmptyMessage()
msg.Body=bl
msg.FromDisplayName=uname
msg.FriendlyName=uname
message_out = command.execute( msg )

if message_out is not None:
RequestHandler.SendSlackMessage( server, 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)

# if ENABLE_TWITTER:
# self.twitter_connector.stop()
# if ENABLE_API:
# self.api_server.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
global all_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_SLACK:
logging.info("Attaching to Slack...")



logging.info( "Entering main run loop..." )

try:
if RUN_SLACK:

# start listener
botthread=self
global server
server = HTTPServer(('', 8083), RequestHandler)
server.serve_forever()

message = housekeeping.new_chat_message()
try:
SendSlackMessage( message )
except Exception, e:
logging.info( e )
print e

except Exception, e:
logging.info( e )
print e




0 comments on commit fb34f42

Please sign in to comment.