dsnet/exttypes.go

86 lines
1.4 KiB
Go
Raw Normal View History

2020-03-03 21:25:48 +01:00
package dsnet
import (
"net"
"strings"
"golang.zx2c4.com/wireguard/wgctrl/wgtypes"
)
type JSONIPNet struct {
IPNet net.IPNet
2020-03-03 21:25:48 +01:00
}
func (n JSONIPNet) MarshalJSON() ([]byte, error) {
return []byte("\"" + n.IPNet.String() + "\""), nil
}
func (n *JSONIPNet) UnmarshalJSON(b []byte) error {
cidr := strings.Trim(string(b), "\"")
2020-10-26 23:47:02 +01:00
if cidr == "" {
// Leave as empty/uninitialised IPNet. A bit like omitempty behaviour,
// but we can leave the field there and blank which is useful if the
// user wishes to add the cidr manually.
return nil
}
2020-03-03 21:25:48 +01:00
IP, IPNet, err := net.ParseCIDR(cidr)
if err == nil {
IPNet.IP = IP
n.IPNet = *IPNet
}
2020-03-03 21:25:48 +01:00
return err
}
func (n *JSONIPNet) String() string {
2020-10-26 23:39:08 +01:00
if len(n.IPNet.IP) == 0 {
return "\"\""
} else {
return n.IPNet.String()
}
2020-03-03 21:25:48 +01:00
}
type JSONKey struct {
Key wgtypes.Key
2020-03-03 21:25:48 +01:00
}
func (k JSONKey) MarshalJSON() ([]byte, error) {
return []byte("\"" + k.Key.String() + "\""), nil
}
func (k JSONKey) PublicKey() JSONKey {
return JSONKey{
Key: k.Key.PublicKey(),
}
}
func (k *JSONKey) UnmarshalJSON(b []byte) error {
b64Key := strings.Trim(string(b), "\"")
key, err := wgtypes.ParseKey(b64Key)
k.Key = key
return err
}
func GenerateJSONPrivateKey() JSONKey {
privateKey, err := wgtypes.GeneratePrivateKey()
check(err)
return JSONKey{
Key: privateKey,
}
}
func GenerateJSONKey() JSONKey {
privateKey, err := wgtypes.GenerateKey()
check(err)
return JSONKey{
Key: privateKey,
}
}