| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- package lorca
- import (
- "os"
- "os/exec"
- "runtime"
- "strings"
- )
- // ChromeExecutable returns a string which points to the preferred Chrome
- // executable file.
- var ChromeExecutable = LocateChrome
- // LocateChrome returns a path to the Chrome binary, or an empty string if
- // Chrome installation is not found.
- func LocateChrome() string {
- // If env variable "LORCACHROME" specified and it exists
- if path, ok := os.LookupEnv("LORCACHROME"); ok {
- if _, err := os.Stat(path); err == nil {
- return path
- }
- }
- var paths []string
- switch runtime.GOOS {
- case "darwin":
- paths = []string{
- "/Applications/Google Chrome.app/Contents/MacOS/Google Chrome",
- "/Applications/Google Chrome Canary.app/Contents/MacOS/Google Chrome Canary",
- "/Applications/Chromium.app/Contents/MacOS/Chromium",
- "/usr/bin/google-chrome-stable",
- "/usr/bin/google-chrome",
- "/usr/bin/chromium",
- "/usr/bin/chromium-browser",
- }
- case "windows":
- paths = []string{
- os.Getenv("LocalAppData") + "/Google/Chrome/Application/chrome.exe",
- os.Getenv("ProgramFiles") + "/Google/Chrome/Application/chrome.exe",
- os.Getenv("ProgramFiles(x86)") + "/Google/Chrome/Application/chrome.exe",
- os.Getenv("LocalAppData") + "/Chromium/Application/chrome.exe",
- os.Getenv("ProgramFiles") + "/Chromium/Application/chrome.exe",
- os.Getenv("ProgramFiles(x86)") + "/Chromium/Application/chrome.exe",
- os.Getenv("ProgramFiles(x86)") + "/Microsoft/Edge/Application/msedge.exe",
- }
- default:
- paths = []string{
- "/usr/bin/google-chrome-stable",
- "/usr/bin/google-chrome",
- "/usr/bin/chromium",
- "/usr/bin/chromium-browser",
- "/snap/bin/chromium",
- }
- }
- for _, path := range paths {
- if _, err := os.Stat(path); os.IsNotExist(err) {
- continue
- }
- return path
- }
- return ""
- }
- // PromptDownload asks user if he wants to download and install Chrome, and
- // opens a download web page if the user agrees.
- func PromptDownload() {
- title := "Chrome not found"
- text := "No Chrome/Chromium installation was found. Would you like to download and install it now?"
- // Ask user for confirmation
- if !messageBox(title, text) {
- return
- }
- // Open download page
- url := "https://www.google.com/chrome/"
- switch runtime.GOOS {
- case "linux":
- exec.Command("xdg-open", url).Run()
- case "darwin":
- exec.Command("open", url).Run()
- case "windows":
- r := strings.NewReplacer("&", "^&")
- exec.Command("cmd", "/c", "start", r.Replace(url)).Run()
- }
- }
|