blob: cb9dbb36bd8a6b77d63f1fc9eaf3f7688cc848d5 [file] [log] [blame]
Ka-Ping Yee0a8c29b2001-03-02 02:01:40 +00001"""Interfaces for launching and remotely controlling Web browsers."""
Fred Drakec70b4482000-07-09 16:45:56 +00002
3import os
4import sys
5
Skip Montanaro40fc1602001-03-01 04:27:19 +00006__all__ = ["Error", "open", "get", "register"]
7
Fred Drakec70b4482000-07-09 16:45:56 +00008class Error(Exception):
9 pass
10
Tim Peters658cba62001-02-09 20:06:00 +000011_browsers = {} # Dictionary of available browser controllers
12_tryorder = [] # Preference order of available browsers
Fred Drakec70b4482000-07-09 16:45:56 +000013
14def register(name, klass, instance=None):
15 """Register a browser connector and, optionally, connection."""
16 _browsers[name.lower()] = [klass, instance]
17
Eric S. Raymondf7f18512001-01-23 13:16:32 +000018def get(using=None):
19 """Return a browser launcher instance appropriate for the environment."""
Raymond Hettinger10ff7062002-06-02 03:04:52 +000020 if using is not None:
Eric S. Raymondf7f18512001-01-23 13:16:32 +000021 alternatives = [using]
22 else:
23 alternatives = _tryorder
24 for browser in alternatives:
25 if browser.find('%s') > -1:
26 # User gave us a command line, don't mess with it.
Eric S. Raymondf7eb4fa2001-03-31 01:50:52 +000027 return GenericBrowser(browser)
Eric S. Raymondf7f18512001-01-23 13:16:32 +000028 else:
Tim Peters658cba62001-02-09 20:06:00 +000029 # User gave us a browser name.
Fred Drakef4e5bd92001-04-12 22:07:27 +000030 try:
31 command = _browsers[browser.lower()]
32 except KeyError:
33 command = _synthesize(browser)
Eric S. Raymondf7f18512001-01-23 13:16:32 +000034 if command[1] is None:
35 return command[0]()
36 else:
37 return command[1]
38 raise Error("could not locate runnable browser")
Fred Drakec70b4482000-07-09 16:45:56 +000039
40# Please note: the following definition hides a builtin function.
41
Eric S. Raymondf79cb2d2001-01-23 13:49:44 +000042def open(url, new=0, autoraise=1):
43 get().open(url, new, autoraise)
Fred Drakec70b4482000-07-09 16:45:56 +000044
Fred Drake3f8f1642001-07-19 03:46:26 +000045def open_new(url):
Eric S. Raymondf7f18512001-01-23 13:16:32 +000046 get().open(url, 1)
Fred Drakec70b4482000-07-09 16:45:56 +000047
Fred Drakef4e5bd92001-04-12 22:07:27 +000048
49def _synthesize(browser):
50 """Attempt to synthesize a controller base on existing controllers.
51
52 This is useful to create a controller when a user specifies a path to
53 an entry in the BROWSER environment variable -- we can copy a general
54 controller to operate using a specific installation of the desired
55 browser in this way.
56
57 If we can't create a controller in this way, or if there is no
58 executable for the requested browser, return [None, None].
59
60 """
61 if not os.path.exists(browser):
62 return [None, None]
63 name = os.path.basename(browser)
64 try:
65 command = _browsers[name.lower()]
66 except KeyError:
67 return [None, None]
68 # now attempt to clone to fit the new name:
69 controller = command[1]
70 if controller and name.lower() == controller.basename:
71 import copy
72 controller = copy.copy(controller)
73 controller.name = browser
74 controller.basename = os.path.basename(browser)
75 register(browser, None, controller)
76 return [None, controller]
Andrew M. Kuchling118aa532001-08-13 14:37:23 +000077 return [None, None]
Fred Drakef4e5bd92001-04-12 22:07:27 +000078
Fred Drake3f8f1642001-07-19 03:46:26 +000079
80def _iscommand(cmd):
Tim Petersbc0e9102002-04-04 22:55:58 +000081 """Return True if cmd can be found on the executable search path."""
Fred Drake3f8f1642001-07-19 03:46:26 +000082 path = os.environ.get("PATH")
83 if not path:
Tim Petersbc0e9102002-04-04 22:55:58 +000084 return False
Fred Drake3f8f1642001-07-19 03:46:26 +000085 for d in path.split(os.pathsep):
86 exe = os.path.join(d, cmd)
87 if os.path.isfile(exe):
Tim Petersbc0e9102002-04-04 22:55:58 +000088 return True
89 return False
Fred Drake3f8f1642001-07-19 03:46:26 +000090
91
92PROCESS_CREATION_DELAY = 4
93
94
95class GenericBrowser:
96 def __init__(self, cmd):
97 self.name, self.args = cmd.split(None, 1)
98 self.basename = os.path.basename(self.name)
99
100 def open(self, url, new=0, autoraise=1):
Fred Drake925f1442002-01-07 15:29:01 +0000101 assert "'" not in url
Fred Drake3f8f1642001-07-19 03:46:26 +0000102 command = "%s %s" % (self.name, self.args)
103 os.system(command % url)
104
105 def open_new(self, url):
106 self.open(url)
107
108
109class Netscape:
110 "Launcher class for Netscape browsers."
111 def __init__(self, name):
112 self.name = name
113 self.basename = os.path.basename(name)
114
115 def _remote(self, action, autoraise):
116 raise_opt = ("-noraise", "-raise")[autoraise]
117 cmd = "%s %s -remote '%s' >/dev/null 2>&1" % (self.name,
118 raise_opt,
119 action)
120 rc = os.system(cmd)
121 if rc:
122 import time
123 os.system("%s &" % self.name)
124 time.sleep(PROCESS_CREATION_DELAY)
125 rc = os.system(cmd)
126 return not rc
127
128 def open(self, url, new=0, autoraise=1):
129 if new:
130 self._remote("openURL(%s, new-window)"%url, autoraise)
131 else:
132 self._remote("openURL(%s)" % url, autoraise)
133
134 def open_new(self, url):
135 self.open(url, 1)
136
137
Neal Norwitz8dd28eb2002-10-10 22:49:29 +0000138class Galeon:
139 """Launcher class for Galeon browsers."""
140 def __init__(self, name):
141 self.name = name
142 self.basename = os.path.basename(name)
143
144 def _remote(self, action, autoraise):
145 raise_opt = ("--noraise", "")[autoraise]
146 cmd = "%s %s %s >/dev/null 2>&1" % (self.name, raise_opt, action)
147 rc = os.system(cmd)
148 if rc:
149 import time
150 os.system("%s >/dev/null 2>&1 &" % self.name)
151 time.sleep(PROCESS_CREATION_DELAY)
152 rc = os.system(cmd)
153 return not rc
154
155 def open(self, url, new=0, autoraise=1):
156 if new:
157 self._remote("-w '%s'" % url, autoraise)
158 else:
159 self._remote("-n '%s'" % url, autoraise)
160
161 def open_new(self, url):
162 self.open(url, 1)
163
164
Fred Drake3f8f1642001-07-19 03:46:26 +0000165class Konqueror:
166 """Controller for the KDE File Manager (kfm, or Konqueror).
167
168 See http://developer.kde.org/documentation/other/kfmclient.html
169 for more information on the Konqueror remote-control interface.
170
171 """
172 def __init__(self):
173 if _iscommand("konqueror"):
174 self.name = self.basename = "konqueror"
175 else:
176 self.name = self.basename = "kfm"
177
178 def _remote(self, action):
Neal Norwitz520cdf72002-10-11 22:04:22 +0000179 cmd = "kfmclient %s >/dev/null 2>&1" % action
Fred Drake3f8f1642001-07-19 03:46:26 +0000180 rc = os.system(cmd)
181 if rc:
182 import time
183 if self.basename == "konqueror":
184 os.system(self.name + " --silent &")
185 else:
186 os.system(self.name + " -d &")
187 time.sleep(PROCESS_CREATION_DELAY)
188 rc = os.system(cmd)
189 return not rc
190
191 def open(self, url, new=1, autoraise=1):
192 # XXX Currently I know no way to prevent KFM from
193 # opening a new win.
Neal Norwitz520cdf72002-10-11 22:04:22 +0000194 assert "'" not in url
Fred Drake925f1442002-01-07 15:29:01 +0000195 self._remote("openURL '%s'" % url)
Fred Drake3f8f1642001-07-19 03:46:26 +0000196
197 open_new = open
198
199
200class Grail:
201 # There should be a way to maintain a connection to Grail, but the
202 # Grail remote control protocol doesn't really allow that at this
203 # point. It probably neverwill!
204 def _find_grail_rc(self):
205 import glob
206 import pwd
207 import socket
208 import tempfile
209 tempdir = os.path.join(tempfile.gettempdir(),
210 ".grail-unix")
Fred Drake16623fe2001-10-13 16:00:52 +0000211 user = pwd.getpwuid(os.getuid())[0]
Fred Drake3f8f1642001-07-19 03:46:26 +0000212 filename = os.path.join(tempdir, user + "-*")
213 maybes = glob.glob(filename)
214 if not maybes:
215 return None
216 s = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
217 for fn in maybes:
218 # need to PING each one until we find one that's live
219 try:
220 s.connect(fn)
221 except socket.error:
222 # no good; attempt to clean it out, but don't fail:
223 try:
224 os.unlink(fn)
225 except IOError:
226 pass
227 else:
228 return s
229
230 def _remote(self, action):
231 s = self._find_grail_rc()
232 if not s:
233 return 0
234 s.send(action)
235 s.close()
236 return 1
237
238 def open(self, url, new=0, autoraise=1):
239 if new:
240 self._remote("LOADNEW " + url)
241 else:
242 self._remote("LOAD " + url)
243
244 def open_new(self, url):
245 self.open(url, 1)
246
247
248class WindowsDefault:
249 def open(self, url, new=0, autoraise=1):
250 os.startfile(url)
251
252 def open_new(self, url):
253 self.open(url)
Fred Drakec70b4482000-07-09 16:45:56 +0000254
Tim Peters658cba62001-02-09 20:06:00 +0000255#
Eric S. Raymondf7f18512001-01-23 13:16:32 +0000256# Platform support for Unix
257#
Fred Drakec70b4482000-07-09 16:45:56 +0000258
Eric S. Raymondf7f18512001-01-23 13:16:32 +0000259# This is the right test because all these Unix browsers require either
260# a console terminal of an X display to run. Note that we cannot split
261# the TERM and DISPLAY cases, because we might be running Python from inside
262# an xterm.
263if os.environ.get("TERM") or os.environ.get("DISPLAY"):
Gustavo Niemeyer1456fde2002-11-25 17:25:04 +0000264 _tryorder = ["links", "lynx", "w3m"]
Fred Drakec70b4482000-07-09 16:45:56 +0000265
Eric S. Raymondf7f18512001-01-23 13:16:32 +0000266 # Easy cases first -- register console browsers if we have them.
267 if os.environ.get("TERM"):
268 # The Links browser <http://artax.karlin.mff.cuni.cz/~mikulas/links/>
269 if _iscommand("links"):
Fred Drake925f1442002-01-07 15:29:01 +0000270 register("links", None, GenericBrowser("links '%s'"))
Eric S. Raymondf7f18512001-01-23 13:16:32 +0000271 # The Lynx browser <http://lynx.browser.org/>
272 if _iscommand("lynx"):
Fred Drake925f1442002-01-07 15:29:01 +0000273 register("lynx", None, GenericBrowser("lynx '%s'"))
Eric S. Raymondf7f18512001-01-23 13:16:32 +0000274 # The w3m browser <http://ei5nazha.yz.yamagata-u.ac.jp/~aito/w3m/eng/>
275 if _iscommand("w3m"):
Fred Drake925f1442002-01-07 15:29:01 +0000276 register("w3m", None, GenericBrowser("w3m '%s'"))
Fred Drakec70b4482000-07-09 16:45:56 +0000277
Ka-Ping Yee0a8c29b2001-03-02 02:01:40 +0000278 # X browsers have more in the way of options
Eric S. Raymondf7f18512001-01-23 13:16:32 +0000279 if os.environ.get("DISPLAY"):
Gustavo Niemeyer1456fde2002-11-25 17:25:04 +0000280 _tryorder = ["galeon", "skipstone", "mozilla", "netscape",
281 "kfm", "grail"] + _tryorder
282
Eric S. Raymondf7f18512001-01-23 13:16:32 +0000283 # First, the Netscape series
Fred Drake925f1442002-01-07 15:29:01 +0000284 if _iscommand("mozilla"):
285 register("mozilla", None, Netscape("mozilla"))
286 if _iscommand("netscape"):
287 register("netscape", None, Netscape("netscape"))
Eric S. Raymondf7f18512001-01-23 13:16:32 +0000288
289 # Next, Mosaic -- old but still in use.
290 if _iscommand("mosaic"):
Fred Drake925f1442002-01-07 15:29:01 +0000291 register("mosaic", None, GenericBrowser(
292 "mosaic '%s' >/dev/null &"))
Eric S. Raymondf7f18512001-01-23 13:16:32 +0000293
Neal Norwitz8dd28eb2002-10-10 22:49:29 +0000294 # Gnome's Galeon
295 if _iscommand("galeon"):
296 register("galeon", None, Galeon("galeon"))
297
Gustavo Niemeyer1456fde2002-11-25 17:25:04 +0000298 # Skipstone, another Gtk/Mozilla based browser
299 if _iscommand("skipstone"):
300 register("skipstone", None, GenericBrowser(
301 "skipstone '%s' >/dev/null &"))
302
Eric S. Raymondf7f18512001-01-23 13:16:32 +0000303 # Konqueror/kfm, the KDE browser.
Fred Drakefc31f262001-03-26 15:06:15 +0000304 if _iscommand("kfm") or _iscommand("konqueror"):
Fred Drakef4e5bd92001-04-12 22:07:27 +0000305 register("kfm", Konqueror, Konqueror())
Eric S. Raymondf7f18512001-01-23 13:16:32 +0000306
307 # Grail, the Python browser.
308 if _iscommand("grail"):
Eric S. Raymondf7f18512001-01-23 13:16:32 +0000309 register("grail", Grail, None)
310
Fred Drake3f8f1642001-07-19 03:46:26 +0000311
312class InternetConfig:
313 def open(self, url, new=0, autoraise=1):
314 ic.launchurl(url)
315
316 def open_new(self, url):
317 self.open(url)
318
319
Eric S. Raymondf7f18512001-01-23 13:16:32 +0000320#
321# Platform support for Windows
322#
Fred Drakec70b4482000-07-09 16:45:56 +0000323
324if sys.platform[:3] == "win":
Guido van Rossumcb331652001-12-03 15:51:31 +0000325 _tryorder = ["netscape", "windows-default"]
Fred Drakec70b4482000-07-09 16:45:56 +0000326 register("windows-default", WindowsDefault)
Fred Drakec70b4482000-07-09 16:45:56 +0000327
Fred Drakec70b4482000-07-09 16:45:56 +0000328#
Eric S. Raymondf7f18512001-01-23 13:16:32 +0000329# Platform support for MacOS
330#
Fred Drakec70b4482000-07-09 16:45:56 +0000331
332try:
333 import ic
334except ImportError:
335 pass
336else:
Eric S. Raymondf7f18512001-01-23 13:16:32 +0000337 # internet-config is the only supported controller on MacOS,
338 # so don't mess with the default!
Guido van Rossumcb331652001-12-03 15:51:31 +0000339 _tryorder = ["internet-config"]
Fred Drakec70b4482000-07-09 16:45:56 +0000340 register("internet-config", InternetConfig)
Eric S. Raymondf7f18512001-01-23 13:16:32 +0000341
Martin v. Löwis3a89b2b2001-11-25 14:35:58 +0000342#
343# Platform support for OS/2
344#
345
346if sys.platform[:3] == "os2" and _iscommand("netscape.exe"):
Guido van Rossumcb331652001-12-03 15:51:31 +0000347 _tryorder = ["os2netscape"]
Martin v. Löwis3a89b2b2001-11-25 14:35:58 +0000348 register("os2netscape", None,
349 GenericBrowser("start netscape.exe %s"))
350
Eric S. Raymondf7f18512001-01-23 13:16:32 +0000351# OK, now that we know what the default preference orders for each
352# platform are, allow user to override them with the BROWSER variable.
353#
Raymond Hettinger54f02222002-06-01 14:18:47 +0000354if "BROWSER" in os.environ:
Eric S. Raymondf7f18512001-01-23 13:16:32 +0000355 # It's the user's responsibility to register handlers for any unknown
356 # browser referenced by this value, before calling open().
Guido van Rossum4b402f22001-12-04 17:43:22 +0000357 _tryorder = os.environ["BROWSER"].split(os.pathsep)
Skip Montanarocdab3bf2001-07-18 20:03:32 +0000358
359for cmd in _tryorder:
Raymond Hettinger54f02222002-06-01 14:18:47 +0000360 if not cmd.lower() in _browsers:
Skip Montanarocdab3bf2001-07-18 20:03:32 +0000361 if _iscommand(cmd.lower()):
Fred Drake925f1442002-01-07 15:29:01 +0000362 register(cmd.lower(), None, GenericBrowser(
363 "%s '%%s'" % cmd.lower()))
Jack Jansenff0a7b82002-03-15 13:47:32 +0000364cmd = None # to make del work if _tryorder was empty
Neal Norwitzf963b452002-02-11 18:11:09 +0000365del cmd
Skip Montanarocdab3bf2001-07-18 20:03:32 +0000366
Raymond Hettinger54f02222002-06-01 14:18:47 +0000367_tryorder = filter(lambda x: x.lower() in _browsers
Skip Montanarocdab3bf2001-07-18 20:03:32 +0000368 or x.find("%s") > -1, _tryorder)
369# what to do if _tryorder is now empty?