forked from rancher/rancher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
service.go
77 lines (69 loc) · 1.86 KB
/
service.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
package service
import (
"net"
"strconv"
"fmt"
"github.com/rancher/norman/types"
"github.com/rancher/norman/types/convert"
v3 "github.com/rancher/types/client/project/v3"
"github.com/sirupsen/logrus"
"k8s.io/apimachinery/pkg/util/intstr"
)
func New(store types.Store) types.Store {
return &Store{
store,
}
}
type Store struct {
types.Store
}
func (p *Store) Create(apiContext *types.APIContext, schema *types.Schema, data map[string]interface{}) (map[string]interface{}, error) {
formatData(data)
err := p.validateNonSpecialIP(schema, data)
if err != nil {
return nil, err
}
return p.Store.Create(apiContext, schema, data)
}
func formatData(data map[string]interface{}) {
var ports []interface{}
servicePort := v3.ServicePort{
Port: 42,
TargetPort: intstr.Parse(strconv.FormatInt(42, 10)),
Protocol: "TCP",
Name: "default",
}
m, err := convert.EncodeToMap(servicePort)
if err != nil {
logrus.Warnf("Failed to transform service port to map: %v", err)
return
}
ports = append(ports, m)
data["ports"] = ports
}
func (p *Store) validateNonSpecialIP(schema *types.Schema, data map[string]interface{}) error {
if schema.ID == "dnsRecord" {
ips := data["ipAddresses"]
if ips != nil {
for _, ip := range ips.([]interface{}) {
IP := net.ParseIP(ip.(string))
if IP == nil {
return fmt.Errorf("%s must be a valid IP address", IP)
}
if IP.IsUnspecified() {
return fmt.Errorf("%s may not be unspecified (0.0.0.0)", IP)
}
if IP.IsLoopback() {
return fmt.Errorf("%s may not be in the loopback range (127.0.0.0/8)", IP)
}
if IP.IsLinkLocalUnicast() {
return fmt.Errorf("%s may not be in the link-local range (169.254.0.0/16)", IP)
}
if IP.IsLinkLocalMulticast() {
return fmt.Errorf("%s may not be in the link-local multicast range (224.0.0.0/24)", IP)
}
}
}
}
return nil
}