1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- #
- #
- # Nim's Runtime Library
- # (c) Copyright 2012 Andreas Rumpf
- #
- # See the file "copying.txt", included in this
- # distribution, for details about the copyright.
- #
- ## This module implements a simple proc for opening URLs with the user's
- ## default browser.
- ##
- ## Unstable API.
- import strutils
- when defined(windows):
- import winlean
- from os import absolutePath
- else:
- import os, osproc
- const osOpenCmd* =
- when defined(macos) or defined(macosx) or defined(windows): "open" else: "xdg-open" ## \
- ## Alias for the operating system specific *"open"* command,
- ## ``"open"`` on OSX, MacOS and Windows, ``"xdg-open"`` on Linux, BSD, etc.
- proc prepare(s: string): string =
- if s.contains("://"):
- result = s
- else:
- result = "file://" & absolutePath(s)
- proc openDefaultBrowser*(url: string) =
- ## opens `url` with the user's default browser. This does not block.
- ##
- ## Under Windows, ``ShellExecute`` is used. Under Mac OS X the ``open``
- ## command is used. Under Unix, it is checked if ``xdg-open`` exists and
- ## used if it does. Otherwise the environment variable ``BROWSER`` is
- ## used to determine the default browser to use.
- ##
- ## This proc doesn't raise an exception on error, beware.
- when defined(windows):
- var o = newWideCString(osOpenCmd)
- var u = newWideCString(prepare url)
- discard shellExecuteW(0'i32, o, u, nil, nil, SW_SHOWNORMAL)
- elif defined(macosx):
- discard execShellCmd(osOpenCmd & " " & quoteShell(prepare url))
- else:
- var u = quoteShell(prepare url)
- if execShellCmd(osOpenCmd & " " & u) == 0: return
- for b in getEnv("BROWSER").string.split(PathSep):
- try:
- # we use ``startProcess`` here because we don't want to block!
- discard startProcess(command = b, args = [url], options = {poUsePath})
- return
- except OSError:
- discard
|