blob: 59825fa53afe211706e5047738e3668e09eb69cc [file] [log] [blame]
Eric S. Raymondf7f18512001-01-23 13:16:32 +00001"""Remote-control interfaces to common browsers."""
Fred Drakec70b4482000-07-09 16:45:56 +00002
3import os
4import sys
5
Fred Drakec70b4482000-07-09 16:45:56 +00006class Error(Exception):
7 pass
8
Tim Peters658cba62001-02-09 20:06:00 +00009_browsers = {} # Dictionary of available browser controllers
10_tryorder = [] # Preference order of available browsers
Fred Drakec70b4482000-07-09 16:45:56 +000011
12def register(name, klass, instance=None):
13 """Register a browser connector and, optionally, connection."""
14 _browsers[name.lower()] = [klass, instance]
15
Eric S. Raymondf7f18512001-01-23 13:16:32 +000016def get(using=None):
17 """Return a browser launcher instance appropriate for the environment."""
18 if using:
19 alternatives = [using]
20 else:
21 alternatives = _tryorder
22 for browser in alternatives:
23 if browser.find('%s') > -1:
24 # User gave us a command line, don't mess with it.
25 return browser
26 else:
Tim Peters658cba62001-02-09 20:06:00 +000027 # User gave us a browser name.
Eric S. Raymondf7f18512001-01-23 13:16:32 +000028 command = _browsers[browser.lower()]
29 if command[1] is None:
30 return command[0]()
31 else:
32 return command[1]
33 raise Error("could not locate runnable browser")
Fred Drakec70b4482000-07-09 16:45:56 +000034
35# Please note: the following definition hides a builtin function.
36
Eric S. Raymondf79cb2d2001-01-23 13:49:44 +000037def open(url, new=0, autoraise=1):
38 get().open(url, new, autoraise)
Fred Drakec70b4482000-07-09 16:45:56 +000039
Tim Peters658cba62001-02-09 20:06:00 +000040def open_new(url): # Marked deprecated. May be removed in 2.1.
Eric S. Raymondf7f18512001-01-23 13:16:32 +000041 get().open(url, 1)
Fred Drakec70b4482000-07-09 16:45:56 +000042
Eric S. Raymondf7f18512001-01-23 13:16:32 +000043#
44# Everything after this point initializes _browsers and _tryorder,
45# then disappears. Some class definitions and instances remain
46# live through these globals, but only the minimum set needed to
47# support the user's platform.
48#
Fred Drakec70b4482000-07-09 16:45:56 +000049
Tim Peters658cba62001-02-09 20:06:00 +000050#
Eric S. Raymondf7f18512001-01-23 13:16:32 +000051# Platform support for Unix
52#
Fred Drakec70b4482000-07-09 16:45:56 +000053
Eric S. Raymondf7f18512001-01-23 13:16:32 +000054# This is the right test because all these Unix browsers require either
55# a console terminal of an X display to run. Note that we cannot split
56# the TERM and DISPLAY cases, because we might be running Python from inside
57# an xterm.
58if os.environ.get("TERM") or os.environ.get("DISPLAY"):
59 PROCESS_CREATION_DELAY = 4
60 global tryorder
61 _tryorder = ("mozilla","netscape","kfm","grail","links","lynx","w3m")
Fred Drakec70b4482000-07-09 16:45:56 +000062
Eric S. Raymondf7f18512001-01-23 13:16:32 +000063 def _iscommand(cmd):
64 """Return true if cmd can be found on the executable search path."""
65 path = os.environ.get("PATH")
66 if not path:
Fred Drakec70b4482000-07-09 16:45:56 +000067 return 0
Eric S. Raymondf7f18512001-01-23 13:16:32 +000068 for d in path.split(os.pathsep):
69 exe = os.path.join(d, cmd)
70 if os.path.isfile(exe):
71 return 1
72 return 0
Fred Drakec70b4482000-07-09 16:45:56 +000073
Eric S. Raymondf7f18512001-01-23 13:16:32 +000074 class GenericBrowser:
75 def __init__(self, cmd):
76 self.command = cmd
Fred Drakec70b4482000-07-09 16:45:56 +000077
Eric S. Raymondcfa40962001-01-23 15:49:34 +000078 def open(self, url, new=0, autoraise=1):
Eric S. Raymondf7f18512001-01-23 13:16:32 +000079 os.system(self.command % url)
Fred Drakec70b4482000-07-09 16:45:56 +000080
Tim Peters658cba62001-02-09 20:06:00 +000081 def open_new(self, url): # Deprecated. May be removed in 2.1.
Eric S. Raymondf7f18512001-01-23 13:16:32 +000082 self.open(url)
Fred Drakec70b4482000-07-09 16:45:56 +000083
Eric S. Raymondf7f18512001-01-23 13:16:32 +000084 # Easy cases first -- register console browsers if we have them.
85 if os.environ.get("TERM"):
86 # The Links browser <http://artax.karlin.mff.cuni.cz/~mikulas/links/>
87 if _iscommand("links"):
88 register("links", None, GenericBrowser("links %s"))
89 # The Lynx browser <http://lynx.browser.org/>
90 if _iscommand("lynx"):
91 register("lynx", None, GenericBrowser("lynx %s"))
92 # The w3m browser <http://ei5nazha.yz.yamagata-u.ac.jp/~aito/w3m/eng/>
93 if _iscommand("w3m"):
94 register("w3m", None, GenericBrowser("w3m %s"))
Fred Drakec70b4482000-07-09 16:45:56 +000095
Eric S. Raymondf7f18512001-01-23 13:16:32 +000096 # X browsers have mre in the way of options
97 if os.environ.get("DISPLAY"):
98 # First, the Netscape series
99 if _iscommand("netscape") or _iscommand("mozilla"):
100 class Netscape:
101 "Launcher class for Netscape browsers."
Eric S. Raymondf7f18512001-01-23 13:16:32 +0000102 def __init__(self, name):
103 self.name = name
Fred Drakec70b4482000-07-09 16:45:56 +0000104
Eric S. Raymondf79cb2d2001-01-23 13:49:44 +0000105 def _remote(self, action, autoraise):
106 raise_opt = ("-noraise", "-raise")[autoraise]
Eric S. Raymondf7f18512001-01-23 13:16:32 +0000107 cmd = "%s %s -remote '%s' >/dev/null 2>&1" % (self.name, raise_opt, action)
108 rc = os.system(cmd)
109 if rc:
110 import time
111 os.system("%s -no-about-splash &" % self.name)
112 time.sleep(PROCESS_CREATION_DELAY)
113 rc = os.system(cmd)
114 return not rc
Fred Drakec70b4482000-07-09 16:45:56 +0000115
Eric S. Raymondf79cb2d2001-01-23 13:49:44 +0000116 def open(self, url, new=0, autoraise=1):
Eric S. Raymondf7f18512001-01-23 13:16:32 +0000117 if new:
Eric S. Raymondf79cb2d2001-01-23 13:49:44 +0000118 self._remote("openURL(%s, new-window)"%url, autoraise)
Eric S. Raymondf7f18512001-01-23 13:16:32 +0000119 else:
Eric S. Raymondf79cb2d2001-01-23 13:49:44 +0000120 self._remote("openURL(%s)" % url, autoraise)
Eric S. Raymondf7f18512001-01-23 13:16:32 +0000121
122 # Deprecated. May be removed in 2.1.
123 def open_new(self, url):
124 self.open(url, 1)
125
126 if _iscommand("mozilla"):
127 register("mozilla", None, Netscape("mozilla"))
128 if _iscommand("netscape"):
129 register("netscape", None, Netscape("netscape"))
130
131 # Next, Mosaic -- old but still in use.
132 if _iscommand("mosaic"):
133 register("mosaic", None, GenericBrowser("mosaic %s >/dev/null &"))
134
135 # Konqueror/kfm, the KDE browser.
136 if _iscommand("kfm"):
137 class Konqueror:
138 """Controller for the KDE File Manager (kfm, or Konqueror).
139
140 See http://developer.kde.org/documentation/other/kfmclient.html
141 for more information on the Konqueror remote-control interface.
142
143 """
144 def _remote(self, action):
145 cmd = "kfmclient %s >/dev/null 2>&1" % action
146 rc = os.system(cmd)
147 if rc:
148 import time
149 os.system("kfm -d &")
150 time.sleep(PROCESS_CREATION_DELAY)
151 rc = os.system(cmd)
152 return not rc
153
Eric S. Raymondcfa40962001-01-23 15:49:34 +0000154 def open(self, url, new=1, autoraise=1):
Eric S. Raymondf7f18512001-01-23 13:16:32 +0000155 # XXX Currently I know no way to prevent KFM from opening a new win.
156 self._remote("openURL %s" % url)
157
158 # Deprecated. May be removed in 2.1.
159 open_new = open
Eric S. Raymondf7f18512001-01-23 13:16:32 +0000160
161 register("kfm", Konqueror, None)
162
163 # Grail, the Python browser.
164 if _iscommand("grail"):
165 class Grail:
166 # There should be a way to maintain a connection to
167 # Grail, but the Grail remote control protocol doesn't
168 # really allow that at this point. It probably neverwill!
169 def _find_grail_rc(self):
170 import glob
171 import pwd
172 import socket
173 import tempfile
174 tempdir = os.path.join(tempfile.gettempdir(), ".grail-unix")
175 user = pwd.getpwuid(_os.getuid())[0]
176 filename = os.path.join(tempdir, user + "-*")
177 maybes = glob.glob(filename)
178 if not maybes:
179 return None
180 s = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
181 for fn in maybes:
182 # need to PING each one until we find one that's live
183 try:
184 s.connect(fn)
185 except socket.error:
186 # no good; attempt to clean it out, but don't fail:
187 try:
188 os.unlink(fn)
189 except IOError:
190 pass
191 else:
192 return s
193
194 def _remote(self, action):
195 s = self._find_grail_rc()
196 if not s:
197 return 0
198 s.send(action)
199 s.close()
200 return 1
201
Eric S. Raymondcfa40962001-01-23 15:49:34 +0000202 def open(self, url, new=0, autoraise=1):
Eric S. Raymondf7f18512001-01-23 13:16:32 +0000203 if new:
204 self._remote("LOADNEW " + url)
205 else:
206 self._remote("LOAD " + url)
207
208 # Deprecated. May be removed in 2.1.
209 def open_new(self, url):
210 self.open(url, 1)
211
212 register("grail", Grail, None)
213
214#
215# Platform support for Windows
216#
Fred Drakec70b4482000-07-09 16:45:56 +0000217
218if sys.platform[:3] == "win":
Eric S. Raymondf7f18512001-01-23 13:16:32 +0000219 global _tryorder
220 _tryorder = ("netscape", "windows-default")
221
222 class WindowsDefault:
Eric S. Raymondcfa40962001-01-23 15:49:34 +0000223 def open(self, url, new=0, autoraise=1):
Eric S. Raymondf7f18512001-01-23 13:16:32 +0000224 os.startfile(url)
225
226 def open_new(self, url): # Deprecated. May be removed in 2.1.
227 self.open(url)
228
Fred Drakec70b4482000-07-09 16:45:56 +0000229 register("windows-default", WindowsDefault)
Fred Drakec70b4482000-07-09 16:45:56 +0000230
Fred Drakec70b4482000-07-09 16:45:56 +0000231#
Eric S. Raymondf7f18512001-01-23 13:16:32 +0000232# Platform support for MacOS
233#
Fred Drakec70b4482000-07-09 16:45:56 +0000234
235try:
236 import ic
237except ImportError:
238 pass
239else:
240 class InternetConfig:
Eric S. Raymondcfa40962001-01-23 15:49:34 +0000241 def open(self, url, new=0, autoraise=1):
Guido van Rossum2595a832000-11-13 20:30:57 +0000242 ic.launchurl(url)
Fred Drakec70b4482000-07-09 16:45:56 +0000243
Eric S. Raymondf7f18512001-01-23 13:16:32 +0000244 def open_new(self, url): # Deprecated. May be removed in 2.1.
Fred Drakec70b4482000-07-09 16:45:56 +0000245 self.open(url)
246
Eric S. Raymondf7f18512001-01-23 13:16:32 +0000247 # internet-config is the only supported controller on MacOS,
248 # so don't mess with the default!
249 _tryorder = ("internet-config")
Fred Drakec70b4482000-07-09 16:45:56 +0000250 register("internet-config", InternetConfig)
Eric S. Raymondf7f18512001-01-23 13:16:32 +0000251
252# OK, now that we know what the default preference orders for each
253# platform are, allow user to override them with the BROWSER variable.
254#
255if os.environ.has_key("BROWSER"):
256 # It's the user's responsibility to register handlers for any unknown
257 # browser referenced by this value, before calling open().
258 _tryorder = os.environ["BROWSER"].split(":")
259else:
260 # Optimization: filter out alternatives that aren't available, so we can
261 # avoid has_key() tests at runtime. (This may also allow some unused
262 # classes and class-instance storage to be garbage-collected.)
263 _tryorder = filter(lambda x: _browsers.has_key(x.lower()) or x.find("%s")>-1,\
264 _tryorder)
265
266# end