Skip to content
This repository was archived by the owner on Jun 27, 2020. It is now read-only.

Commit beb34de

Browse files
committed
Show link when starting server
1 parent 129e55b commit beb34de

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

bookbrowser.go

+27
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@ import (
44
"flag"
55
"io/ioutil"
66
"log"
7+
"net"
78
"os"
89
"os/signal"
910
"path/filepath"
11+
"strings"
1012
"syscall"
1113
)
1214

@@ -16,6 +18,19 @@ var addr *string
1618

1719
var curversion = "undefined"
1820

21+
// GetIP gets the preferred outbound ip of this machine
22+
func GetIP() net.IP {
23+
conn, err := net.Dial("udp", "8.8.8.8:80")
24+
if err != nil {
25+
return nil
26+
}
27+
defer conn.Close()
28+
29+
localAddr := conn.LocalAddr().(*net.UDPAddr)
30+
31+
return localAddr.IP
32+
}
33+
1934
func main() {
2035
wd, err := os.Getwd()
2136
if err != nil {
@@ -72,5 +87,17 @@ func main() {
7287
log.Fatalln("Fatal error: no books found")
7388
}
7489

90+
if !strings.Contains(*addr, ":") {
91+
log.Fatalln("Invalid listening address")
92+
}
93+
94+
sp := strings.SplitN(*addr, ":", 2)
95+
if sp[0] == "" {
96+
ip := GetIP()
97+
if ip != nil {
98+
log.Printf("This server can be accessed at http://%s:%s\n", ip.String(), sp[1])
99+
}
100+
}
101+
75102
runServer(*books, *addr)
76103
}

0 commit comments

Comments
 (0)