blob: 6f43b7f1265d1abdbb213b9e634bfa6d55122032 [file] [log] [blame]
Benjamin Peterson90f5ba52010-03-11 22:53:45 +00001#! /usr/bin/env python3
Ka-Ping Yee0a8c29b2001-03-02 02:01:40 +00002"""Interfaces for launching and remotely controlling Web browsers."""
Guido van Rossum992d4a32007-07-11 13:09:30 +00003# Maintained by Georg Brandl.
Fred Drakec70b4482000-07-09 16:45:56 +00004
5import os
Guido van Rossumd8faa362007-04-27 19:54:29 +00006import shlex
Serhiy Storchaka540dcba2013-02-13 12:19:40 +02007import shutil
Fred Drakec70b4482000-07-09 16:45:56 +00008import sys
Georg Brandl23929f22006-01-20 21:03:35 +00009import subprocess
Fred Drakec70b4482000-07-09 16:45:56 +000010
Georg Brandle8f24432005-10-03 14:16:44 +000011__all__ = ["Error", "open", "open_new", "open_new_tab", "get", "register"]
Skip Montanaro40fc1602001-03-01 04:27:19 +000012
Fred Drakec70b4482000-07-09 16:45:56 +000013class Error(Exception):
14 pass
15
Tim Peters658cba62001-02-09 20:06:00 +000016_browsers = {} # Dictionary of available browser controllers
17_tryorder = [] # Preference order of available browsers
Fred Drakec70b4482000-07-09 16:45:56 +000018
Georg Brandle8f24432005-10-03 14:16:44 +000019def register(name, klass, instance=None, update_tryorder=1):
Fred Drakec70b4482000-07-09 16:45:56 +000020 """Register a browser connector and, optionally, connection."""
21 _browsers[name.lower()] = [klass, instance]
Georg Brandle8f24432005-10-03 14:16:44 +000022 if update_tryorder > 0:
23 _tryorder.append(name)
24 elif update_tryorder < 0:
25 _tryorder.insert(0, name)
Fred Drakec70b4482000-07-09 16:45:56 +000026
Eric S. Raymondf7f18512001-01-23 13:16:32 +000027def get(using=None):
28 """Return a browser launcher instance appropriate for the environment."""
Raymond Hettinger10ff7062002-06-02 03:04:52 +000029 if using is not None:
Eric S. Raymondf7f18512001-01-23 13:16:32 +000030 alternatives = [using]
31 else:
32 alternatives = _tryorder
33 for browser in alternatives:
Raymond Hettingerbac788a2004-05-04 09:21:43 +000034 if '%s' in browser:
Georg Brandl23929f22006-01-20 21:03:35 +000035 # User gave us a command line, split it into name and args
Guido van Rossumd8faa362007-04-27 19:54:29 +000036 browser = shlex.split(browser)
37 if browser[-1] == '&':
38 return BackgroundBrowser(browser[:-1])
39 else:
40 return GenericBrowser(browser)
Eric S. Raymondf7f18512001-01-23 13:16:32 +000041 else:
Georg Brandle8f24432005-10-03 14:16:44 +000042 # User gave us a browser name or path.
Fred Drakef4e5bd92001-04-12 22:07:27 +000043 try:
44 command = _browsers[browser.lower()]
45 except KeyError:
46 command = _synthesize(browser)
Georg Brandle8f24432005-10-03 14:16:44 +000047 if command[1] is not None:
Eric S. Raymondf7f18512001-01-23 13:16:32 +000048 return command[1]
Georg Brandle8f24432005-10-03 14:16:44 +000049 elif command[0] is not None:
50 return command[0]()
Eric S. Raymondf7f18512001-01-23 13:16:32 +000051 raise Error("could not locate runnable browser")
Fred Drakec70b4482000-07-09 16:45:56 +000052
53# Please note: the following definition hides a builtin function.
Georg Brandle8f24432005-10-03 14:16:44 +000054# It is recommended one does "import webbrowser" and uses webbrowser.open(url)
55# instead of "from webbrowser import *".
Fred Drakec70b4482000-07-09 16:45:56 +000056
Alexandre Vassalottie223eb82009-07-29 20:12:15 +000057def open(url, new=0, autoraise=True):
Georg Brandle8f24432005-10-03 14:16:44 +000058 for name in _tryorder:
59 browser = get(name)
60 if browser.open(url, new, autoraise):
61 return True
62 return False
Fred Drakec70b4482000-07-09 16:45:56 +000063
Fred Drake3f8f1642001-07-19 03:46:26 +000064def open_new(url):
Georg Brandle8f24432005-10-03 14:16:44 +000065 return open(url, 1)
66
67def open_new_tab(url):
68 return open(url, 2)
Fred Drakec70b4482000-07-09 16:45:56 +000069
Fred Drakef4e5bd92001-04-12 22:07:27 +000070
Georg Brandle8f24432005-10-03 14:16:44 +000071def _synthesize(browser, update_tryorder=1):
Fred Drakef4e5bd92001-04-12 22:07:27 +000072 """Attempt to synthesize a controller base on existing controllers.
73
74 This is useful to create a controller when a user specifies a path to
75 an entry in the BROWSER environment variable -- we can copy a general
76 controller to operate using a specific installation of the desired
77 browser in this way.
78
79 If we can't create a controller in this way, or if there is no
80 executable for the requested browser, return [None, None].
81
82 """
Georg Brandle8f24432005-10-03 14:16:44 +000083 cmd = browser.split()[0]
Serhiy Storchaka540dcba2013-02-13 12:19:40 +020084 if not shutil.which(cmd):
Fred Drakef4e5bd92001-04-12 22:07:27 +000085 return [None, None]
Georg Brandle8f24432005-10-03 14:16:44 +000086 name = os.path.basename(cmd)
Fred Drakef4e5bd92001-04-12 22:07:27 +000087 try:
88 command = _browsers[name.lower()]
89 except KeyError:
90 return [None, None]
91 # now attempt to clone to fit the new name:
92 controller = command[1]
93 if controller and name.lower() == controller.basename:
94 import copy
95 controller = copy.copy(controller)
96 controller.name = browser
97 controller.basename = os.path.basename(browser)
Georg Brandle8f24432005-10-03 14:16:44 +000098 register(browser, None, controller, update_tryorder)
Fred Drakef4e5bd92001-04-12 22:07:27 +000099 return [None, controller]
Andrew M. Kuchling118aa532001-08-13 14:37:23 +0000100 return [None, None]
Fred Drakef4e5bd92001-04-12 22:07:27 +0000101
Fred Drake3f8f1642001-07-19 03:46:26 +0000102
Georg Brandle8f24432005-10-03 14:16:44 +0000103# General parent classes
104
105class BaseBrowser(object):
Georg Brandl23929f22006-01-20 21:03:35 +0000106 """Parent class for all browsers. Do not use directly."""
Tim Peters887c0802006-01-20 23:40:56 +0000107
Georg Brandl23929f22006-01-20 21:03:35 +0000108 args = ['%s']
Tim Peters887c0802006-01-20 23:40:56 +0000109
Georg Brandle8f24432005-10-03 14:16:44 +0000110 def __init__(self, name=""):
111 self.name = name
Georg Brandlb9801132005-10-08 20:47:38 +0000112 self.basename = name
Tim Peters536cf992005-12-25 23:18:31 +0000113
Alexandre Vassalottie223eb82009-07-29 20:12:15 +0000114 def open(self, url, new=0, autoraise=True):
Neal Norwitz196f7332005-10-04 03:17:49 +0000115 raise NotImplementedError
116
Georg Brandle8f24432005-10-03 14:16:44 +0000117 def open_new(self, url):
118 return self.open(url, 1)
119
120 def open_new_tab(self, url):
121 return self.open(url, 2)
Fred Drake3f8f1642001-07-19 03:46:26 +0000122
123
Georg Brandle8f24432005-10-03 14:16:44 +0000124class GenericBrowser(BaseBrowser):
125 """Class for all browsers started with a command
126 and without remote functionality."""
127
Georg Brandl23929f22006-01-20 21:03:35 +0000128 def __init__(self, name):
Guido van Rossum3172c5d2007-10-16 18:12:55 +0000129 if isinstance(name, str):
Georg Brandl23929f22006-01-20 21:03:35 +0000130 self.name = name
Guido van Rossum992d4a32007-07-11 13:09:30 +0000131 self.args = ["%s"]
Georg Brandl23929f22006-01-20 21:03:35 +0000132 else:
133 # name should be a list with arguments
134 self.name = name[0]
135 self.args = name[1:]
Georg Brandlb9801132005-10-08 20:47:38 +0000136 self.basename = os.path.basename(self.name)
Fred Drake3f8f1642001-07-19 03:46:26 +0000137
Alexandre Vassalottie223eb82009-07-29 20:12:15 +0000138 def open(self, url, new=0, autoraise=True):
Tim Peters887c0802006-01-20 23:40:56 +0000139 cmdline = [self.name] + [arg.replace("%s", url)
Georg Brandl23929f22006-01-20 21:03:35 +0000140 for arg in self.args]
141 try:
Thomas Wouters89f507f2006-12-13 04:49:30 +0000142 if sys.platform[:3] == 'win':
143 p = subprocess.Popen(cmdline)
144 else:
145 p = subprocess.Popen(cmdline, close_fds=True)
Georg Brandl23929f22006-01-20 21:03:35 +0000146 return not p.wait()
147 except OSError:
148 return False
149
150
151class BackgroundBrowser(GenericBrowser):
152 """Class for all browsers which are to be started in the
153 background."""
154
Alexandre Vassalottie223eb82009-07-29 20:12:15 +0000155 def open(self, url, new=0, autoraise=True):
Georg Brandl23929f22006-01-20 21:03:35 +0000156 cmdline = [self.name] + [arg.replace("%s", url)
157 for arg in self.args]
Georg Brandl23929f22006-01-20 21:03:35 +0000158 try:
Thomas Wouters89f507f2006-12-13 04:49:30 +0000159 if sys.platform[:3] == 'win':
160 p = subprocess.Popen(cmdline)
161 else:
Gregory P. Smithfeac3982014-08-27 09:34:38 -0700162 p = subprocess.Popen(cmdline, close_fds=True,
163 start_new_session=True)
Georg Brandl23929f22006-01-20 21:03:35 +0000164 return (p.poll() is None)
165 except OSError:
166 return False
Fred Drake3f8f1642001-07-19 03:46:26 +0000167
168
Georg Brandle8f24432005-10-03 14:16:44 +0000169class UnixBrowser(BaseBrowser):
170 """Parent class for all Unix browsers with remote functionality."""
Fred Drake3f8f1642001-07-19 03:46:26 +0000171
Georg Brandle8f24432005-10-03 14:16:44 +0000172 raise_opts = None
R David Murray94dd7cb2012-09-03 12:30:12 -0400173 background = False
174 redirect_stdout = True
175 # In remote_args, %s will be replaced with the requested URL. %action will
176 # be replaced depending on the value of 'new' passed to open.
177 # remote_action is used for new=0 (open). If newwin is not None, it is
178 # used for new=1 (open_new). If newtab is not None, it is used for
179 # new=3 (open_new_tab). After both substitutions are made, any empty
180 # strings in the transformed remote_args list will be removed.
Georg Brandl23929f22006-01-20 21:03:35 +0000181 remote_args = ['%action', '%s']
Georg Brandle8f24432005-10-03 14:16:44 +0000182 remote_action = None
183 remote_action_newwin = None
184 remote_action_newtab = None
Georg Brandle8f24432005-10-03 14:16:44 +0000185
Georg Brandl23929f22006-01-20 21:03:35 +0000186 def _invoke(self, args, remote, autoraise):
187 raise_opt = []
188 if remote and self.raise_opts:
189 # use autoraise argument only for remote invocation
Alexandre Vassalottie223eb82009-07-29 20:12:15 +0000190 autoraise = int(autoraise)
Georg Brandl23929f22006-01-20 21:03:35 +0000191 opt = self.raise_opts[autoraise]
192 if opt: raise_opt = [opt]
193
194 cmdline = [self.name] + raise_opt + args
Tim Peters887c0802006-01-20 23:40:56 +0000195
Georg Brandl23929f22006-01-20 21:03:35 +0000196 if remote or self.background:
R David Murray02ca1442012-09-03 12:44:29 -0400197 inout = subprocess.DEVNULL
Georg Brandl23929f22006-01-20 21:03:35 +0000198 else:
199 # for TTY browsers, we need stdin/out
200 inout = None
Georg Brandl23929f22006-01-20 21:03:35 +0000201 p = subprocess.Popen(cmdline, close_fds=True, stdin=inout,
202 stdout=(self.redirect_stdout and inout or None),
Gregory P. Smith8f7724f2011-03-15 15:24:43 -0400203 stderr=inout, start_new_session=True)
Georg Brandl23929f22006-01-20 21:03:35 +0000204 if remote:
Jesus Ceac9aa3212012-08-01 03:57:52 +0200205 # wait at most five seconds. If the subprocess is not finished, the
Georg Brandl23929f22006-01-20 21:03:35 +0000206 # remote invocation has (hopefully) started a new instance.
Jesus Ceac9aa3212012-08-01 03:57:52 +0200207 try:
208 rc = p.wait(5)
209 # if remote call failed, open() will try direct invocation
210 return not rc
211 except subprocess.TimeoutExpired:
212 return True
Georg Brandl23929f22006-01-20 21:03:35 +0000213 elif self.background:
214 if p.poll() is None:
215 return True
216 else:
217 return False
218 else:
219 return not p.wait()
Fred Drake3f8f1642001-07-19 03:46:26 +0000220
Alexandre Vassalottie223eb82009-07-29 20:12:15 +0000221 def open(self, url, new=0, autoraise=True):
Georg Brandle8f24432005-10-03 14:16:44 +0000222 if new == 0:
223 action = self.remote_action
224 elif new == 1:
225 action = self.remote_action_newwin
226 elif new == 2:
227 if self.remote_action_newtab is None:
228 action = self.remote_action_newwin
229 else:
230 action = self.remote_action_newtab
Fred Drake3f8f1642001-07-19 03:46:26 +0000231 else:
Georg Brandl23929f22006-01-20 21:03:35 +0000232 raise Error("Bad 'new' parameter to open(); " +
233 "expected 0, 1, or 2, got %s" % new)
Tim Peters887c0802006-01-20 23:40:56 +0000234
Georg Brandl23929f22006-01-20 21:03:35 +0000235 args = [arg.replace("%s", url).replace("%action", action)
236 for arg in self.remote_args]
R David Murray94dd7cb2012-09-03 12:30:12 -0400237 args = [arg for arg in args if arg]
Georg Brandl23929f22006-01-20 21:03:35 +0000238 success = self._invoke(args, True, autoraise)
239 if not success:
240 # remote invocation failed, try straight way
241 args = [arg.replace("%s", url) for arg in self.args]
242 return self._invoke(args, False, False)
243 else:
244 return True
Fred Drake3f8f1642001-07-19 03:46:26 +0000245
246
Georg Brandle8f24432005-10-03 14:16:44 +0000247class Mozilla(UnixBrowser):
Serhiy Storchakac9b750d2016-10-30 19:16:33 +0200248 """Launcher class for Mozilla browsers."""
249
250 remote_args = ['%action', '%s']
251 remote_action = ""
252 remote_action_newwin = "-new-window"
253 remote_action_newtab = "-new-tab"
254 background = True
255
256
257class Netscape(UnixBrowser):
258 """Launcher class for Netscape browser."""
Neal Norwitz8dd28eb2002-10-10 22:49:29 +0000259
Georg Brandl23929f22006-01-20 21:03:35 +0000260 raise_opts = ["-noraise", "-raise"]
Georg Brandl23929f22006-01-20 21:03:35 +0000261 remote_args = ['-remote', 'openURL(%s%action)']
262 remote_action = ""
263 remote_action_newwin = ",new-window"
264 remote_action_newtab = ",new-tab"
Georg Brandl23929f22006-01-20 21:03:35 +0000265 background = True
Neal Norwitz8dd28eb2002-10-10 22:49:29 +0000266
Neal Norwitz8dd28eb2002-10-10 22:49:29 +0000267
Georg Brandle8f24432005-10-03 14:16:44 +0000268class Galeon(UnixBrowser):
269 """Launcher class for Galeon/Epiphany browsers."""
270
Georg Brandl23929f22006-01-20 21:03:35 +0000271 raise_opts = ["-noraise", ""]
272 remote_args = ['%action', '%s']
273 remote_action = "-n"
274 remote_action_newwin = "-w"
Georg Brandl23929f22006-01-20 21:03:35 +0000275 background = True
Fred Drake3f8f1642001-07-19 03:46:26 +0000276
277
Senthil Kumaranea6b4182011-12-21 22:20:32 +0800278class Chrome(UnixBrowser):
279 "Launcher class for Google Chrome browser."
280
281 remote_args = ['%action', '%s']
282 remote_action = ""
283 remote_action_newwin = "--new-window"
284 remote_action_newtab = ""
285 background = True
286
287Chromium = Chrome
288
289
Georg Brandle8f24432005-10-03 14:16:44 +0000290class Opera(UnixBrowser):
291 "Launcher class for Opera browser."
292
Terry Reedydad532f2010-12-28 19:30:19 +0000293 raise_opts = ["-noraise", ""]
Georg Brandl23929f22006-01-20 21:03:35 +0000294 remote_args = ['-remote', 'openURL(%s%action)']
295 remote_action = ""
296 remote_action_newwin = ",new-window"
297 remote_action_newtab = ",new-page"
298 background = True
Georg Brandle8f24432005-10-03 14:16:44 +0000299
300
301class Elinks(UnixBrowser):
302 "Launcher class for Elinks browsers."
303
Georg Brandl23929f22006-01-20 21:03:35 +0000304 remote_args = ['-remote', 'openURL(%s%action)']
305 remote_action = ""
306 remote_action_newwin = ",new-window"
307 remote_action_newtab = ",new-tab"
308 background = False
Georg Brandle8f24432005-10-03 14:16:44 +0000309
Georg Brandl23929f22006-01-20 21:03:35 +0000310 # elinks doesn't like its stdout to be redirected -
311 # it uses redirected stdout as a signal to do -dump
312 redirect_stdout = False
313
314
315class Konqueror(BaseBrowser):
316 """Controller for the KDE File Manager (kfm, or Konqueror).
317
318 See the output of ``kfmclient --commands``
319 for more information on the Konqueror remote-control interface.
320 """
321
Alexandre Vassalottie223eb82009-07-29 20:12:15 +0000322 def open(self, url, new=0, autoraise=True):
Georg Brandl23929f22006-01-20 21:03:35 +0000323 # XXX Currently I know no way to prevent KFM from opening a new win.
324 if new == 2:
325 action = "newTab"
326 else:
327 action = "openURL"
Tim Peters887c0802006-01-20 23:40:56 +0000328
R David Murray02ca1442012-09-03 12:44:29 -0400329 devnull = subprocess.DEVNULL
Tim Peters887c0802006-01-20 23:40:56 +0000330
Georg Brandl23929f22006-01-20 21:03:35 +0000331 try:
332 p = subprocess.Popen(["kfmclient", action, url],
333 close_fds=True, stdin=devnull,
334 stdout=devnull, stderr=devnull)
335 except OSError:
336 # fall through to next variant
337 pass
338 else:
339 p.wait()
340 # kfmclient's return code unfortunately has no meaning as it seems
341 return True
342
343 try:
344 p = subprocess.Popen(["konqueror", "--silent", url],
345 close_fds=True, stdin=devnull,
346 stdout=devnull, stderr=devnull,
Gregory P. Smithfeac3982014-08-27 09:34:38 -0700347 start_new_session=True)
Georg Brandl23929f22006-01-20 21:03:35 +0000348 except OSError:
349 # fall through to next variant
350 pass
351 else:
352 if p.poll() is None:
353 # Should be running now.
354 return True
Tim Peters887c0802006-01-20 23:40:56 +0000355
Georg Brandl23929f22006-01-20 21:03:35 +0000356 try:
357 p = subprocess.Popen(["kfm", "-d", url],
358 close_fds=True, stdin=devnull,
359 stdout=devnull, stderr=devnull,
Gregory P. Smithfeac3982014-08-27 09:34:38 -0700360 start_new_session=True)
Georg Brandl23929f22006-01-20 21:03:35 +0000361 except OSError:
362 return False
363 else:
364 return (p.poll() is None)
Georg Brandle8f24432005-10-03 14:16:44 +0000365
366
367class Grail(BaseBrowser):
Fred Drake3f8f1642001-07-19 03:46:26 +0000368 # There should be a way to maintain a connection to Grail, but the
369 # Grail remote control protocol doesn't really allow that at this
Georg Brandl23929f22006-01-20 21:03:35 +0000370 # point. It probably never will!
Fred Drake3f8f1642001-07-19 03:46:26 +0000371 def _find_grail_rc(self):
372 import glob
373 import pwd
374 import socket
375 import tempfile
376 tempdir = os.path.join(tempfile.gettempdir(),
377 ".grail-unix")
Fred Drake16623fe2001-10-13 16:00:52 +0000378 user = pwd.getpwuid(os.getuid())[0]
Fred Drake3f8f1642001-07-19 03:46:26 +0000379 filename = os.path.join(tempdir, user + "-*")
380 maybes = glob.glob(filename)
381 if not maybes:
382 return None
383 s = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
384 for fn in maybes:
385 # need to PING each one until we find one that's live
386 try:
387 s.connect(fn)
Andrew Svetlov0832af62012-12-18 23:10:48 +0200388 except OSError:
Fred Drake3f8f1642001-07-19 03:46:26 +0000389 # no good; attempt to clean it out, but don't fail:
390 try:
391 os.unlink(fn)
Andrew Svetlovf7a17b42012-12-25 16:47:37 +0200392 except OSError:
Fred Drake3f8f1642001-07-19 03:46:26 +0000393 pass
394 else:
395 return s
396
397 def _remote(self, action):
398 s = self._find_grail_rc()
399 if not s:
400 return 0
401 s.send(action)
402 s.close()
403 return 1
404
Alexandre Vassalottie223eb82009-07-29 20:12:15 +0000405 def open(self, url, new=0, autoraise=True):
Fred Drake3f8f1642001-07-19 03:46:26 +0000406 if new:
Georg Brandle8f24432005-10-03 14:16:44 +0000407 ok = self._remote("LOADNEW " + url)
Fred Drake3f8f1642001-07-19 03:46:26 +0000408 else:
Georg Brandle8f24432005-10-03 14:16:44 +0000409 ok = self._remote("LOAD " + url)
410 return ok
Fred Drake3f8f1642001-07-19 03:46:26 +0000411
Fred Drakec70b4482000-07-09 16:45:56 +0000412
Tim Peters658cba62001-02-09 20:06:00 +0000413#
Eric S. Raymondf7f18512001-01-23 13:16:32 +0000414# Platform support for Unix
415#
Fred Drakec70b4482000-07-09 16:45:56 +0000416
Georg Brandle8f24432005-10-03 14:16:44 +0000417# These are the right tests because all these Unix browsers require either
418# a console terminal or an X display to run.
Fred Drakec70b4482000-07-09 16:45:56 +0000419
Neal Norwitz196f7332005-10-04 03:17:49 +0000420def register_X_browsers():
Eric S. Raymondf7f18512001-01-23 13:16:32 +0000421
Matthias Kloseda80b1e2012-04-04 14:19:04 +0200422 # use xdg-open if around
Serhiy Storchaka540dcba2013-02-13 12:19:40 +0200423 if shutil.which("xdg-open"):
Matthias Kloseda80b1e2012-04-04 14:19:04 +0200424 register("xdg-open", None, BackgroundBrowser("xdg-open"))
425
426 # The default GNOME3 browser
Serhiy Storchaka540dcba2013-02-13 12:19:40 +0200427 if "GNOME_DESKTOP_SESSION_ID" in os.environ and shutil.which("gvfs-open"):
Matthias Kloseda80b1e2012-04-04 14:19:04 +0200428 register("gvfs-open", None, BackgroundBrowser("gvfs-open"))
429
Guido van Rossumd8faa362007-04-27 19:54:29 +0000430 # The default GNOME browser
Serhiy Storchaka540dcba2013-02-13 12:19:40 +0200431 if "GNOME_DESKTOP_SESSION_ID" in os.environ and shutil.which("gnome-open"):
Guido van Rossumd8faa362007-04-27 19:54:29 +0000432 register("gnome-open", None, BackgroundBrowser("gnome-open"))
Eric S. Raymondf7f18512001-01-23 13:16:32 +0000433
Guido van Rossumd8faa362007-04-27 19:54:29 +0000434 # The default KDE browser
Serhiy Storchaka540dcba2013-02-13 12:19:40 +0200435 if "KDE_FULL_SESSION" in os.environ and shutil.which("kfmclient"):
Guido van Rossumd8faa362007-04-27 19:54:29 +0000436 register("kfmclient", Konqueror, Konqueror("kfmclient"))
437
doko@ubuntu.comf85aca82013-03-24 18:50:23 +0100438 if shutil.which("x-www-browser"):
doko@ubuntu.com945c3bb2013-03-24 18:46:49 +0100439 register("x-www-browser", None, BackgroundBrowser("x-www-browser"))
440
Serhiy Storchakac9b750d2016-10-30 19:16:33 +0200441 # The Mozilla browsers
442 for browser in ("firefox", "iceweasel", "iceape", "seamonkey"):
Serhiy Storchaka540dcba2013-02-13 12:19:40 +0200443 if shutil.which(browser):
Georg Brandl4a5a9182005-11-22 19:18:01 +0000444 register(browser, None, Mozilla(browser))
445
Serhiy Storchakac9b750d2016-10-30 19:16:33 +0200446 # The Netscape and old Mozilla browsers
447 for browser in ("mozilla-firefox",
448 "mozilla-firebird", "firebird",
449 "mozilla", "netscape"):
450 if shutil.which(browser):
451 register(browser, None, Netscape(browser))
452
Georg Brandle8f24432005-10-03 14:16:44 +0000453 # Konqueror/kfm, the KDE browser.
Serhiy Storchaka540dcba2013-02-13 12:19:40 +0200454 if shutil.which("kfm"):
Georg Brandlb9801132005-10-08 20:47:38 +0000455 register("kfm", Konqueror, Konqueror("kfm"))
Serhiy Storchaka540dcba2013-02-13 12:19:40 +0200456 elif shutil.which("konqueror"):
Georg Brandlb9801132005-10-08 20:47:38 +0000457 register("konqueror", Konqueror, Konqueror("konqueror"))
Neal Norwitz8dd28eb2002-10-10 22:49:29 +0000458
Georg Brandle8f24432005-10-03 14:16:44 +0000459 # Gnome's Galeon and Epiphany
460 for browser in ("galeon", "epiphany"):
Serhiy Storchaka540dcba2013-02-13 12:19:40 +0200461 if shutil.which(browser):
Georg Brandle8f24432005-10-03 14:16:44 +0000462 register(browser, None, Galeon(browser))
Gustavo Niemeyer1456fde2002-11-25 17:25:04 +0000463
Georg Brandle8f24432005-10-03 14:16:44 +0000464 # Skipstone, another Gtk/Mozilla based browser
Serhiy Storchaka540dcba2013-02-13 12:19:40 +0200465 if shutil.which("skipstone"):
Georg Brandl23929f22006-01-20 21:03:35 +0000466 register("skipstone", None, BackgroundBrowser("skipstone"))
Eric S. Raymondf7f18512001-01-23 13:16:32 +0000467
Senthil Kumaranea6b4182011-12-21 22:20:32 +0800468 # Google Chrome/Chromium browsers
469 for browser in ("google-chrome", "chrome", "chromium", "chromium-browser"):
Serhiy Storchaka540dcba2013-02-13 12:19:40 +0200470 if shutil.which(browser):
Senthil Kumaranea6b4182011-12-21 22:20:32 +0800471 register(browser, None, Chrome(browser))
472
Georg Brandle8f24432005-10-03 14:16:44 +0000473 # Opera, quite popular
Serhiy Storchaka540dcba2013-02-13 12:19:40 +0200474 if shutil.which("opera"):
Georg Brandle8f24432005-10-03 14:16:44 +0000475 register("opera", None, Opera("opera"))
Eric S. Raymondf7f18512001-01-23 13:16:32 +0000476
Georg Brandle8f24432005-10-03 14:16:44 +0000477 # Next, Mosaic -- old but still in use.
Serhiy Storchaka540dcba2013-02-13 12:19:40 +0200478 if shutil.which("mosaic"):
Georg Brandl23929f22006-01-20 21:03:35 +0000479 register("mosaic", None, BackgroundBrowser("mosaic"))
Fred Drake3f8f1642001-07-19 03:46:26 +0000480
Georg Brandle8f24432005-10-03 14:16:44 +0000481 # Grail, the Python browser. Does anybody still use it?
Serhiy Storchaka540dcba2013-02-13 12:19:40 +0200482 if shutil.which("grail"):
Georg Brandle8f24432005-10-03 14:16:44 +0000483 register("grail", Grail, None)
Fred Drake3f8f1642001-07-19 03:46:26 +0000484
Neal Norwitz196f7332005-10-04 03:17:49 +0000485# Prefer X browsers if present
486if os.environ.get("DISPLAY"):
487 register_X_browsers()
488
Georg Brandle8f24432005-10-03 14:16:44 +0000489# Also try console browsers
490if os.environ.get("TERM"):
doko@ubuntu.comf85aca82013-03-24 18:50:23 +0100491 if shutil.which("www-browser"):
doko@ubuntu.com945c3bb2013-03-24 18:46:49 +0100492 register("www-browser", None, GenericBrowser("www-browser"))
Georg Brandle8f24432005-10-03 14:16:44 +0000493 # The Links/elinks browsers <http://artax.karlin.mff.cuni.cz/~mikulas/links/>
Serhiy Storchaka540dcba2013-02-13 12:19:40 +0200494 if shutil.which("links"):
Georg Brandl23929f22006-01-20 21:03:35 +0000495 register("links", None, GenericBrowser("links"))
Serhiy Storchaka540dcba2013-02-13 12:19:40 +0200496 if shutil.which("elinks"):
Georg Brandle8f24432005-10-03 14:16:44 +0000497 register("elinks", None, Elinks("elinks"))
498 # The Lynx browser <http://lynx.isc.org/>, <http://lynx.browser.org/>
Serhiy Storchaka540dcba2013-02-13 12:19:40 +0200499 if shutil.which("lynx"):
Georg Brandl23929f22006-01-20 21:03:35 +0000500 register("lynx", None, GenericBrowser("lynx"))
Georg Brandle8f24432005-10-03 14:16:44 +0000501 # The w3m browser <http://w3m.sourceforge.net/>
Serhiy Storchaka540dcba2013-02-13 12:19:40 +0200502 if shutil.which("w3m"):
Georg Brandl23929f22006-01-20 21:03:35 +0000503 register("w3m", None, GenericBrowser("w3m"))
Fred Drake3f8f1642001-07-19 03:46:26 +0000504
Eric S. Raymondf7f18512001-01-23 13:16:32 +0000505#
506# Platform support for Windows
507#
Fred Drakec70b4482000-07-09 16:45:56 +0000508
509if sys.platform[:3] == "win":
Georg Brandle8f24432005-10-03 14:16:44 +0000510 class WindowsDefault(BaseBrowser):
Alexandre Vassalottie223eb82009-07-29 20:12:15 +0000511 def open(self, url, new=0, autoraise=True):
Guido van Rossumd8faa362007-04-27 19:54:29 +0000512 try:
Steve Dower2ebd8f52015-09-05 11:57:47 -0700513 os.startfile(url)
Andrew Svetlov2606a6f2012-12-19 14:33:35 +0200514 except OSError:
Guido van Rossumd8faa362007-04-27 19:54:29 +0000515 # [Error 22] No application is associated with the specified
516 # file for this operation: '<URL>'
517 return False
518 else:
519 return True
Georg Brandle8f24432005-10-03 14:16:44 +0000520
521 _tryorder = []
522 _browsers = {}
Guido van Rossumd8faa362007-04-27 19:54:29 +0000523
Steve Dower2ebd8f52015-09-05 11:57:47 -0700524 # First try to use the default Windows browser
Guido van Rossumd8faa362007-04-27 19:54:29 +0000525 register("windows-default", WindowsDefault)
526
Steve Dower2ebd8f52015-09-05 11:57:47 -0700527 # Detect some common Windows browsers, fallback to IE
528 iexplore = os.path.join(os.environ.get("PROGRAMFILES", "C:\\Program Files"),
529 "Internet Explorer\\IEXPLORE.EXE")
530 for browser in ("firefox", "firebird", "seamonkey", "mozilla",
531 "netscape", "opera", iexplore):
532 if shutil.which(browser):
533 register(browser, None, BackgroundBrowser(browser))
Fred Drakec70b4482000-07-09 16:45:56 +0000534
Fred Drakec70b4482000-07-09 16:45:56 +0000535#
Eric S. Raymondf7f18512001-01-23 13:16:32 +0000536# Platform support for MacOS
537#
Fred Drakec70b4482000-07-09 16:45:56 +0000538
Georg Brandle8f24432005-10-03 14:16:44 +0000539if sys.platform == 'darwin':
540 # Adapted from patch submitted to SourceForge by Steven J. Burr
541 class MacOSX(BaseBrowser):
542 """Launcher class for Aqua browsers on Mac OS X
543
544 Optionally specify a browser name on instantiation. Note that this
545 will not work for Aqua browsers if the user has moved the application
546 package after installation.
547
548 If no browser is specified, the default browser, as specified in the
549 Internet System Preferences panel, will be used.
550 """
551 def __init__(self, name):
552 self.name = name
553
Alexandre Vassalottie223eb82009-07-29 20:12:15 +0000554 def open(self, url, new=0, autoraise=True):
Georg Brandle8f24432005-10-03 14:16:44 +0000555 assert "'" not in url
Georg Brandl23929f22006-01-20 21:03:35 +0000556 # hack for local urls
557 if not ':' in url:
558 url = 'file:'+url
Tim Peters887c0802006-01-20 23:40:56 +0000559
Georg Brandle8f24432005-10-03 14:16:44 +0000560 # new must be 0 or 1
561 new = int(bool(new))
562 if self.name == "default":
563 # User called open, open_new or get without a browser parameter
Georg Brandl1cb179e2005-11-09 21:42:48 +0000564 script = 'open location "%s"' % url.replace('"', '%22') # opens in default browser
Georg Brandle8f24432005-10-03 14:16:44 +0000565 else:
566 # User called get and chose a browser
567 if self.name == "OmniWeb":
568 toWindow = ""
569 else:
570 # Include toWindow parameter of OpenURL command for browsers
571 # that support it. 0 == new window; -1 == existing
572 toWindow = "toWindow %d" % (new - 1)
Georg Brandl1cb179e2005-11-09 21:42:48 +0000573 cmd = 'OpenURL "%s"' % url.replace('"', '%22')
Georg Brandle8f24432005-10-03 14:16:44 +0000574 script = '''tell application "%s"
575 activate
576 %s %s
577 end tell''' % (self.name, cmd, toWindow)
578 # Open pipe to AppleScript through osascript command
579 osapipe = os.popen("osascript", "w")
580 if osapipe is None:
581 return False
582 # Write script to osascript's stdin
583 osapipe.write(script)
584 rc = osapipe.close()
585 return not rc
586
Ronald Oussoren4d39f6e2010-05-02 09:54:35 +0000587 class MacOSXOSAScript(BaseBrowser):
588 def __init__(self, name):
589 self._name = name
590
591 def open(self, url, new=0, autoraise=True):
592 if self._name == 'default':
593 script = 'open location "%s"' % url.replace('"', '%22') # opens in default browser
594 else:
595 script = '''
596 tell application "%s"
597 activate
598 open location "%s"
599 end
600 '''%(self._name, url.replace('"', '%22'))
601
602 osapipe = os.popen("osascript", "w")
603 if osapipe is None:
604 return False
605
606 osapipe.write(script)
607 rc = osapipe.close()
608 return not rc
609
610
Georg Brandle8f24432005-10-03 14:16:44 +0000611 # Don't clear _tryorder or _browsers since OS X can use above Unix support
612 # (but we prefer using the OS X specific stuff)
Ronald Oussoren4d39f6e2010-05-02 09:54:35 +0000613 register("safari", None, MacOSXOSAScript('safari'), -1)
614 register("firefox", None, MacOSXOSAScript('firefox'), -1)
Guido van Rossumb1a751b2016-10-13 11:17:27 -0700615 register("chrome", None, MacOSXOSAScript('chrome'), -1)
Ronald Oussoren4d39f6e2010-05-02 09:54:35 +0000616 register("MacOSX", None, MacOSXOSAScript('default'), -1)
Georg Brandle8f24432005-10-03 14:16:44 +0000617
Eric S. Raymondf7f18512001-01-23 13:16:32 +0000618
619# OK, now that we know what the default preference orders for each
620# platform are, allow user to override them with the BROWSER variable.
Raymond Hettinger54f02222002-06-01 14:18:47 +0000621if "BROWSER" in os.environ:
Georg Brandle8f24432005-10-03 14:16:44 +0000622 _userchoices = os.environ["BROWSER"].split(os.pathsep)
623 _userchoices.reverse()
Skip Montanarocdab3bf2001-07-18 20:03:32 +0000624
Georg Brandle8f24432005-10-03 14:16:44 +0000625 # Treat choices in same way as if passed into get() but do register
626 # and prepend to _tryorder
627 for cmdline in _userchoices:
628 if cmdline != '':
Benjamin Peterson8719ad52009-09-11 22:24:02 +0000629 cmd = _synthesize(cmdline, -1)
630 if cmd[1] is None:
631 register(cmdline, None, GenericBrowser(cmdline), -1)
Georg Brandle8f24432005-10-03 14:16:44 +0000632 cmdline = None # to make del work if _userchoices was empty
633 del cmdline
634 del _userchoices
Skip Montanarocdab3bf2001-07-18 20:03:32 +0000635
Skip Montanarocdab3bf2001-07-18 20:03:32 +0000636# what to do if _tryorder is now empty?
Georg Brandle8f24432005-10-03 14:16:44 +0000637
638
639def main():
640 import getopt
641 usage = """Usage: %s [-n | -t] url
642 -n: open new window
643 -t: open new tab""" % sys.argv[0]
644 try:
645 opts, args = getopt.getopt(sys.argv[1:], 'ntd')
Guido van Rossumb940e112007-01-10 16:19:56 +0000646 except getopt.error as msg:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000647 print(msg, file=sys.stderr)
648 print(usage, file=sys.stderr)
Georg Brandle8f24432005-10-03 14:16:44 +0000649 sys.exit(1)
650 new_win = 0
651 for o, a in opts:
652 if o == '-n': new_win = 1
653 elif o == '-t': new_win = 2
Guido van Rossumb053cd82006-08-24 03:53:23 +0000654 if len(args) != 1:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000655 print(usage, file=sys.stderr)
Georg Brandle8f24432005-10-03 14:16:44 +0000656 sys.exit(1)
657
658 url = args[0]
659 open(url, new_win)
660
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000661 print("\a")
Georg Brandl23929f22006-01-20 21:03:35 +0000662
Georg Brandle8f24432005-10-03 14:16:44 +0000663if __name__ == "__main__":
664 main()