Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4e13f81

Browse files
committedApr 5, 2024·
feat: add browser utility
1 parent 94fda52 commit 4e13f81

File tree

6 files changed

+127
-1
lines changed

6 files changed

+127
-1
lines changed
 

‎browser/browser.go

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
// Copyright 2024 KusionStack Authors
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
15+
package browser
16+
17+
import (
18+
"net/url"
19+
"os/exec"
20+
"runtime"
21+
22+
"github.com/pkg/browser"
23+
)
24+
25+
// nativeBrowser should implement the Browser interface.
26+
var _ Browser = nativeBrowser{}
27+
28+
// NewNativeBrowser creates and returns a Browser that will attempt to interact
29+
// with the browser-launching mechanisms of the operating system where the
30+
// program is currently running.
31+
func NewNativeBrowser() Browser {
32+
return nativeBrowser{}
33+
}
34+
35+
type nativeBrowser struct{}
36+
37+
// OpenURL opens given url in a new browser tab.
38+
func (b nativeBrowser) OpenURL(URL string) error {
39+
_, err := url.Parse(URL)
40+
if err != nil {
41+
return err
42+
}
43+
if runtime.GOOS == "linux" {
44+
_, err = exec.LookPath("xdg-open")
45+
if err != nil {
46+
return nil
47+
}
48+
}
49+
return browser.OpenURL(URL)
50+
}

‎browser/browser_test.go

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
// Copyright 2024 KusionStack Authors
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
15+
package browser
16+
17+
import "testing"
18+
19+
func TestOpenInvalidURL(t *testing.T) {
20+
browser := NewNativeBrowser()
21+
err := browser.OpenURL("ht%2ds://localhost:8080")
22+
if err == nil {
23+
t.Fatal("should return invalid url error")
24+
}
25+
}

‎browser/doc.go

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// Copyright 2024 KusionStack Authors
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
15+
// Package browser provides utility to open a given url in web browser.
16+
package browser

‎browser/interface.go

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
// Copyright 2024 KusionStack Authors
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
15+
package browser
16+
17+
// Browser is an object that knows how to open a given URL in a new tab in
18+
// some suitable browser on the current system.
19+
type Browser interface {
20+
// OpenURL opens the given URL in a web browser.
21+
//
22+
// Depending on the circumstances and on the target platform, this may or
23+
// may not cause the browser to take input focus. Because of this
24+
// uncertainty, any caller of this method must be sure to include some
25+
// language in its UI output to let the user know that a browser tab has
26+
// opened somewhere, so that they can go and find it if the focus didn't
27+
// switch automatically.
28+
OpenURL(URL string) error
29+
}

‎go.mod

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@ module kusionstack.io/component-base
33
go 1.22.1
44

55
require (
6+
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c
67
github.com/spf13/cobra v1.8.0
8+
github.com/spf13/pflag v1.0.5
79
go.uber.org/zap v1.27.0
810
gopkg.in/natefinch/lumberjack.v2 v2.2.1
911
)
1012

1113
require (
1214
github.com/inconshreveable/mousetrap v1.1.0 // indirect
13-
github.com/spf13/pflag v1.0.5 // indirect
1415
go.uber.org/multierr v1.10.0 // indirect
16+
golang.org/x/sys v0.1.0 // indirect
1517
)

‎go.sum

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c
33
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
44
github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8=
55
github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw=
6+
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c h1:+mdjkGKdHQG3305AYmdv1U2eRNDiU2ErMBj1gwrq8eQ=
7+
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c/go.mod h1:7rwL4CYBLnjLxUqIJNnCWiEdr3bn6IUYi15bNlnbCCU=
68
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
79
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
810
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
@@ -18,6 +20,8 @@ go.uber.org/multierr v1.10.0 h1:S0h4aNzvfcFsC3dRF1jLoaov7oRaKqRGC/pUEJ2yvPQ=
1820
go.uber.org/multierr v1.10.0/go.mod h1:20+QtiLqy0Nd6FdQB9TLXag12DsQkrbs3htMFfDN80Y=
1921
go.uber.org/zap v1.27.0 h1:aJMhYGrd5QSmlpLMr2MftRKl7t8J8PTZPA732ud/XR8=
2022
go.uber.org/zap v1.27.0/go.mod h1:GB2qFLM7cTU87MWRP2mPIjqfIDnGu+VIO4V/SdhGo2E=
23+
golang.org/x/sys v0.1.0 h1:kunALQeHf1/185U1i0GOB/fy1IPRDDpuoOOqRReG57U=
24+
golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
2125
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
2226
gopkg.in/natefinch/lumberjack.v2 v2.2.1 h1:bBRl1b0OH9s/DuPhuXpNl+VtCaJXFZ5/uEFST95x9zc=
2327
gopkg.in/natefinch/lumberjack.v2 v2.2.1/go.mod h1:YD8tP3GAjkrDg1eZH7EGmyESg/lsYskCTPBJVb9jqSc=

0 commit comments

Comments
 (0)
Please sign in to comment.