forked from knative/eventing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
route_conversion.go
137 lines (115 loc) · 4.08 KB
/
route_conversion.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/*
Copyright 2019 The Knative Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package v1alpha1
import (
"context"
"fmt"
"knative.dev/pkg/apis"
duckv1alpha1 "knative.dev/pkg/apis/duck/v1alpha1"
"github.com/knative/serving/pkg/apis/serving/v1beta1"
)
// ConvertUp implements apis.Convertible
func (source *Route) ConvertUp(ctx context.Context, obj apis.Convertible) error {
switch sink := obj.(type) {
case *v1beta1.Route:
sink.ObjectMeta = source.ObjectMeta
source.Status.ConvertUp(apis.WithinStatus(ctx), &sink.Status)
return source.Spec.ConvertUp(apis.WithinSpec(ctx), &sink.Spec)
default:
return fmt.Errorf("unknown version, got: %T", sink)
}
}
// ConvertUp helps implement apis.Convertible
func (source *RouteSpec) ConvertUp(ctx context.Context, sink *v1beta1.RouteSpec) error {
sink.Traffic = make([]v1beta1.TrafficTarget, len(source.Traffic))
for i := range source.Traffic {
if err := source.Traffic[i].ConvertUp(ctx, &sink.Traffic[i]); err != nil {
return err
}
}
return nil
}
// ConvertUp helps implement apis.Convertible
func (source *TrafficTarget) ConvertUp(ctx context.Context, sink *v1beta1.TrafficTarget) error {
*sink = source.TrafficTarget
switch {
case source.Tag != "" && source.DeprecatedName != "":
if apis.IsInSpec(ctx) {
return apis.ErrMultipleOneOf("name", "tag")
}
case source.DeprecatedName != "":
sink.Tag = source.DeprecatedName
}
return nil
}
// ConvertUp helps implement apis.Convertible
func (source *RouteStatus) ConvertUp(ctx context.Context, sink *v1beta1.RouteStatus) {
source.Status.ConvertTo(ctx, &sink.Status)
source.RouteStatusFields.ConvertUp(ctx, &sink.RouteStatusFields)
}
// ConvertUp helps implement apis.Convertible
func (source *RouteStatusFields) ConvertUp(ctx context.Context, sink *v1beta1.RouteStatusFields) {
if source.URL != nil {
sink.URL = source.URL.DeepCopy()
}
if source.Address != nil {
sink.Address = source.Address.Addressable.DeepCopy()
}
sink.Traffic = make([]v1beta1.TrafficTarget, len(source.Traffic))
for i := range source.Traffic {
source.Traffic[i].ConvertUp(ctx, &sink.Traffic[i])
}
}
// ConvertDown implements apis.Convertible
func (sink *Route) ConvertDown(ctx context.Context, obj apis.Convertible) error {
switch source := obj.(type) {
case *v1beta1.Route:
sink.ObjectMeta = source.ObjectMeta
sink.Spec.ConvertDown(ctx, source.Spec)
sink.Status.ConvertDown(ctx, source.Status)
return nil
default:
return fmt.Errorf("unknown version, got: %T", source)
}
}
// ConvertDown helps implement apis.Convertible
func (sink *RouteSpec) ConvertDown(ctx context.Context, source v1beta1.RouteSpec) {
sink.Traffic = make([]TrafficTarget, len(source.Traffic))
for i := range source.Traffic {
sink.Traffic[i].ConvertDown(ctx, source.Traffic[i])
}
}
// ConvertDown helps implement apis.Convertible
func (sink *TrafficTarget) ConvertDown(ctx context.Context, source v1beta1.TrafficTarget) {
sink.TrafficTarget = source
}
// ConvertDown helps implement apis.Convertible
func (sink *RouteStatus) ConvertDown(ctx context.Context, source v1beta1.RouteStatus) {
source.Status.ConvertTo(ctx, &sink.Status)
sink.RouteStatusFields.ConvertDown(ctx, source.RouteStatusFields)
}
// ConvertDown helps implement apis.Convertible
func (sink *RouteStatusFields) ConvertDown(ctx context.Context, source v1beta1.RouteStatusFields) {
if source.URL != nil {
sink.URL = source.URL.DeepCopy()
}
if source.Address != nil {
sink.Address = &duckv1alpha1.Addressable{
Addressable: *source.Address,
}
}
sink.Traffic = make([]TrafficTarget, len(source.Traffic))
for i := range source.Traffic {
sink.Traffic[i].ConvertDown(ctx, source.Traffic[i])
}
}