2012-09-06 20:45:48 +02:00
|
|
|
#!/usr/bin/python
|
2012-09-13 02:29:26 +02:00
|
|
|
import mechanize
|
|
|
|
import urllib
|
|
|
|
import sys
|
|
|
|
import logging
|
|
|
|
import zephyr
|
|
|
|
import traceback
|
|
|
|
import simplejson
|
|
|
|
import re
|
|
|
|
import time
|
2012-09-13 03:41:52 +02:00
|
|
|
import subprocess
|
2012-09-21 21:17:25 +02:00
|
|
|
import optparse
|
2012-09-13 02:29:26 +02:00
|
|
|
|
|
|
|
from mit_subs_list import subs_list
|
2012-09-07 17:45:09 +02:00
|
|
|
|
2012-09-21 21:17:25 +02:00
|
|
|
parser = optparse.OptionParser()
|
|
|
|
parser.add_option('--forward-class-messages',
|
|
|
|
dest='forward_class_messages',
|
|
|
|
default=False,
|
|
|
|
action='store_true')
|
|
|
|
parser.add_option('--resend-log',
|
|
|
|
dest='resend_log',
|
|
|
|
default=False,
|
|
|
|
action='store_true')
|
|
|
|
parser.add_option('--no-forward-personals',
|
|
|
|
dest='forward_personals',
|
|
|
|
default=True,
|
|
|
|
action='store_false')
|
|
|
|
(options, args) = parser.parse_args()
|
|
|
|
|
2012-09-07 17:45:09 +02:00
|
|
|
browser = None
|
2012-09-07 16:54:28 +02:00
|
|
|
csrf_token = None
|
|
|
|
|
|
|
|
def browser_login():
|
2012-09-07 17:45:09 +02:00
|
|
|
logger = logging.getLogger("mechanize")
|
|
|
|
logger.addHandler(logging.StreamHandler(sys.stdout))
|
|
|
|
logger.setLevel(logging.INFO)
|
|
|
|
|
|
|
|
global browser
|
|
|
|
browser = mechanize.Browser()
|
2012-09-07 16:54:28 +02:00
|
|
|
browser.set_handle_robots(False)
|
2012-09-06 20:45:48 +02:00
|
|
|
## debugging code to consider
|
2012-09-07 16:54:28 +02:00
|
|
|
# browser.set_debug_http(True)
|
|
|
|
# browser.set_debug_responses(True)
|
|
|
|
# browser.set_debug_redirects(True)
|
|
|
|
# browser.set_handle_refresh(False)
|
2012-09-07 17:14:26 +02:00
|
|
|
|
2012-09-07 16:54:28 +02:00
|
|
|
browser.add_password("https://app.humbughq.com/", "tabbott", "xxxxxxxxxxxxxxxxx", "wiki")
|
|
|
|
browser.open("https://app.humbughq.com/")
|
|
|
|
browser.follow_link(text_regex="\s*Log in\s*")
|
|
|
|
browser.select_form(nr=0)
|
2012-09-21 00:26:59 +02:00
|
|
|
browser["username"] = "starnine@mit.edu"
|
|
|
|
browser["password"] = "xxxxxxxx"
|
2012-09-07 16:54:28 +02:00
|
|
|
|
|
|
|
global csrf_token
|
2012-09-18 01:52:04 +02:00
|
|
|
csrf_token = browser["csrfmiddlewaretoken"]
|
|
|
|
|
|
|
|
browser.submit()
|
2012-09-06 20:45:48 +02:00
|
|
|
|
2012-09-07 19:13:00 +02:00
|
|
|
def send_zephyr(zeph):
|
2012-09-17 21:39:01 +02:00
|
|
|
zeph['fullname'] = username_to_fullname(zeph['sender'])
|
|
|
|
zeph['shortname'] = zeph['sender'].split('@')[0]
|
2012-09-13 03:41:52 +02:00
|
|
|
|
2012-09-07 16:54:28 +02:00
|
|
|
browser.addheaders.append(('X-CSRFToken', csrf_token))
|
2012-09-11 23:17:10 +02:00
|
|
|
zephyr_data = urllib.urlencode([(k, v.encode('utf-8')) for k,v in zeph.items()])
|
2012-09-07 16:54:28 +02:00
|
|
|
browser.open("https://app.humbughq.com/forge_zephyr/", zephyr_data)
|
2012-09-06 22:10:48 +02:00
|
|
|
|
2012-09-13 03:41:52 +02:00
|
|
|
def fetch_fullname(username):
|
|
|
|
try:
|
2012-09-21 21:17:25 +02:00
|
|
|
match_user = re.match(r'([a-zA-Z0-9_]+)@mit\.edu', username)
|
2012-09-13 03:41:52 +02:00
|
|
|
if match_user:
|
|
|
|
proc = subprocess.Popen(['hesinfo', match_user.group(1), 'passwd'], stdout=subprocess.PIPE)
|
|
|
|
out, _err_unused = proc.communicate()
|
|
|
|
if proc.returncode == 0:
|
|
|
|
return out.split(':')[4].split(',')[0]
|
|
|
|
except:
|
|
|
|
print >>sys.stderr, 'Error getting fullname for', username
|
|
|
|
traceback.print_exc()
|
|
|
|
|
|
|
|
return username.title().replace('@', ' at ').replace('.', ' dot ')
|
|
|
|
|
|
|
|
fullnames = {}
|
|
|
|
def username_to_fullname(username):
|
|
|
|
if username not in fullnames:
|
|
|
|
fullnames[username] = fetch_fullname(username)
|
|
|
|
return fullnames[username]
|
|
|
|
|
2012-09-13 02:29:26 +02:00
|
|
|
browser_login()
|
2012-09-07 17:45:09 +02:00
|
|
|
|
2012-09-13 02:29:26 +02:00
|
|
|
subs = zephyr.Subscriptions()
|
2012-09-21 21:17:25 +02:00
|
|
|
if options.forward_class_messages:
|
|
|
|
for sub in subs_list:
|
|
|
|
subs.add((sub, '*', '*'))
|
|
|
|
if options.forward_personals:
|
|
|
|
subs.add(("message", "personal", "*"))
|
2012-09-07 17:45:09 +02:00
|
|
|
|
2012-09-21 21:17:25 +02:00
|
|
|
if options.resend_log:
|
2012-09-17 21:40:47 +02:00
|
|
|
with open('zephyrs', 'r') as log:
|
|
|
|
try:
|
2012-09-13 02:29:26 +02:00
|
|
|
for ln in log:
|
|
|
|
zeph = simplejson.loads(ln)
|
2012-09-21 21:17:25 +02:00
|
|
|
print "sending saved message to %s from %s..." % \
|
|
|
|
(zeph.get('class', zeph.get('recipient')), zeph['sender'])
|
2012-09-13 02:29:26 +02:00
|
|
|
send_zephyr(zeph)
|
2012-09-17 21:40:47 +02:00
|
|
|
except:
|
|
|
|
print >>sys.stderr, 'Could not send saved zephyr'
|
|
|
|
traceback.print_exc()
|
|
|
|
time.sleep(2)
|
2012-09-07 17:45:09 +02:00
|
|
|
|
2012-09-13 02:29:26 +02:00
|
|
|
with open('zephyrs', 'a') as log:
|
|
|
|
print "Starting receive loop"
|
|
|
|
while True:
|
2012-09-07 19:17:56 +02:00
|
|
|
try:
|
2012-09-13 02:29:26 +02:00
|
|
|
notice = zephyr.receive(block=True)
|
|
|
|
zsig, body = notice.message.split("\x00", 1)
|
|
|
|
|
2012-09-21 21:17:25 +02:00
|
|
|
if (notice.cls == "message" and
|
|
|
|
notice.instance == "personal"):
|
|
|
|
is_personal = True
|
|
|
|
|
|
|
|
if notice.opcode != "":
|
|
|
|
# skip PING messages
|
2012-09-13 02:29:26 +02:00
|
|
|
continue
|
2012-09-21 21:17:25 +02:00
|
|
|
|
|
|
|
# Drop messages not to the listed subscriptions
|
|
|
|
if (notice.cls not in subs_list) and not (is_personal and
|
|
|
|
options.forward_personals):
|
|
|
|
print "Skipping ...", notice.cls, notice.instance, is_personal
|
|
|
|
continue
|
|
|
|
|
|
|
|
sender = notice.sender.replace("ATHENA.MIT.EDU", "mit.edu")[:30]
|
|
|
|
recipient = notice.recipient.replace("ATHENA.MIT.EDU", "mit.edu")
|
|
|
|
|
|
|
|
if is_personal:
|
|
|
|
zeph = { 'type' : 'personal',
|
|
|
|
'time' : str(notice.time),
|
|
|
|
'sender' : sender,
|
|
|
|
'recipient' : recipient,
|
|
|
|
'zsig' : zsig, # logged here but not used by app
|
|
|
|
'new_zephyr': body }
|
|
|
|
else:
|
|
|
|
zeph = { 'type' : 'class',
|
|
|
|
'time' : str(notice.time),
|
|
|
|
'sender' : sender,
|
|
|
|
'class' : notice.cls,
|
|
|
|
'instance' : notice.instance,
|
|
|
|
'zsig' : zsig, # logged here but not used by app
|
|
|
|
'new_zephyr': body }
|
2012-09-13 02:29:26 +02:00
|
|
|
|
|
|
|
log.write(simplejson.dumps(zeph) + '\n')
|
|
|
|
log.flush()
|
|
|
|
|
2012-09-21 21:17:25 +02:00
|
|
|
print "received a message on %s/%s from %s..." % \
|
|
|
|
(notice.cls, notice.instance, notice.sender)
|
2012-09-13 02:29:26 +02:00
|
|
|
send_zephyr(zeph)
|
2012-09-07 19:17:56 +02:00
|
|
|
except:
|
2012-09-13 02:29:26 +02:00
|
|
|
print >>sys.stderr, 'Error relaying zephyr'
|
2012-09-07 19:17:56 +02:00
|
|
|
traceback.print_exc()
|
2012-09-13 02:29:26 +02:00
|
|
|
time.sleep(2)
|