-
Notifications
You must be signed in to change notification settings - Fork 479
/
envelope.go
213 lines (187 loc) · 6.81 KB
/
envelope.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
/*
Copyright 2021 The Dapr 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 pubsub
import (
"bytes"
"encoding/base64"
"encoding/json"
"fmt"
"time"
"github.com/google/uuid"
contribContenttype "github.com/dapr/components-contrib/contenttype"
contribMetadata "github.com/dapr/components-contrib/metadata"
)
const (
// DefaultCloudEventType is the default event type for an Dapr published event.
DefaultCloudEventType = "com.dapr.event.sent"
// DefaultBulkEventType is the default bulk event type for a Dapr published event.
DefaultBulkEventType = "com.dapr.event.sent.bulk"
// CloudEventsSpecVersion is the specversion used by Dapr for the cloud events implementation.
CloudEventsSpecVersion = "1.0"
// DefaultCloudEventSource is the default event source.
DefaultCloudEventSource = "Dapr"
// DefaultCloudEventDataContentType is the default content-type for the data attribute.
DefaultCloudEventDataContentType = "text/plain"
// traceid, backwards compatibles.
// ::TODO delete traceid, and keep traceparent.
TraceIDField = "traceid"
TraceParentField = "traceparent"
TraceStateField = "tracestate"
TopicField = "topic"
PubsubField = "pubsubname"
ExpirationField = "expiration"
DataContentTypeField = "datacontenttype"
DataField = "data"
DataBase64Field = "data_base64"
SpecVersionField = "specversion"
TypeField = "type"
SourceField = "source"
IDField = "id"
SubjectField = "subject"
TimeField = "time"
)
// unmarshalPrecise is a wrapper around encoding/json's Decoder
// with UseNumber. It prevents data loss for big numbers
// while unmarshalling.
func unmarshalPrecise(data []byte, v interface{}) error {
decoder := json.NewDecoder(bytes.NewBuffer(data))
decoder.UseNumber()
if err := decoder.Decode(v); err != nil {
return err
}
return nil
}
// NewCloudEventsEnvelope returns a map representation of a cloudevents JSON.
func NewCloudEventsEnvelope(id, source, eventType, subject string, topic string, pubsubName string,
dataContentType string, data []byte, traceParent string, traceState string,
) map[string]interface{} {
// defaults
if id == "" {
id = uuid.New().String()
}
if source == "" {
source = DefaultCloudEventSource
}
if eventType == "" {
eventType = DefaultCloudEventType
}
if dataContentType == "" {
dataContentType = DefaultCloudEventDataContentType
}
var ceData interface{}
ceDataField := DataField
var err error
if contribContenttype.IsJSONContentType(dataContentType) {
err = unmarshalPrecise(data, &ceData)
} else if contribContenttype.IsBinaryContentType(dataContentType) {
ceData = base64.StdEncoding.EncodeToString(data)
ceDataField = DataBase64Field
} else {
ceData = string(data)
}
if err != nil {
ceData = string(data)
}
ce := map[string]interface{}{
IDField: id,
SpecVersionField: CloudEventsSpecVersion,
DataContentTypeField: dataContentType,
SourceField: source,
TypeField: eventType,
TopicField: topic,
PubsubField: pubsubName,
TraceIDField: traceParent,
TraceParentField: traceParent,
TraceStateField: traceState,
TimeField: time.Now().Format(time.RFC3339),
}
ce[ceDataField] = ceData
if subject != "" {
ce[SubjectField] = subject
}
return ce
}
// FromCloudEvent returns a map representation of an existing cloudevents JSON.
func FromCloudEvent(cloudEvent []byte, topic, pubsub, traceParent string, traceState string) (map[string]interface{}, error) {
var m map[string]interface{}
err := unmarshalPrecise(cloudEvent, &m)
if err != nil {
return m, err
}
customTimeVal, keyExists := m[TimeField]
if keyExists {
m[TimeField] = customTimeVal
} else {
m[TimeField] = time.Now().Format(time.RFC3339)
}
m[TraceIDField] = traceParent
m[TraceParentField] = traceParent
m[TraceStateField] = traceState
m[TopicField] = topic
m[PubsubField] = pubsub
// specify default value if it's unspecified from the original CloudEvent
if m[SourceField] == nil {
m[SourceField] = DefaultCloudEventSource
}
if m[TypeField] == nil {
m[TypeField] = DefaultCloudEventType
}
if m[SpecVersionField] == nil {
m[SpecVersionField] = CloudEventsSpecVersion
}
return m, nil
}
// FromRawPayload returns a CloudEvent for a raw payload on subscriber's end.
func FromRawPayload(data []byte, topic, pubsub string) map[string]interface{} {
// Limitations of generating the CloudEvent on the subscriber side based on raw payload:
// - The CloudEvent ID will be random, so the same message can be redelivered as a different ID.
// - TraceID is not useful since it is random and not from publisher side.
// - Data is always returned as `data_base64` since we don't know the actual content type.
return map[string]interface{}{
IDField: uuid.New().String(),
SpecVersionField: CloudEventsSpecVersion,
DataContentTypeField: "application/octet-stream",
SourceField: DefaultCloudEventSource,
TypeField: DefaultCloudEventType,
TopicField: topic,
PubsubField: pubsub,
DataBase64Field: base64.StdEncoding.EncodeToString(data),
}
}
// HasExpired determines if the current cloud event has expired.
func HasExpired(cloudEvent map[string]interface{}) bool {
e, ok := cloudEvent[ExpirationField]
if ok && e != "" {
expiration, err := time.Parse(time.RFC3339, fmt.Sprintf("%s", e))
if err != nil {
return false
}
return expiration.UTC().Before(time.Now().UTC())
}
return false
}
// ApplyMetadata will process metadata to modify the cloud event based on the component's feature set.
func ApplyMetadata(cloudEvent map[string]interface{}, componentFeatures []Feature, metadata map[string]string) {
ttl, hasTTL, _ := contribMetadata.TryGetTTL(metadata)
if hasTTL && !FeatureMessageTTL.IsPresent(componentFeatures) {
// Dapr only handles Message TTL if component does not.
now := time.Now().UTC()
// The maximum ttl is maxInt64, which is not enough to overflow time, for now.
// As of the time this code was written (2020 Dec 28th),
// the maximum time of now() adding maxInt64 is ~ "2313-04-09T23:30:26Z".
// Max time in golang is currently 292277024627-12-06T15:30:07.999999999Z.
// So, we have some time before the overflow below happens :)
expiration := now.Add(ttl)
cloudEvent[ExpirationField] = expiration.Format(time.RFC3339)
}
}