Benjamin Peterson | 90f5ba5 | 2010-03-11 22:53:45 +0000 | [diff] [blame] | 1 | #! /usr/bin/env python3 |
Ka-Ping Yee | 0a8c29b | 2001-03-02 02:01:40 +0000 | [diff] [blame] | 2 | """Interfaces for launching and remotely controlling Web browsers.""" |
Guido van Rossum | 992d4a3 | 2007-07-11 13:09:30 +0000 | [diff] [blame] | 3 | # Maintained by Georg Brandl. |
Fred Drake | c70b448 | 2000-07-09 16:45:56 +0000 | [diff] [blame] | 4 | |
| 5 | import os |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 6 | import shlex |
Serhiy Storchaka | 540dcba | 2013-02-13 12:19:40 +0200 | [diff] [blame] | 7 | import shutil |
Fred Drake | c70b448 | 2000-07-09 16:45:56 +0000 | [diff] [blame] | 8 | import sys |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 9 | import subprocess |
Fred Drake | c70b448 | 2000-07-09 16:45:56 +0000 | [diff] [blame] | 10 | |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 11 | __all__ = ["Error", "open", "open_new", "open_new_tab", "get", "register"] |
Skip Montanaro | 40fc160 | 2001-03-01 04:27:19 +0000 | [diff] [blame] | 12 | |
Fred Drake | c70b448 | 2000-07-09 16:45:56 +0000 | [diff] [blame] | 13 | class Error(Exception): |
| 14 | pass |
| 15 | |
Tim Peters | 658cba6 | 2001-02-09 20:06:00 +0000 | [diff] [blame] | 16 | _browsers = {} # Dictionary of available browser controllers |
| 17 | _tryorder = [] # Preference order of available browsers |
Fred Drake | c70b448 | 2000-07-09 16:45:56 +0000 | [diff] [blame] | 18 | |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 19 | def register(name, klass, instance=None, update_tryorder=1): |
Fred Drake | c70b448 | 2000-07-09 16:45:56 +0000 | [diff] [blame] | 20 | """Register a browser connector and, optionally, connection.""" |
| 21 | _browsers[name.lower()] = [klass, instance] |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 22 | if update_tryorder > 0: |
| 23 | _tryorder.append(name) |
| 24 | elif update_tryorder < 0: |
| 25 | _tryorder.insert(0, name) |
Fred Drake | c70b448 | 2000-07-09 16:45:56 +0000 | [diff] [blame] | 26 | |
Eric S. Raymond | f7f1851 | 2001-01-23 13:16:32 +0000 | [diff] [blame] | 27 | def get(using=None): |
| 28 | """Return a browser launcher instance appropriate for the environment.""" |
Raymond Hettinger | 10ff706 | 2002-06-02 03:04:52 +0000 | [diff] [blame] | 29 | if using is not None: |
Eric S. Raymond | f7f1851 | 2001-01-23 13:16:32 +0000 | [diff] [blame] | 30 | alternatives = [using] |
| 31 | else: |
| 32 | alternatives = _tryorder |
| 33 | for browser in alternatives: |
Raymond Hettinger | bac788a | 2004-05-04 09:21:43 +0000 | [diff] [blame] | 34 | if '%s' in browser: |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 35 | # User gave us a command line, split it into name and args |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 36 | browser = shlex.split(browser) |
| 37 | if browser[-1] == '&': |
| 38 | return BackgroundBrowser(browser[:-1]) |
| 39 | else: |
| 40 | return GenericBrowser(browser) |
Eric S. Raymond | f7f1851 | 2001-01-23 13:16:32 +0000 | [diff] [blame] | 41 | else: |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 42 | # User gave us a browser name or path. |
Fred Drake | f4e5bd9 | 2001-04-12 22:07:27 +0000 | [diff] [blame] | 43 | try: |
| 44 | command = _browsers[browser.lower()] |
| 45 | except KeyError: |
| 46 | command = _synthesize(browser) |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 47 | if command[1] is not None: |
Eric S. Raymond | f7f1851 | 2001-01-23 13:16:32 +0000 | [diff] [blame] | 48 | return command[1] |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 49 | elif command[0] is not None: |
| 50 | return command[0]() |
Eric S. Raymond | f7f1851 | 2001-01-23 13:16:32 +0000 | [diff] [blame] | 51 | raise Error("could not locate runnable browser") |
Fred Drake | c70b448 | 2000-07-09 16:45:56 +0000 | [diff] [blame] | 52 | |
| 53 | # Please note: the following definition hides a builtin function. |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 54 | # It is recommended one does "import webbrowser" and uses webbrowser.open(url) |
| 55 | # instead of "from webbrowser import *". |
Fred Drake | c70b448 | 2000-07-09 16:45:56 +0000 | [diff] [blame] | 56 | |
Alexandre Vassalotti | e223eb8 | 2009-07-29 20:12:15 +0000 | [diff] [blame] | 57 | def open(url, new=0, autoraise=True): |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 58 | for name in _tryorder: |
| 59 | browser = get(name) |
| 60 | if browser.open(url, new, autoraise): |
| 61 | return True |
| 62 | return False |
Fred Drake | c70b448 | 2000-07-09 16:45:56 +0000 | [diff] [blame] | 63 | |
Fred Drake | 3f8f164 | 2001-07-19 03:46:26 +0000 | [diff] [blame] | 64 | def open_new(url): |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 65 | return open(url, 1) |
| 66 | |
| 67 | def open_new_tab(url): |
| 68 | return open(url, 2) |
Fred Drake | c70b448 | 2000-07-09 16:45:56 +0000 | [diff] [blame] | 69 | |
Fred Drake | f4e5bd9 | 2001-04-12 22:07:27 +0000 | [diff] [blame] | 70 | |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 71 | def _synthesize(browser, update_tryorder=1): |
Fred Drake | f4e5bd9 | 2001-04-12 22:07:27 +0000 | [diff] [blame] | 72 | """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 Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 83 | cmd = browser.split()[0] |
Serhiy Storchaka | 540dcba | 2013-02-13 12:19:40 +0200 | [diff] [blame] | 84 | if not shutil.which(cmd): |
Fred Drake | f4e5bd9 | 2001-04-12 22:07:27 +0000 | [diff] [blame] | 85 | return [None, None] |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 86 | name = os.path.basename(cmd) |
Fred Drake | f4e5bd9 | 2001-04-12 22:07:27 +0000 | [diff] [blame] | 87 | 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 Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 98 | register(browser, None, controller, update_tryorder) |
Fred Drake | f4e5bd9 | 2001-04-12 22:07:27 +0000 | [diff] [blame] | 99 | return [None, controller] |
Andrew M. Kuchling | 118aa53 | 2001-08-13 14:37:23 +0000 | [diff] [blame] | 100 | return [None, None] |
Fred Drake | f4e5bd9 | 2001-04-12 22:07:27 +0000 | [diff] [blame] | 101 | |
Fred Drake | 3f8f164 | 2001-07-19 03:46:26 +0000 | [diff] [blame] | 102 | |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 103 | # General parent classes |
| 104 | |
| 105 | class BaseBrowser(object): |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 106 | """Parent class for all browsers. Do not use directly.""" |
Tim Peters | 887c080 | 2006-01-20 23:40:56 +0000 | [diff] [blame] | 107 | |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 108 | args = ['%s'] |
Tim Peters | 887c080 | 2006-01-20 23:40:56 +0000 | [diff] [blame] | 109 | |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 110 | def __init__(self, name=""): |
| 111 | self.name = name |
Georg Brandl | b980113 | 2005-10-08 20:47:38 +0000 | [diff] [blame] | 112 | self.basename = name |
Tim Peters | 536cf99 | 2005-12-25 23:18:31 +0000 | [diff] [blame] | 113 | |
Alexandre Vassalotti | e223eb8 | 2009-07-29 20:12:15 +0000 | [diff] [blame] | 114 | def open(self, url, new=0, autoraise=True): |
Neal Norwitz | 196f733 | 2005-10-04 03:17:49 +0000 | [diff] [blame] | 115 | raise NotImplementedError |
| 116 | |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 117 | 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 Drake | 3f8f164 | 2001-07-19 03:46:26 +0000 | [diff] [blame] | 122 | |
| 123 | |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 124 | class GenericBrowser(BaseBrowser): |
| 125 | """Class for all browsers started with a command |
| 126 | and without remote functionality.""" |
| 127 | |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 128 | def __init__(self, name): |
Guido van Rossum | 3172c5d | 2007-10-16 18:12:55 +0000 | [diff] [blame] | 129 | if isinstance(name, str): |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 130 | self.name = name |
Guido van Rossum | 992d4a3 | 2007-07-11 13:09:30 +0000 | [diff] [blame] | 131 | self.args = ["%s"] |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 132 | else: |
| 133 | # name should be a list with arguments |
| 134 | self.name = name[0] |
| 135 | self.args = name[1:] |
Georg Brandl | b980113 | 2005-10-08 20:47:38 +0000 | [diff] [blame] | 136 | self.basename = os.path.basename(self.name) |
Fred Drake | 3f8f164 | 2001-07-19 03:46:26 +0000 | [diff] [blame] | 137 | |
Alexandre Vassalotti | e223eb8 | 2009-07-29 20:12:15 +0000 | [diff] [blame] | 138 | def open(self, url, new=0, autoraise=True): |
Tim Peters | 887c080 | 2006-01-20 23:40:56 +0000 | [diff] [blame] | 139 | cmdline = [self.name] + [arg.replace("%s", url) |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 140 | for arg in self.args] |
| 141 | try: |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 142 | if sys.platform[:3] == 'win': |
| 143 | p = subprocess.Popen(cmdline) |
| 144 | else: |
| 145 | p = subprocess.Popen(cmdline, close_fds=True) |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 146 | return not p.wait() |
| 147 | except OSError: |
| 148 | return False |
| 149 | |
| 150 | |
| 151 | class BackgroundBrowser(GenericBrowser): |
| 152 | """Class for all browsers which are to be started in the |
| 153 | background.""" |
| 154 | |
Alexandre Vassalotti | e223eb8 | 2009-07-29 20:12:15 +0000 | [diff] [blame] | 155 | def open(self, url, new=0, autoraise=True): |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 156 | cmdline = [self.name] + [arg.replace("%s", url) |
| 157 | for arg in self.args] |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 158 | try: |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 159 | if sys.platform[:3] == 'win': |
| 160 | p = subprocess.Popen(cmdline) |
| 161 | else: |
Gregory P. Smith | feac398 | 2014-08-27 09:34:38 -0700 | [diff] [blame] | 162 | p = subprocess.Popen(cmdline, close_fds=True, |
| 163 | start_new_session=True) |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 164 | return (p.poll() is None) |
| 165 | except OSError: |
| 166 | return False |
Fred Drake | 3f8f164 | 2001-07-19 03:46:26 +0000 | [diff] [blame] | 167 | |
| 168 | |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 169 | class UnixBrowser(BaseBrowser): |
| 170 | """Parent class for all Unix browsers with remote functionality.""" |
Fred Drake | 3f8f164 | 2001-07-19 03:46:26 +0000 | [diff] [blame] | 171 | |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 172 | raise_opts = None |
R David Murray | 94dd7cb | 2012-09-03 12:30:12 -0400 | [diff] [blame] | 173 | 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 Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 181 | remote_args = ['%action', '%s'] |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 182 | remote_action = None |
| 183 | remote_action_newwin = None |
| 184 | remote_action_newtab = None |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 185 | |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 186 | 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 Vassalotti | e223eb8 | 2009-07-29 20:12:15 +0000 | [diff] [blame] | 190 | autoraise = int(autoraise) |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 191 | opt = self.raise_opts[autoraise] |
| 192 | if opt: raise_opt = [opt] |
| 193 | |
| 194 | cmdline = [self.name] + raise_opt + args |
Tim Peters | 887c080 | 2006-01-20 23:40:56 +0000 | [diff] [blame] | 195 | |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 196 | if remote or self.background: |
R David Murray | 02ca144 | 2012-09-03 12:44:29 -0400 | [diff] [blame] | 197 | inout = subprocess.DEVNULL |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 198 | else: |
| 199 | # for TTY browsers, we need stdin/out |
| 200 | inout = None |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 201 | p = subprocess.Popen(cmdline, close_fds=True, stdin=inout, |
| 202 | stdout=(self.redirect_stdout and inout or None), |
Gregory P. Smith | 8f7724f | 2011-03-15 15:24:43 -0400 | [diff] [blame] | 203 | stderr=inout, start_new_session=True) |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 204 | if remote: |
Jesus Cea | c9aa321 | 2012-08-01 03:57:52 +0200 | [diff] [blame] | 205 | # wait at most five seconds. If the subprocess is not finished, the |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 206 | # remote invocation has (hopefully) started a new instance. |
Jesus Cea | c9aa321 | 2012-08-01 03:57:52 +0200 | [diff] [blame] | 207 | 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 Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 213 | 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 Drake | 3f8f164 | 2001-07-19 03:46:26 +0000 | [diff] [blame] | 220 | |
Alexandre Vassalotti | e223eb8 | 2009-07-29 20:12:15 +0000 | [diff] [blame] | 221 | def open(self, url, new=0, autoraise=True): |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 222 | 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 Drake | 3f8f164 | 2001-07-19 03:46:26 +0000 | [diff] [blame] | 231 | else: |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 232 | raise Error("Bad 'new' parameter to open(); " + |
| 233 | "expected 0, 1, or 2, got %s" % new) |
Tim Peters | 887c080 | 2006-01-20 23:40:56 +0000 | [diff] [blame] | 234 | |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 235 | args = [arg.replace("%s", url).replace("%action", action) |
| 236 | for arg in self.remote_args] |
R David Murray | 94dd7cb | 2012-09-03 12:30:12 -0400 | [diff] [blame] | 237 | args = [arg for arg in args if arg] |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 238 | 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 Drake | 3f8f164 | 2001-07-19 03:46:26 +0000 | [diff] [blame] | 245 | |
| 246 | |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 247 | class Mozilla(UnixBrowser): |
| 248 | """Launcher class for Mozilla/Netscape browsers.""" |
Neal Norwitz | 8dd28eb | 2002-10-10 22:49:29 +0000 | [diff] [blame] | 249 | |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 250 | raise_opts = ["-noraise", "-raise"] |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 251 | remote_args = ['-remote', 'openURL(%s%action)'] |
| 252 | remote_action = "" |
| 253 | remote_action_newwin = ",new-window" |
| 254 | remote_action_newtab = ",new-tab" |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 255 | background = True |
Neal Norwitz | 8dd28eb | 2002-10-10 22:49:29 +0000 | [diff] [blame] | 256 | |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 257 | Netscape = Mozilla |
Neal Norwitz | 8dd28eb | 2002-10-10 22:49:29 +0000 | [diff] [blame] | 258 | |
| 259 | |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 260 | class Galeon(UnixBrowser): |
| 261 | """Launcher class for Galeon/Epiphany browsers.""" |
| 262 | |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 263 | raise_opts = ["-noraise", ""] |
| 264 | remote_args = ['%action', '%s'] |
| 265 | remote_action = "-n" |
| 266 | remote_action_newwin = "-w" |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 267 | background = True |
Fred Drake | 3f8f164 | 2001-07-19 03:46:26 +0000 | [diff] [blame] | 268 | |
| 269 | |
Senthil Kumaran | ea6b418 | 2011-12-21 22:20:32 +0800 | [diff] [blame] | 270 | class Chrome(UnixBrowser): |
| 271 | "Launcher class for Google Chrome browser." |
| 272 | |
| 273 | remote_args = ['%action', '%s'] |
| 274 | remote_action = "" |
| 275 | remote_action_newwin = "--new-window" |
| 276 | remote_action_newtab = "" |
| 277 | background = True |
| 278 | |
| 279 | Chromium = Chrome |
| 280 | |
| 281 | |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 282 | class Opera(UnixBrowser): |
| 283 | "Launcher class for Opera browser." |
| 284 | |
Terry Reedy | dad532f | 2010-12-28 19:30:19 +0000 | [diff] [blame] | 285 | raise_opts = ["-noraise", ""] |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 286 | remote_args = ['-remote', 'openURL(%s%action)'] |
| 287 | remote_action = "" |
| 288 | remote_action_newwin = ",new-window" |
| 289 | remote_action_newtab = ",new-page" |
| 290 | background = True |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 291 | |
| 292 | |
| 293 | class Elinks(UnixBrowser): |
| 294 | "Launcher class for Elinks browsers." |
| 295 | |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 296 | remote_args = ['-remote', 'openURL(%s%action)'] |
| 297 | remote_action = "" |
| 298 | remote_action_newwin = ",new-window" |
| 299 | remote_action_newtab = ",new-tab" |
| 300 | background = False |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 301 | |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 302 | # elinks doesn't like its stdout to be redirected - |
| 303 | # it uses redirected stdout as a signal to do -dump |
| 304 | redirect_stdout = False |
| 305 | |
| 306 | |
| 307 | class Konqueror(BaseBrowser): |
| 308 | """Controller for the KDE File Manager (kfm, or Konqueror). |
| 309 | |
| 310 | See the output of ``kfmclient --commands`` |
| 311 | for more information on the Konqueror remote-control interface. |
| 312 | """ |
| 313 | |
Alexandre Vassalotti | e223eb8 | 2009-07-29 20:12:15 +0000 | [diff] [blame] | 314 | def open(self, url, new=0, autoraise=True): |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 315 | # XXX Currently I know no way to prevent KFM from opening a new win. |
| 316 | if new == 2: |
| 317 | action = "newTab" |
| 318 | else: |
| 319 | action = "openURL" |
Tim Peters | 887c080 | 2006-01-20 23:40:56 +0000 | [diff] [blame] | 320 | |
R David Murray | 02ca144 | 2012-09-03 12:44:29 -0400 | [diff] [blame] | 321 | devnull = subprocess.DEVNULL |
Tim Peters | 887c080 | 2006-01-20 23:40:56 +0000 | [diff] [blame] | 322 | |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 323 | try: |
| 324 | p = subprocess.Popen(["kfmclient", action, url], |
| 325 | close_fds=True, stdin=devnull, |
| 326 | stdout=devnull, stderr=devnull) |
| 327 | except OSError: |
| 328 | # fall through to next variant |
| 329 | pass |
| 330 | else: |
| 331 | p.wait() |
| 332 | # kfmclient's return code unfortunately has no meaning as it seems |
| 333 | return True |
| 334 | |
| 335 | try: |
| 336 | p = subprocess.Popen(["konqueror", "--silent", url], |
| 337 | close_fds=True, stdin=devnull, |
| 338 | stdout=devnull, stderr=devnull, |
Gregory P. Smith | feac398 | 2014-08-27 09:34:38 -0700 | [diff] [blame] | 339 | start_new_session=True) |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 340 | except OSError: |
| 341 | # fall through to next variant |
| 342 | pass |
| 343 | else: |
| 344 | if p.poll() is None: |
| 345 | # Should be running now. |
| 346 | return True |
Tim Peters | 887c080 | 2006-01-20 23:40:56 +0000 | [diff] [blame] | 347 | |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 348 | try: |
| 349 | p = subprocess.Popen(["kfm", "-d", url], |
| 350 | close_fds=True, stdin=devnull, |
| 351 | stdout=devnull, stderr=devnull, |
Gregory P. Smith | feac398 | 2014-08-27 09:34:38 -0700 | [diff] [blame] | 352 | start_new_session=True) |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 353 | except OSError: |
| 354 | return False |
| 355 | else: |
| 356 | return (p.poll() is None) |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 357 | |
| 358 | |
| 359 | class Grail(BaseBrowser): |
Fred Drake | 3f8f164 | 2001-07-19 03:46:26 +0000 | [diff] [blame] | 360 | # There should be a way to maintain a connection to Grail, but the |
| 361 | # Grail remote control protocol doesn't really allow that at this |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 362 | # point. It probably never will! |
Fred Drake | 3f8f164 | 2001-07-19 03:46:26 +0000 | [diff] [blame] | 363 | def _find_grail_rc(self): |
| 364 | import glob |
| 365 | import pwd |
| 366 | import socket |
| 367 | import tempfile |
| 368 | tempdir = os.path.join(tempfile.gettempdir(), |
| 369 | ".grail-unix") |
Fred Drake | 16623fe | 2001-10-13 16:00:52 +0000 | [diff] [blame] | 370 | user = pwd.getpwuid(os.getuid())[0] |
Fred Drake | 3f8f164 | 2001-07-19 03:46:26 +0000 | [diff] [blame] | 371 | filename = os.path.join(tempdir, user + "-*") |
| 372 | maybes = glob.glob(filename) |
| 373 | if not maybes: |
| 374 | return None |
| 375 | s = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) |
| 376 | for fn in maybes: |
| 377 | # need to PING each one until we find one that's live |
| 378 | try: |
| 379 | s.connect(fn) |
Andrew Svetlov | 0832af6 | 2012-12-18 23:10:48 +0200 | [diff] [blame] | 380 | except OSError: |
Fred Drake | 3f8f164 | 2001-07-19 03:46:26 +0000 | [diff] [blame] | 381 | # no good; attempt to clean it out, but don't fail: |
| 382 | try: |
| 383 | os.unlink(fn) |
Andrew Svetlov | f7a17b4 | 2012-12-25 16:47:37 +0200 | [diff] [blame] | 384 | except OSError: |
Fred Drake | 3f8f164 | 2001-07-19 03:46:26 +0000 | [diff] [blame] | 385 | pass |
| 386 | else: |
| 387 | return s |
| 388 | |
| 389 | def _remote(self, action): |
| 390 | s = self._find_grail_rc() |
| 391 | if not s: |
| 392 | return 0 |
| 393 | s.send(action) |
| 394 | s.close() |
| 395 | return 1 |
| 396 | |
Alexandre Vassalotti | e223eb8 | 2009-07-29 20:12:15 +0000 | [diff] [blame] | 397 | def open(self, url, new=0, autoraise=True): |
Fred Drake | 3f8f164 | 2001-07-19 03:46:26 +0000 | [diff] [blame] | 398 | if new: |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 399 | ok = self._remote("LOADNEW " + url) |
Fred Drake | 3f8f164 | 2001-07-19 03:46:26 +0000 | [diff] [blame] | 400 | else: |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 401 | ok = self._remote("LOAD " + url) |
| 402 | return ok |
Fred Drake | 3f8f164 | 2001-07-19 03:46:26 +0000 | [diff] [blame] | 403 | |
Fred Drake | c70b448 | 2000-07-09 16:45:56 +0000 | [diff] [blame] | 404 | |
Tim Peters | 658cba6 | 2001-02-09 20:06:00 +0000 | [diff] [blame] | 405 | # |
Eric S. Raymond | f7f1851 | 2001-01-23 13:16:32 +0000 | [diff] [blame] | 406 | # Platform support for Unix |
| 407 | # |
Fred Drake | c70b448 | 2000-07-09 16:45:56 +0000 | [diff] [blame] | 408 | |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 409 | # These are the right tests because all these Unix browsers require either |
| 410 | # a console terminal or an X display to run. |
Fred Drake | c70b448 | 2000-07-09 16:45:56 +0000 | [diff] [blame] | 411 | |
Neal Norwitz | 196f733 | 2005-10-04 03:17:49 +0000 | [diff] [blame] | 412 | def register_X_browsers(): |
Eric S. Raymond | f7f1851 | 2001-01-23 13:16:32 +0000 | [diff] [blame] | 413 | |
Matthias Klose | da80b1e | 2012-04-04 14:19:04 +0200 | [diff] [blame] | 414 | # use xdg-open if around |
Serhiy Storchaka | 540dcba | 2013-02-13 12:19:40 +0200 | [diff] [blame] | 415 | if shutil.which("xdg-open"): |
Matthias Klose | da80b1e | 2012-04-04 14:19:04 +0200 | [diff] [blame] | 416 | register("xdg-open", None, BackgroundBrowser("xdg-open")) |
| 417 | |
| 418 | # The default GNOME3 browser |
Serhiy Storchaka | 540dcba | 2013-02-13 12:19:40 +0200 | [diff] [blame] | 419 | if "GNOME_DESKTOP_SESSION_ID" in os.environ and shutil.which("gvfs-open"): |
Matthias Klose | da80b1e | 2012-04-04 14:19:04 +0200 | [diff] [blame] | 420 | register("gvfs-open", None, BackgroundBrowser("gvfs-open")) |
| 421 | |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 422 | # The default GNOME browser |
Serhiy Storchaka | 540dcba | 2013-02-13 12:19:40 +0200 | [diff] [blame] | 423 | if "GNOME_DESKTOP_SESSION_ID" in os.environ and shutil.which("gnome-open"): |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 424 | register("gnome-open", None, BackgroundBrowser("gnome-open")) |
Eric S. Raymond | f7f1851 | 2001-01-23 13:16:32 +0000 | [diff] [blame] | 425 | |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 426 | # The default KDE browser |
Serhiy Storchaka | 540dcba | 2013-02-13 12:19:40 +0200 | [diff] [blame] | 427 | if "KDE_FULL_SESSION" in os.environ and shutil.which("kfmclient"): |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 428 | register("kfmclient", Konqueror, Konqueror("kfmclient")) |
| 429 | |
doko@ubuntu.com | f85aca8 | 2013-03-24 18:50:23 +0100 | [diff] [blame] | 430 | if shutil.which("x-www-browser"): |
doko@ubuntu.com | 945c3bb | 2013-03-24 18:46:49 +0100 | [diff] [blame] | 431 | register("x-www-browser", None, BackgroundBrowser("x-www-browser")) |
| 432 | |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 433 | # The Mozilla/Netscape browsers |
Georg Brandl | 4a5a918 | 2005-11-22 19:18:01 +0000 | [diff] [blame] | 434 | for browser in ("mozilla-firefox", "firefox", |
| 435 | "mozilla-firebird", "firebird", |
doko@ubuntu.com | 945c3bb | 2013-03-24 18:46:49 +0100 | [diff] [blame] | 436 | "iceweasel", "iceape", |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 437 | "seamonkey", "mozilla", "netscape"): |
Serhiy Storchaka | 540dcba | 2013-02-13 12:19:40 +0200 | [diff] [blame] | 438 | if shutil.which(browser): |
Georg Brandl | 4a5a918 | 2005-11-22 19:18:01 +0000 | [diff] [blame] | 439 | register(browser, None, Mozilla(browser)) |
| 440 | |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 441 | # Konqueror/kfm, the KDE browser. |
Serhiy Storchaka | 540dcba | 2013-02-13 12:19:40 +0200 | [diff] [blame] | 442 | if shutil.which("kfm"): |
Georg Brandl | b980113 | 2005-10-08 20:47:38 +0000 | [diff] [blame] | 443 | register("kfm", Konqueror, Konqueror("kfm")) |
Serhiy Storchaka | 540dcba | 2013-02-13 12:19:40 +0200 | [diff] [blame] | 444 | elif shutil.which("konqueror"): |
Georg Brandl | b980113 | 2005-10-08 20:47:38 +0000 | [diff] [blame] | 445 | register("konqueror", Konqueror, Konqueror("konqueror")) |
Neal Norwitz | 8dd28eb | 2002-10-10 22:49:29 +0000 | [diff] [blame] | 446 | |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 447 | # Gnome's Galeon and Epiphany |
| 448 | for browser in ("galeon", "epiphany"): |
Serhiy Storchaka | 540dcba | 2013-02-13 12:19:40 +0200 | [diff] [blame] | 449 | if shutil.which(browser): |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 450 | register(browser, None, Galeon(browser)) |
Gustavo Niemeyer | 1456fde | 2002-11-25 17:25:04 +0000 | [diff] [blame] | 451 | |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 452 | # Skipstone, another Gtk/Mozilla based browser |
Serhiy Storchaka | 540dcba | 2013-02-13 12:19:40 +0200 | [diff] [blame] | 453 | if shutil.which("skipstone"): |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 454 | register("skipstone", None, BackgroundBrowser("skipstone")) |
Eric S. Raymond | f7f1851 | 2001-01-23 13:16:32 +0000 | [diff] [blame] | 455 | |
Senthil Kumaran | ea6b418 | 2011-12-21 22:20:32 +0800 | [diff] [blame] | 456 | # Google Chrome/Chromium browsers |
| 457 | for browser in ("google-chrome", "chrome", "chromium", "chromium-browser"): |
Serhiy Storchaka | 540dcba | 2013-02-13 12:19:40 +0200 | [diff] [blame] | 458 | if shutil.which(browser): |
Senthil Kumaran | ea6b418 | 2011-12-21 22:20:32 +0800 | [diff] [blame] | 459 | register(browser, None, Chrome(browser)) |
| 460 | |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 461 | # Opera, quite popular |
Serhiy Storchaka | 540dcba | 2013-02-13 12:19:40 +0200 | [diff] [blame] | 462 | if shutil.which("opera"): |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 463 | register("opera", None, Opera("opera")) |
Eric S. Raymond | f7f1851 | 2001-01-23 13:16:32 +0000 | [diff] [blame] | 464 | |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 465 | # Next, Mosaic -- old but still in use. |
Serhiy Storchaka | 540dcba | 2013-02-13 12:19:40 +0200 | [diff] [blame] | 466 | if shutil.which("mosaic"): |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 467 | register("mosaic", None, BackgroundBrowser("mosaic")) |
Fred Drake | 3f8f164 | 2001-07-19 03:46:26 +0000 | [diff] [blame] | 468 | |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 469 | # Grail, the Python browser. Does anybody still use it? |
Serhiy Storchaka | 540dcba | 2013-02-13 12:19:40 +0200 | [diff] [blame] | 470 | if shutil.which("grail"): |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 471 | register("grail", Grail, None) |
Fred Drake | 3f8f164 | 2001-07-19 03:46:26 +0000 | [diff] [blame] | 472 | |
Neal Norwitz | 196f733 | 2005-10-04 03:17:49 +0000 | [diff] [blame] | 473 | # Prefer X browsers if present |
| 474 | if os.environ.get("DISPLAY"): |
| 475 | register_X_browsers() |
| 476 | |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 477 | # Also try console browsers |
| 478 | if os.environ.get("TERM"): |
doko@ubuntu.com | f85aca8 | 2013-03-24 18:50:23 +0100 | [diff] [blame] | 479 | if shutil.which("www-browser"): |
doko@ubuntu.com | 945c3bb | 2013-03-24 18:46:49 +0100 | [diff] [blame] | 480 | register("www-browser", None, GenericBrowser("www-browser")) |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 481 | # The Links/elinks browsers <http://artax.karlin.mff.cuni.cz/~mikulas/links/> |
Serhiy Storchaka | 540dcba | 2013-02-13 12:19:40 +0200 | [diff] [blame] | 482 | if shutil.which("links"): |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 483 | register("links", None, GenericBrowser("links")) |
Serhiy Storchaka | 540dcba | 2013-02-13 12:19:40 +0200 | [diff] [blame] | 484 | if shutil.which("elinks"): |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 485 | register("elinks", None, Elinks("elinks")) |
| 486 | # The Lynx browser <http://lynx.isc.org/>, <http://lynx.browser.org/> |
Serhiy Storchaka | 540dcba | 2013-02-13 12:19:40 +0200 | [diff] [blame] | 487 | if shutil.which("lynx"): |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 488 | register("lynx", None, GenericBrowser("lynx")) |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 489 | # The w3m browser <http://w3m.sourceforge.net/> |
Serhiy Storchaka | 540dcba | 2013-02-13 12:19:40 +0200 | [diff] [blame] | 490 | if shutil.which("w3m"): |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 491 | register("w3m", None, GenericBrowser("w3m")) |
Fred Drake | 3f8f164 | 2001-07-19 03:46:26 +0000 | [diff] [blame] | 492 | |
Eric S. Raymond | f7f1851 | 2001-01-23 13:16:32 +0000 | [diff] [blame] | 493 | # |
| 494 | # Platform support for Windows |
| 495 | # |
Fred Drake | c70b448 | 2000-07-09 16:45:56 +0000 | [diff] [blame] | 496 | |
| 497 | if sys.platform[:3] == "win": |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 498 | class WindowsDefault(BaseBrowser): |
Alexandre Vassalotti | e223eb8 | 2009-07-29 20:12:15 +0000 | [diff] [blame] | 499 | def open(self, url, new=0, autoraise=True): |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 500 | try: |
Steve Dower | 2ebd8f5 | 2015-09-05 11:57:47 -0700 | [diff] [blame] | 501 | os.startfile(url) |
Andrew Svetlov | 2606a6f | 2012-12-19 14:33:35 +0200 | [diff] [blame] | 502 | except OSError: |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 503 | # [Error 22] No application is associated with the specified |
| 504 | # file for this operation: '<URL>' |
| 505 | return False |
| 506 | else: |
| 507 | return True |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 508 | |
| 509 | _tryorder = [] |
| 510 | _browsers = {} |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 511 | |
Steve Dower | 2ebd8f5 | 2015-09-05 11:57:47 -0700 | [diff] [blame] | 512 | # First try to use the default Windows browser |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 513 | register("windows-default", WindowsDefault) |
| 514 | |
Steve Dower | 2ebd8f5 | 2015-09-05 11:57:47 -0700 | [diff] [blame] | 515 | # Detect some common Windows browsers, fallback to IE |
| 516 | iexplore = os.path.join(os.environ.get("PROGRAMFILES", "C:\\Program Files"), |
| 517 | "Internet Explorer\\IEXPLORE.EXE") |
| 518 | for browser in ("firefox", "firebird", "seamonkey", "mozilla", |
| 519 | "netscape", "opera", iexplore): |
| 520 | if shutil.which(browser): |
| 521 | register(browser, None, BackgroundBrowser(browser)) |
Fred Drake | c70b448 | 2000-07-09 16:45:56 +0000 | [diff] [blame] | 522 | |
Fred Drake | c70b448 | 2000-07-09 16:45:56 +0000 | [diff] [blame] | 523 | # |
Eric S. Raymond | f7f1851 | 2001-01-23 13:16:32 +0000 | [diff] [blame] | 524 | # Platform support for MacOS |
| 525 | # |
Fred Drake | c70b448 | 2000-07-09 16:45:56 +0000 | [diff] [blame] | 526 | |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 527 | if sys.platform == 'darwin': |
| 528 | # Adapted from patch submitted to SourceForge by Steven J. Burr |
| 529 | class MacOSX(BaseBrowser): |
| 530 | """Launcher class for Aqua browsers on Mac OS X |
| 531 | |
| 532 | Optionally specify a browser name on instantiation. Note that this |
| 533 | will not work for Aqua browsers if the user has moved the application |
| 534 | package after installation. |
| 535 | |
| 536 | If no browser is specified, the default browser, as specified in the |
| 537 | Internet System Preferences panel, will be used. |
| 538 | """ |
| 539 | def __init__(self, name): |
| 540 | self.name = name |
| 541 | |
Alexandre Vassalotti | e223eb8 | 2009-07-29 20:12:15 +0000 | [diff] [blame] | 542 | def open(self, url, new=0, autoraise=True): |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 543 | assert "'" not in url |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 544 | # hack for local urls |
| 545 | if not ':' in url: |
| 546 | url = 'file:'+url |
Tim Peters | 887c080 | 2006-01-20 23:40:56 +0000 | [diff] [blame] | 547 | |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 548 | # new must be 0 or 1 |
| 549 | new = int(bool(new)) |
| 550 | if self.name == "default": |
| 551 | # User called open, open_new or get without a browser parameter |
Georg Brandl | 1cb179e | 2005-11-09 21:42:48 +0000 | [diff] [blame] | 552 | script = 'open location "%s"' % url.replace('"', '%22') # opens in default browser |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 553 | else: |
| 554 | # User called get and chose a browser |
| 555 | if self.name == "OmniWeb": |
| 556 | toWindow = "" |
| 557 | else: |
| 558 | # Include toWindow parameter of OpenURL command for browsers |
| 559 | # that support it. 0 == new window; -1 == existing |
| 560 | toWindow = "toWindow %d" % (new - 1) |
Georg Brandl | 1cb179e | 2005-11-09 21:42:48 +0000 | [diff] [blame] | 561 | cmd = 'OpenURL "%s"' % url.replace('"', '%22') |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 562 | script = '''tell application "%s" |
| 563 | activate |
| 564 | %s %s |
| 565 | end tell''' % (self.name, cmd, toWindow) |
| 566 | # Open pipe to AppleScript through osascript command |
| 567 | osapipe = os.popen("osascript", "w") |
| 568 | if osapipe is None: |
| 569 | return False |
| 570 | # Write script to osascript's stdin |
| 571 | osapipe.write(script) |
| 572 | rc = osapipe.close() |
| 573 | return not rc |
| 574 | |
Ronald Oussoren | 4d39f6e | 2010-05-02 09:54:35 +0000 | [diff] [blame] | 575 | class MacOSXOSAScript(BaseBrowser): |
| 576 | def __init__(self, name): |
| 577 | self._name = name |
| 578 | |
| 579 | def open(self, url, new=0, autoraise=True): |
| 580 | if self._name == 'default': |
| 581 | script = 'open location "%s"' % url.replace('"', '%22') # opens in default browser |
| 582 | else: |
| 583 | script = ''' |
| 584 | tell application "%s" |
| 585 | activate |
| 586 | open location "%s" |
| 587 | end |
| 588 | '''%(self._name, url.replace('"', '%22')) |
| 589 | |
| 590 | osapipe = os.popen("osascript", "w") |
| 591 | if osapipe is None: |
| 592 | return False |
| 593 | |
| 594 | osapipe.write(script) |
| 595 | rc = osapipe.close() |
| 596 | return not rc |
| 597 | |
| 598 | |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 599 | # Don't clear _tryorder or _browsers since OS X can use above Unix support |
| 600 | # (but we prefer using the OS X specific stuff) |
Ronald Oussoren | 4d39f6e | 2010-05-02 09:54:35 +0000 | [diff] [blame] | 601 | register("safari", None, MacOSXOSAScript('safari'), -1) |
| 602 | register("firefox", None, MacOSXOSAScript('firefox'), -1) |
| 603 | register("MacOSX", None, MacOSXOSAScript('default'), -1) |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 604 | |
Eric S. Raymond | f7f1851 | 2001-01-23 13:16:32 +0000 | [diff] [blame] | 605 | |
| 606 | # OK, now that we know what the default preference orders for each |
| 607 | # platform are, allow user to override them with the BROWSER variable. |
Raymond Hettinger | 54f0222 | 2002-06-01 14:18:47 +0000 | [diff] [blame] | 608 | if "BROWSER" in os.environ: |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 609 | _userchoices = os.environ["BROWSER"].split(os.pathsep) |
| 610 | _userchoices.reverse() |
Skip Montanaro | cdab3bf | 2001-07-18 20:03:32 +0000 | [diff] [blame] | 611 | |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 612 | # Treat choices in same way as if passed into get() but do register |
| 613 | # and prepend to _tryorder |
| 614 | for cmdline in _userchoices: |
| 615 | if cmdline != '': |
Benjamin Peterson | 8719ad5 | 2009-09-11 22:24:02 +0000 | [diff] [blame] | 616 | cmd = _synthesize(cmdline, -1) |
| 617 | if cmd[1] is None: |
| 618 | register(cmdline, None, GenericBrowser(cmdline), -1) |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 619 | cmdline = None # to make del work if _userchoices was empty |
| 620 | del cmdline |
| 621 | del _userchoices |
Skip Montanaro | cdab3bf | 2001-07-18 20:03:32 +0000 | [diff] [blame] | 622 | |
Skip Montanaro | cdab3bf | 2001-07-18 20:03:32 +0000 | [diff] [blame] | 623 | # what to do if _tryorder is now empty? |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 624 | |
| 625 | |
| 626 | def main(): |
| 627 | import getopt |
| 628 | usage = """Usage: %s [-n | -t] url |
| 629 | -n: open new window |
| 630 | -t: open new tab""" % sys.argv[0] |
| 631 | try: |
| 632 | opts, args = getopt.getopt(sys.argv[1:], 'ntd') |
Guido van Rossum | b940e11 | 2007-01-10 16:19:56 +0000 | [diff] [blame] | 633 | except getopt.error as msg: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 634 | print(msg, file=sys.stderr) |
| 635 | print(usage, file=sys.stderr) |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 636 | sys.exit(1) |
| 637 | new_win = 0 |
| 638 | for o, a in opts: |
| 639 | if o == '-n': new_win = 1 |
| 640 | elif o == '-t': new_win = 2 |
Guido van Rossum | b053cd8 | 2006-08-24 03:53:23 +0000 | [diff] [blame] | 641 | if len(args) != 1: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 642 | print(usage, file=sys.stderr) |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 643 | sys.exit(1) |
| 644 | |
| 645 | url = args[0] |
| 646 | open(url, new_win) |
| 647 | |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 648 | print("\a") |
Georg Brandl | 23929f2 | 2006-01-20 21:03:35 +0000 | [diff] [blame] | 649 | |
Georg Brandl | e8f2443 | 2005-10-03 14:16:44 +0000 | [diff] [blame] | 650 | if __name__ == "__main__": |
| 651 | main() |