2020-06-18 16:54:48 -04:00
|
|
|
// +build linux freebsd netbsd openbsd
|
2020-08-27 11:47:57 -04:00
|
|
|
|
2020-08-25 21:18:57 -04:00
|
|
|
//nolint:goerr113
|
2020-06-18 16:54:48 -04:00
|
|
|
package webbrowser
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"os/exec"
|
|
|
|
)
|
|
|
|
|
2020-10-01 17:06:50 -04:00
|
|
|
// Open opens `url` in default system browser. It tries to do so in two
|
|
|
|
// ways (xdg-open and $BROWSER). It only works if there is a display
|
|
|
|
// server working.
|
|
|
|
//
|
|
|
|
// bouncepaw: I tried to support TTYs as well. The idea was to open
|
|
|
|
// a browser in foreground and return back to amfora after the browser
|
|
|
|
// is closed. While all browsers I tested opened correctly (w3m, lynx),
|
|
|
|
// I couldn't make it restore amfora correctly. The screen always ended
|
|
|
|
// up distorted. None of my stunts with altscreen buffers helped.
|
2020-06-18 16:54:48 -04:00
|
|
|
func Open(url string) (string, error) {
|
2020-10-01 17:06:50 -04:00
|
|
|
var (
|
|
|
|
// In prev versions there was also Xorg executable checked for.
|
|
|
|
// I don't see any reason to check for it.
|
|
|
|
xorgDisplay = os.Getenv("DISPLAY")
|
|
|
|
waylandDisplay = os.Getenv("WAYLAND_DISPLAY")
|
|
|
|
xdgOpenPath, xdgOpenNotFoundErr = exec.LookPath("xdg-open")
|
|
|
|
envBrowser = os.Getenv("BROWSER")
|
|
|
|
)
|
|
|
|
switch {
|
|
|
|
case xorgDisplay == "" && waylandDisplay == "":
|
|
|
|
return "", fmt.Errorf("no display server was found")
|
|
|
|
case xdgOpenNotFoundErr == nil: // Prefer xdg-open over $BROWSER
|
|
|
|
// Use start rather than run or output in order
|
|
|
|
// to make browser running in background.
|
|
|
|
if err := exec.Command(xdgOpenPath, url).Start(); err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
return "Opened in system default web browser", nil
|
|
|
|
case envBrowser != "":
|
|
|
|
if err := exec.Command(envBrowser, url).Start(); err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
return "Opened in system default web browser", nil
|
|
|
|
default:
|
|
|
|
return "", fmt.Errorf("could not determine system browser")
|
2020-06-18 16:54:48 -04:00
|
|
|
}
|
|
|
|
}
|