Skip to content

Commit 9a27cc3

Browse files
authored
Single binary build (ngoduykhanh#10)
Single binary build Use go rice for embedding the static files and templates to the binary file
1 parent b741a91 commit 9a27cc3

12 files changed

+169
-34
lines changed

.dockerignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ docker-compose*
1919
# Others
2020
.lgtm.yml
2121
.travis.yml
22+
.vscode
2223

2324
# App data & bin
2425
db
25-
wireguard-ui
26+
assets
27+
wireguard-ui

.gitignore

+7-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,12 @@ wireguard-ui
1212
# Output of the go coverage tool, specifically when used with LiteIDE
1313
*.out
1414

15-
# Dependency directories (remove the comment below to include it)
15+
# Dependency directories and files (remove the comment below to include it)
1616
vendor/
1717
assets/
18-
node_modules
18+
node_modules/
19+
rice-box.go
20+
21+
# IDEs
22+
.vscode
23+
.idea

Dockerfile

+16-12
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,19 @@ WORKDIR /build
1212
# Add sources
1313
COPY . /build
1414

15-
# Get application dependencies and build
16-
RUN go mod download
17-
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -o wg-ui .
18-
1915
# Prepare assets
2016
RUN yarn install --pure-lockfile --production && \
2117
yarn cache clean
2218

19+
# Move admin-lte dist
20+
RUN mkdir -p assets/dist/js assets/dist/css && \
21+
cp /build/node_modules/admin-lte/dist/js/adminlte.min.js \
22+
assets/dist/js/adminlte.min.js && \
23+
cp /build/node_modules/admin-lte/dist/css/adminlte.min.css \
24+
assets/dist/css/adminlte.min.css
25+
2326
# Move plugin assets
24-
RUN mkdir -p /assets/plugins && \
27+
RUN mkdir -p assets/plugins && \
2528
cp -r /build/node_modules/admin-lte/plugins/jquery/ \
2629
/build/node_modules/admin-lte/plugins/fontawesome-free/ \
2730
/build/node_modules/admin-lte/plugins/bootstrap/ \
@@ -30,8 +33,15 @@ RUN mkdir -p /assets/plugins && \
3033
/build/node_modules/admin-lte/plugins/jquery-validation/ \
3134
/build/node_modules/admin-lte/plugins/select2/ \
3235
/build/node_modules/jquery-tags-input/ \
33-
/assets/plugins/
36+
assets/plugins/
37+
38+
# Get go modules and build tool
39+
RUN go mod download && \
40+
go get github.com/GeertJohan/go.rice/rice
3441

42+
# Build
43+
RUN rice embed-go && \
44+
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -o wg-ui .
3545

3646
# Release stage
3747
FROM alpine:3.11
@@ -47,12 +57,6 @@ RUN mkdir -p db
4757

4858
# Copy binary files
4959
COPY --from=builder --chown=wgui:wgui /build/wg-ui /app
50-
# Copy templates
51-
COPY --from=builder --chown=wgui:wgui /build/templates /app/templates
52-
# Copy assets
53-
COPY --from=builder --chown=wgui:wgui /build/node_modules/admin-lte/dist/js/adminlte.min.js /app/assets/dist/js/adminlte.min.js
54-
COPY --from=builder --chown=wgui:wgui /build/node_modules/admin-lte/dist/css/adminlte.min.css /app/assets/dist/css/adminlte.min.css
55-
COPY --from=builder --chown=wgui:wgui /assets/plugins /app/assets/plugins
5660

5761
RUN chmod +x wg-ui
5862

README.md

+44-3
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,24 @@ A web user interface to manage your WireGuard setup.
88
- Retrieve configs using QR code / file
99

1010
## Run WireGuard-UI
11-
Only docker option for now, please refer to this example of [docker-compose.yml](https://github.com/ngoduykhanh/wireguard-ui/blob/master/docker-compose.yaml).
1211

13-
Please adjust volume mount points to work with your setup. Then run it:
12+
Default username and password are `admin`.
13+
14+
### Using docker compose
15+
16+
You can take a look at this example of [docker-compose.yml](https://github.com/ngoduykhanh/wireguard-ui/blob/master/docker-compose.yaml). Please adjust volume mount points to work with your setup. Then run it like below:
1417

1518
```
1619
docker-compose up
1720
```
1821

19-
Default username and password are `admin`.
22+
### Using binary file
23+
24+
Download the binary file from the release and run it with command:
25+
26+
```
27+
./wireguard-ui
28+
```
2029

2130
## Auto restart WireGuard daemon
2231
WireGuard-UI only takes care of configuration generation. You can use systemd to watch for the changes and restart the service. Following is an example:
@@ -52,6 +61,38 @@ systemctl enable wgui.{path,service}
5261
systemctl start wgui.{path,service}
5362
```
5463

64+
## Build
65+
66+
### Build docker image
67+
68+
Go to the project root directory and run the following command:
69+
70+
```
71+
docker build -t wireguard-ui .
72+
```
73+
74+
### Build binary file
75+
76+
Prepare the assets directory
77+
78+
```
79+
./prepare_assets.sh
80+
```
81+
82+
Then you can embed resources by generating Go source code
83+
84+
```
85+
rice embed-go
86+
go build -o wireguard-ui
87+
```
88+
89+
Or, append resources to executable as zip file
90+
91+
```
92+
go build -o wireguard-ui
93+
rice append --exec wireguard-ui
94+
```
95+
5596
## Screenshot
5697

5798
![wireguard-ui](https://user-images.githubusercontent.com/6447444/80270680-76adf980-86e4-11ea-8ca1-9237f0dfa249.png)

docker-compose.yaml

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ version: '3'
22

33
services:
44
wg:
5-
image: ngoduykhanh/wireguard-ui:latest
5+
#image: ngoduykhanh/wireguard-ui:latest
6+
image: wgui:latest
67
container_name: wgui
78
ports:
89
- 5000:5000
@@ -12,4 +13,4 @@ services:
1213
max-size: 50m
1314
volumes:
1415
- ./db:/app/db
15-
- /etc/wireguard:/etc/wireguard
16+
# - /etc/wireguard:/etc/wireguard

go.mod

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ module github.com/ngoduykhanh/wireguard-ui
33
go 1.14
44

55
require (
6+
github.com/GeertJohan/go.rice v1.0.0
67
github.com/glendc/go-external-ip v0.0.0-20170425150139-139229dcdddd
78
github.com/go-playground/universal-translator v0.17.0 // indirect
89
github.com/gorilla/sessions v1.2.0

go.sum

+8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1+
github.com/GeertJohan/go.incremental v1.0.0/go.mod h1:6fAjUhbVuX1KcMD3c8TEgVUqmo4seqhv0i0kdATSkM0=
2+
github.com/GeertJohan/go.rice v1.0.0 h1:KkI6O9uMaQU3VEKaj01ulavtF7o1fWT7+pk/4voiMLQ=
3+
github.com/GeertJohan/go.rice v1.0.0/go.mod h1:eH6gbSOAUv07dQuZVnBmoDP8mgsM1rtixis4Tib9if0=
14
github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible/go.mod h1:r7JcOSlj0wfOMncg0iLm8Leh48TZaKVeNIfJntJ2wa0=
5+
github.com/akavel/rsrc v0.8.0/go.mod h1:uLoCtb9J+EyAqh+26kdrTgmzRBFPGOolLWKpdxkKq+c=
26
github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc=
37
github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0=
48
github.com/appleboy/gofight/v2 v2.1.2/go.mod h1:frW+U1QZEdDgixycTj4CygQ48yLTUhplt43+Wczp3rw=
@@ -7,6 +11,8 @@ github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+Ce
711
github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw=
812
github.com/casbin/casbin/v2 v2.0.0/go.mod h1:YcPU1XXisHhLzuxH9coDNf2FbKpjGlbCg3n9yuLkIJQ=
913
github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd/go.mod h1:sE/e/2PUdi/liOCUjSTXgM1o87ZssimdTWN964YiIeI=
14+
github.com/daaku/go.zipexe v1.0.0 h1:VSOgZtH418pH9L16hC/JrgSNJbbAL26pj7lmD1+CGdY=
15+
github.com/daaku/go.zipexe v1.0.0/go.mod h1:z8IiR6TsVLEYKwXAoE/I+8ys/sDkgTzSL0CLnGVd57E=
1016
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
1117
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
1218
github.com/dgrijalva/jwt-go v3.2.0+incompatible h1:7qlOGliEKZXTDg6OTjfoBKDXWrumCAMpl/TFQ4/5kLM=
@@ -39,6 +45,7 @@ github.com/gorilla/sessions v1.2.0 h1:S7P+1Hm5V/AT9cjEcUD5uDaQSX0OE577aCXgoaKpYb
3945
github.com/gorilla/sessions v1.2.0/go.mod h1:dk2InVEVJ0sfLlnXv9EAgkf6ecYs/i80K/zI+bUmuGM=
4046
github.com/jcelliott/lumber v0.0.0-20160324203708-dd349441af25 h1:EFT6MH3igZK/dIVqgGbTqWVvkZ7wJ5iGN03SVtvvdd8=
4147
github.com/jcelliott/lumber v0.0.0-20160324203708-dd349441af25/go.mod h1:sWkGw/wsaHtRsT9zGQ/WyJCotGWG/Anow/9hsAcBWRw=
48+
github.com/jessevdk/go-flags v1.4.0/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI=
4249
github.com/jsimonetti/rtnetlink v0.0.0-20190606172950-9527aa82566a/go.mod h1:Oz+70psSo5OFh8DBl0Zv2ACw7Esh6pPUphlvZG9x7uw=
4350
github.com/jsimonetti/rtnetlink v0.0.0-20200117123717-f846d4f6c1f4/go.mod h1:WGuG/smIU4J/54PblvSbh+xvCZmpJnFgr3ds6Z55XMQ=
4451
github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU=
@@ -75,6 +82,7 @@ github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJ
7582
github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0=
7683
github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0=
7784
github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U=
85+
github.com/nkovacs/streamquote v0.0.0-20170412213628-49af9bddb229/go.mod h1:0aYXnNPJ8l7uZxf45rWW1a/uME32OF0rhiYGNQ2oF2E=
7886
github.com/opentracing/opentracing-go v1.1.0/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o=
7987
github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
8088
github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=

handler/routes.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ package handler
33
import (
44
"encoding/json"
55
"fmt"
6+
rice "github.com/GeertJohan/go.rice"
67
"net/http"
78
"strings"
89
"time"
@@ -429,7 +430,7 @@ func SuggestIPAllocation() echo.HandlerFunc {
429430
}
430431

431432
// ApplyServerConfig handler to write config file and restart Wireguard server
432-
func ApplyServerConfig() echo.HandlerFunc {
433+
func ApplyServerConfig(tmplBox *rice.Box) echo.HandlerFunc {
433434
return func(c echo.Context) error {
434435
// access validation
435436
validSession(c)
@@ -453,7 +454,7 @@ func ApplyServerConfig() echo.HandlerFunc {
453454
}
454455

455456
// Write config file
456-
err = util.WriteWireGuardServerConfig(server, clients, settings)
457+
err = util.WriteWireGuardServerConfig(tmplBox, server, clients, settings)
457458
if err != nil {
458459
log.Error("Cannot apply server config: ", err)
459460
return c.JSON(http.StatusInternalServerError, jsonHTTPResponse{false, fmt.Sprintf("Cannot apply server config: %v", err)})

main.go

+15-3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@ package main
22

33
import (
44
"fmt"
5-
5+
rice "github.com/GeertJohan/go.rice"
6+
"github.com/labstack/echo/v4"
67
"github.com/ngoduykhanh/wireguard-ui/handler"
78
"github.com/ngoduykhanh/wireguard-ui/router"
89
"github.com/ngoduykhanh/wireguard-ui/util"
10+
"net/http"
911
)
1012

1113
func main() {
@@ -15,8 +17,14 @@ func main() {
1517
fmt.Print("Cannot init database: ", err)
1618
}
1719

20+
// create rice box for embedded template
21+
tmplBox := rice.MustFindBox("templates")
22+
23+
// rice file server for assets. "assets" is the folder where the files come from.
24+
assetHandler := http.FileServer(rice.MustFindBox("assets").HTTPBox())
25+
1826
// register routes
19-
app := router.New()
27+
app := router.New(tmplBox)
2028

2129
app.GET("/", handler.WireGuardClients())
2230
app.GET("/login", handler.LoginPage())
@@ -33,6 +41,10 @@ func main() {
3341
app.POST("/global-settings", handler.GlobalSettingSubmit())
3442
app.GET("/api/machine-ips", handler.MachineIPAddresses())
3543
app.GET("/api/suggest-client-ips", handler.SuggestIPAllocation())
36-
app.GET("/api/apply-wg-config", handler.ApplyServerConfig())
44+
app.GET("/api/apply-wg-config", handler.ApplyServerConfig(tmplBox))
45+
46+
// servers other static files
47+
app.GET("/static/*", echo.WrapHandler(http.StripPrefix("/static/", assetHandler)))
48+
3749
app.Logger.Fatal(app.Start("0.0.0.0:5000"))
3850
}

prepare_assets.sh

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
#!/usr/bin/env bash
2+
set -e
3+
4+
DIR=$(dirname "$0")
5+
6+
# install node modules
7+
yarn install --pure-lockfile --production
8+
9+
# Copy admin-lte dist
10+
mkdir -p "${DIR}/assets/dist/js" "${DIR}/assets/dist/css" && \
11+
cp -r "${DIR}/node_modules/admin-lte/dist/js/adminlte.min.js" "${DIR}/assets/dist/js/adminlte.min.js" && \
12+
cp -r "${DIR}/node_modules/admin-lte/dist/css/adminlte.min.css" "${DIR}/assets/dist/css/adminlte.min.css"
13+
14+
# Copy plugins
15+
mkdir -p "${DIR}/assets/plugins" && \
16+
cp -r "${DIR}/node_modules/admin-lte/plugins/jquery" \
17+
"${DIR}/node_modules/admin-lte/plugins/fontawesome-free" \
18+
"${DIR}/node_modules/admin-lte/plugins/bootstrap" \
19+
"${DIR}/node_modules/admin-lte/plugins/icheck-bootstrap" \
20+
"${DIR}/node_modules/admin-lte/plugins/toastr" \
21+
"${DIR}/node_modules/admin-lte/plugins/jquery-validation" \
22+
"${DIR}/node_modules/admin-lte/plugins/select2" \
23+
"${DIR}/node_modules/jquery-tags-input" \
24+
"${DIR}/assets/plugins/"

router/router.go

+33-6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import (
55
"io"
66
"text/template"
77

8+
"github.com/GeertJohan/go.rice"
89
"github.com/gorilla/sessions"
910
"github.com/labstack/echo-contrib/session"
1011
"github.com/labstack/echo/v4"
@@ -32,15 +33,42 @@ func (t *TemplateRegistry) Render(w io.Writer, name string, data interface{}, c
3233
}
3334

3435
// New function
35-
func New() *echo.Echo {
36+
func New(tmplBox *rice.Box) *echo.Echo {
3637
e := echo.New()
3738
e.Use(session.Middleware(sessions.NewCookieStore([]byte("secret"))))
3839

40+
// read html template file to string
41+
tmplBaseString, err := tmplBox.String("base.html")
42+
if err != nil {
43+
log.Fatal(err)
44+
}
45+
46+
tmplLoginString, err := tmplBox.String("login.html")
47+
if err != nil {
48+
log.Fatal(err)
49+
}
50+
51+
tmplClientsString, err := tmplBox.String("clients.html")
52+
if err != nil {
53+
log.Fatal(err)
54+
}
55+
56+
tmplServerString, err := tmplBox.String("server.html")
57+
if err != nil {
58+
log.Fatal(err)
59+
}
60+
61+
tmplGlobalSettingsString, err := tmplBox.String("global_settings.html")
62+
if err != nil {
63+
log.Fatal(err)
64+
}
65+
66+
// create template list
3967
templates := make(map[string]*template.Template)
40-
templates["login.html"] = template.Must(template.ParseFiles("templates/login.html"))
41-
templates["clients.html"] = template.Must(template.ParseFiles("templates/clients.html", "templates/base.html"))
42-
templates["server.html"] = template.Must(template.ParseFiles("templates/server.html", "templates/base.html"))
43-
templates["global_settings.html"] = template.Must(template.ParseFiles("templates/global_settings.html", "templates/base.html"))
68+
templates["login.html"] = template.Must(template.New("login").Parse(tmplLoginString))
69+
templates["clients.html"] = template.Must(template.New("clients").Parse(tmplBaseString + tmplClientsString))
70+
templates["server.html"] = template.Must(template.New("server").Parse(tmplBaseString + tmplServerString))
71+
templates["global_settings.html"] = template.Must(template.New("global_settings").Parse(tmplBaseString + tmplGlobalSettingsString))
4472

4573
e.Logger.SetLevel(log.DEBUG)
4674
e.Pre(middleware.RemoveTrailingSlash())
@@ -51,7 +79,6 @@ func New() *echo.Echo {
5179
AllowMethods: []string{echo.GET, echo.HEAD, echo.PUT, echo.PATCH, echo.POST, echo.DELETE},
5280
}))
5381
e.Validator = NewValidator()
54-
e.Static("/static", "assets")
5582
e.Renderer = &TemplateRegistry{
5683
templates: templates,
5784
}

0 commit comments

Comments
 (0)