2013-08-07 20:40:03 -04:00
|
|
|
import prof
|
|
|
|
import os
|
|
|
|
import webbrowser
|
2013-08-10 20:00:21 -04:00
|
|
|
import re
|
2013-08-07 20:40:03 -04:00
|
|
|
|
2013-08-10 20:00:21 -04:00
|
|
|
lastlink = None
|
2013-08-07 20:40:03 -04:00
|
|
|
|
|
|
|
# hooks
|
|
|
|
def prof_init(version, status):
|
2013-08-10 20:00:21 -04:00
|
|
|
prof.register_command("/browser", 0, 1, "/browser url", "View a URL in the browser.", "View a URL in the browser", cmd_browser)
|
|
|
|
|
|
|
|
def prof_on_message(jid, message):
|
|
|
|
global lastlink
|
|
|
|
links = re.findall(r'(https?://\S+)', message)
|
|
|
|
if (len(links) > 0):
|
|
|
|
lastlink = links[len(links)-1]
|
2013-08-07 20:40:03 -04:00
|
|
|
|
|
|
|
# commands
|
|
|
|
def cmd_browser(url):
|
2013-08-10 20:00:21 -04:00
|
|
|
global lastlink
|
|
|
|
|
|
|
|
link = None
|
|
|
|
if (url != None):
|
|
|
|
link = url
|
|
|
|
elif (lastlink != None):
|
|
|
|
link = lastlink
|
|
|
|
|
|
|
|
if (link != None):
|
|
|
|
prof.cons_show("Opening " + link + " in browser.")
|
|
|
|
open_browser(link)
|
|
|
|
else:
|
|
|
|
prof.cons_show("No link supplied.")
|
|
|
|
|
|
|
|
def open_browser(url):
|
2013-08-07 20:40:03 -04:00
|
|
|
savout = os.dup(1)
|
|
|
|
saverr = os.dup(2)
|
|
|
|
os.close(1)
|
|
|
|
os.close(2)
|
|
|
|
os.open(os.devnull, os.O_RDWR)
|
|
|
|
try:
|
|
|
|
webbrowser.open(url, new=2)
|
|
|
|
finally:
|
|
|
|
os.dup2(savout, 1)
|
|
|
|
os.dup2(saverr, 2)
|