mirror of
https://github.com/vx3r/wg-gen-web.git
synced 2025-04-02 16:46:52 +00:00
Adds Support For Mesh Peers
Adds support for mesh peers by adding fields to the clients. Support for "VPN" clients was not added -- there were no preUp, preDown fields added.
This commit is contained in:
parent
7031d2dbb7
commit
4b1e52d71b
@ -185,6 +185,11 @@ func ReadClients() ([]*model.Client, error) {
|
|||||||
|
|
||||||
// ReadClientConfig in wg format
|
// ReadClientConfig in wg format
|
||||||
func ReadClientConfig(id string) ([]byte, error) {
|
func ReadClientConfig(id string) ([]byte, error) {
|
||||||
|
peers, err := ReadClients()
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
client, err := ReadClient(id)
|
client, err := ReadClient(id)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
@ -195,7 +200,7 @@ func ReadClientConfig(id string) ([]byte, error) {
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
configDataWg, err := template.DumpClientWg(client, server)
|
configDataWg, err := template.DumpClientWg(client, peers, server)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
@ -12,11 +12,14 @@ type Client struct {
|
|||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
Email string `json:"email"`
|
Email string `json:"email"`
|
||||||
Enable bool `json:"enable"`
|
Enable bool `json:"enable"`
|
||||||
|
Endpoint string `json:"endpoint"`
|
||||||
IgnorePersistentKeepalive bool `json:"ignorePersistentKeepalive"`
|
IgnorePersistentKeepalive bool `json:"ignorePersistentKeepalive"`
|
||||||
PresharedKey string `json:"presharedKey"`
|
PresharedKey string `json:"presharedKey"`
|
||||||
AllowedIPs []string `json:"allowedIPs"`
|
AllowedIPs []string `json:"allowedIPs"`
|
||||||
Address []string `json:"address"`
|
Address []string `json:"address"`
|
||||||
Tags []string `json:"tags"`
|
Tags []string `json:"tags"`
|
||||||
|
ListenPort int `json:"listenPort"`
|
||||||
|
PersistentKeepalive int `json:"persistentKeepalive"`
|
||||||
PrivateKey string `json:"privateKey"`
|
PrivateKey string `json:"privateKey"`
|
||||||
PublicKey string `json:"publicKey"`
|
PublicKey string `json:"publicKey"`
|
||||||
CreatedBy string `json:"createdBy"`
|
CreatedBy string `json:"createdBy"`
|
||||||
@ -64,5 +67,9 @@ func (a Client) IsValid() []error {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if a.Endpoint != "" && a.ListenPort == 0 {
|
||||||
|
errs = append(errs, fmt.Errorf("if an endpoint is specified, a port to listen on is required"))
|
||||||
|
}
|
||||||
|
|
||||||
return errs
|
return errs
|
||||||
}
|
}
|
||||||
|
@ -206,6 +206,10 @@ DNS = {{ StringsJoin .Server.Dns ", " }}
|
|||||||
{{ if ne .Server.Mtu 0 -}}
|
{{ if ne .Server.Mtu 0 -}}
|
||||||
MTU = {{.Server.Mtu}}
|
MTU = {{.Server.Mtu}}
|
||||||
{{- end}}
|
{{- end}}
|
||||||
|
{{ if ne .Client.Endpoint "" -}}
|
||||||
|
ListenPort = {{ .Client.ListenPort }}
|
||||||
|
{{- end }}
|
||||||
|
|
||||||
[Peer]
|
[Peer]
|
||||||
PublicKey = {{ .Server.PublicKey }}
|
PublicKey = {{ .Server.PublicKey }}
|
||||||
PresharedKey = {{ .Client.PresharedKey }}
|
PresharedKey = {{ .Client.PresharedKey }}
|
||||||
@ -214,6 +218,20 @@ Endpoint = {{ .Server.Endpoint }}
|
|||||||
{{ if and (ne .Server.PersistentKeepalive 0) (not .Client.IgnorePersistentKeepalive) -}}
|
{{ if and (ne .Server.PersistentKeepalive 0) (not .Client.IgnorePersistentKeepalive) -}}
|
||||||
PersistentKeepalive = {{.Server.PersistentKeepalive}}
|
PersistentKeepalive = {{.Server.PersistentKeepalive}}
|
||||||
{{- end}}
|
{{- end}}
|
||||||
|
{{- range .Peers }}
|
||||||
|
{{ if and (ne .Id $.Client.Id) (and .Enable (ne .Endpoint "")) -}}
|
||||||
|
[Peer]
|
||||||
|
PublicKey = {{ .PublicKey }}
|
||||||
|
PresharedKey = {{ .PresharedKey }}
|
||||||
|
AllowedIPs = {{ StringsJoin .Address ", " }}
|
||||||
|
{{ if ne .Endpoint "" -}}
|
||||||
|
Endpoint = {{ .Endpoint }}
|
||||||
|
{{- end }}
|
||||||
|
{{ if and (ne $.Server.PersistentKeepalive 0) (not $.Client.IgnorePersistentKeepalive) -}}
|
||||||
|
PersistentKeepalive = {{ $.Server.PersistentKeepalive }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{ end }}
|
||||||
`
|
`
|
||||||
|
|
||||||
wgTpl = `# Updated: {{ .Server.Updated }} / Created: {{ .Server.Created }}
|
wgTpl = `# Updated: {{ .Server.Updated }} / Created: {{ .Server.Created }}
|
||||||
@ -230,19 +248,25 @@ PreUp = {{ .Server.PreUp }}
|
|||||||
PostUp = {{ .Server.PostUp }}
|
PostUp = {{ .Server.PostUp }}
|
||||||
PreDown = {{ .Server.PreDown }}
|
PreDown = {{ .Server.PreDown }}
|
||||||
PostDown = {{ .Server.PostDown }}
|
PostDown = {{ .Server.PostDown }}
|
||||||
{{- range .Clients }}
|
{{ range .Clients }}
|
||||||
{{ if .Enable -}}
|
{{ if .Enable -}}
|
||||||
# {{.Name}} / {{.Email}} / Updated: {{.Updated}} / Created: {{.Created}}
|
# {{.Name}} / {{.Email}} / Updated: {{.Updated}} / Created: {{.Created}}
|
||||||
[Peer]
|
[Peer]
|
||||||
PublicKey = {{ .PublicKey }}
|
PublicKey = {{ .PublicKey }}
|
||||||
PresharedKey = {{ .PresharedKey }}
|
PresharedKey = {{ .PresharedKey }}
|
||||||
AllowedIPs = {{ StringsJoin .Address ", " }}
|
AllowedIPs = {{ StringsJoin .Address ", " }}
|
||||||
|
{{ if ne .Endpoint "" -}}
|
||||||
|
Endpoint = {{ .Endpoint }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{ end }}`
|
{{ if ne .PersistentKeepalive 0 -}}
|
||||||
|
PersistentKeepalive = {{ .PersistentKeepalive }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}`
|
||||||
)
|
)
|
||||||
|
|
||||||
// DumpClientWg dump client wg config with go template
|
// DumpClientWg dump client wg config with go template
|
||||||
func DumpClientWg(client *model.Client, server *model.Server) ([]byte, error) {
|
func DumpClientWg(client *model.Client, peers []*model.Client, server *model.Server) ([]byte, error) {
|
||||||
t, err := template.New("client").Funcs(template.FuncMap{"StringsJoin": strings.Join}).Parse(clientTpl)
|
t, err := template.New("client").Funcs(template.FuncMap{"StringsJoin": strings.Join}).Parse(clientTpl)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
@ -250,9 +274,11 @@ func DumpClientWg(client *model.Client, server *model.Server) ([]byte, error) {
|
|||||||
|
|
||||||
return dump(t, struct {
|
return dump(t, struct {
|
||||||
Client *model.Client
|
Client *model.Client
|
||||||
|
Peers []*model.Client
|
||||||
Server *model.Server
|
Server *model.Server
|
||||||
}{
|
}{
|
||||||
Client: client,
|
Client: client,
|
||||||
|
Peers: peers,
|
||||||
Server: server,
|
Server: server,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -256,6 +256,16 @@
|
|||||||
label="Client email"
|
label="Client email"
|
||||||
:rules="[ v => (/.+@.+\..+/.test(v) || v === '') || 'E-mail must be valid',]"
|
:rules="[ v => (/.+@.+\..+/.test(v) || v === '') || 'E-mail must be valid',]"
|
||||||
/>
|
/>
|
||||||
|
<v-text-field
|
||||||
|
v-model="client.endpoint"
|
||||||
|
label="Static Endpoint"
|
||||||
|
:rules="[ v => (/.+:.+/.test(v) || v === '') || 'Endpoint must contain port',]"
|
||||||
|
/>
|
||||||
|
<v-text-field
|
||||||
|
v-model.number="client.listenPort"
|
||||||
|
label="Listening Port"
|
||||||
|
type="number"
|
||||||
|
/>
|
||||||
<v-select
|
<v-select
|
||||||
v-model="client.address"
|
v-model="client.address"
|
||||||
:items="server.address"
|
:items="server.address"
|
||||||
@ -370,6 +380,16 @@
|
|||||||
:rules="[ v => (/.+@.+\..+/.test(v) || v === '') || 'E-mail must be valid',]"
|
:rules="[ v => (/.+@.+\..+/.test(v) || v === '') || 'E-mail must be valid',]"
|
||||||
required
|
required
|
||||||
/>
|
/>
|
||||||
|
<v-text-field
|
||||||
|
v-model="client.endpoint"
|
||||||
|
label="Static Endpoint"
|
||||||
|
:rules="[ v => (/.+:.+/.test(v) || v === '') || 'Endpoint must contain port',]"
|
||||||
|
/>
|
||||||
|
<v-text-field
|
||||||
|
v-model.number="client.listenPort"
|
||||||
|
label="Listening Port"
|
||||||
|
type="number"
|
||||||
|
/>
|
||||||
<v-combobox
|
<v-combobox
|
||||||
v-model="client.address"
|
v-model="client.address"
|
||||||
chips
|
chips
|
||||||
@ -479,6 +499,8 @@
|
|||||||
{ text: 'Name', value: 'name', },
|
{ text: 'Name', value: 'name', },
|
||||||
{ text: 'Email', value: 'email', },
|
{ text: 'Email', value: 'email', },
|
||||||
{ text: 'IP addresses', value: 'address', },
|
{ text: 'IP addresses', value: 'address', },
|
||||||
|
{ text: 'Endpoint', value: 'endpoint', },
|
||||||
|
{ text: 'ListenPort', value: 'listenPort', },
|
||||||
{ text: 'Tags', value: 'tags', },
|
{ text: 'Tags', value: 'tags', },
|
||||||
{ text: 'Created', value: 'created', sortable: false, },
|
{ text: 'Created', value: 'created', sortable: false, },
|
||||||
{ text: 'Updated', value: 'updated', sortable: false, },
|
{ text: 'Updated', value: 'updated', sortable: false, },
|
||||||
@ -519,6 +541,8 @@
|
|||||||
this.client = {
|
this.client = {
|
||||||
name: "",
|
name: "",
|
||||||
email: "",
|
email: "",
|
||||||
|
endpoint: "",
|
||||||
|
listenPort: 0,
|
||||||
enable: true,
|
enable: true,
|
||||||
allowedIPs: this.server.allowedips,
|
allowedIPs: this.server.allowedips,
|
||||||
address: this.server.address,
|
address: this.server.address,
|
||||||
|
Loading…
Reference in New Issue
Block a user