-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathbrowser.go
More file actions
107 lines (92 loc) · 2.69 KB
/
browser.go
File metadata and controls
107 lines (92 loc) · 2.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
// Package browser provides helpers to open files, readers, and urls in a browser window.
//
// The choice of which browser is started is entirely client dependant.
package browser
import (
"fmt"
"io"
"io/ioutil"
"os"
"os/exec"
"path/filepath"
)
// Stdout is the io.Writer to which executed commands write standard output.
var Stdout io.Writer = os.Stdout
// Stderr is the io.Writer to which executed commands write standard error.
var Stderr io.Writer = os.Stderr
// Opener allows customizing browser opening behavior.
type Opener struct {
// Stdout is the io.Writer to which executed commands write standard output.
// If nil, os.Stdout is used.
Stdout io.Writer
// Stderr is the io.Writer to which executed commands write standard error.
// If nil, os.Stderr is used.
Stderr io.Writer
}
func (o *Opener) stdout() io.Writer {
if o.Stdout != nil {
return o.Stdout
}
return Stdout
}
func (o *Opener) stderr() io.Writer {
if o.Stderr != nil {
return o.Stderr
}
return Stderr
}
func (o *Opener) runCmd(prog string, args ...string) error {
cmd := exec.Command(prog, args...)
cmd.Stdout = o.stdout()
cmd.Stderr = o.stderr()
return cmd.Run()
}
// OpenFile opens new browser window for the file path.
func (o *Opener) OpenFile(path string) error {
path, err := filepath.Abs(path)
if err != nil {
return err
}
return o.OpenURL("file://" + path)
}
// OpenReader consumes the contents of r and presents the
// results in a new browser window.
func (o *Opener) OpenReader(r io.Reader) error {
f, err := ioutil.TempFile("", "browser.*.html")
if err != nil {
return fmt.Errorf("browser: could not create temporary file: %v", err)
}
if _, err := io.Copy(f, r); err != nil {
f.Close()
return fmt.Errorf("browser: caching temporary file failed: %v", err)
}
if err := f.Close(); err != nil {
return fmt.Errorf("browser: caching temporary file failed: %v", err)
}
return o.OpenFile(f.Name())
}
// OpenURL opens a new browser window pointing to url.
func (o *Opener) OpenURL(url string) error {
return o.openBrowser(url)
}
// defaultOpener returns an Opener configured with the package-level Stdout/Stderr.
// This is done as a function to always grab the latest values of Stdout/Stderr.
func defaultOpener() *Opener {
return &Opener{
Stdout: Stdout,
Stderr: Stderr,
}
}
// OpenFile opens new browser window for the file path.
func OpenFile(path string) error {
return defaultOpener().OpenFile(path)
}
// OpenReader consumes the contents of r and presents the
// results in a new browser window.
func OpenReader(r io.Reader) error {
return defaultOpener().OpenReader(r)
}
// OpenURL opens a new browser window pointing to url.
func OpenURL(url string) error {
return defaultOpener().OpenURL(url)
}