@@ -25,7 +25,9 @@ internal CloudEventAttributes(CloudEventsSpecVersion specVersion, IEnumerable<IC
25
25
{
26
26
this . extensions = extensions ;
27
27
this . specVersion = specVersion ;
28
- dict [ SpecVersionAttributeName ( specVersion ) ] = specVersion == CloudEventsSpecVersion . V0_1 ? "0.1" : "0.2" ;
28
+ dict [ SpecVersionAttributeName ( specVersion ) ] =
29
+ specVersion == CloudEventsSpecVersion . V0_1 ? "0.1" :
30
+ specVersion == CloudEventsSpecVersion . V0_2 ? "0.2" : "0.3" ;
29
31
}
30
32
31
33
int ICollection < KeyValuePair < string , object > > . Count => dict . Count ;
@@ -42,9 +44,12 @@ public CloudEventsSpecVersion SpecVersion
42
44
{
43
45
object val ;
44
46
if ( dict . TryGetValue ( SpecVersionAttributeName ( CloudEventsSpecVersion . V0_1 ) , out val ) ||
45
- dict . TryGetValue ( SpecVersionAttributeName ( CloudEventsSpecVersion . V0_2 ) , out val ) )
47
+ dict . TryGetValue ( SpecVersionAttributeName ( CloudEventsSpecVersion . V0_2 ) , out val ) ||
48
+ dict . TryGetValue ( SpecVersionAttributeName ( CloudEventsSpecVersion . V0_3 ) , out val ) )
46
49
{
47
- return ( val as string ) == "0.1" ? CloudEventsSpecVersion . V0_1 : CloudEventsSpecVersion . V0_2 ;
50
+ return ( val as string ) == "0.1" ? CloudEventsSpecVersion . V0_1 :
51
+ ( val as string ) == "0.2" ? CloudEventsSpecVersion . V0_2 :
52
+ CloudEventsSpecVersion . V0_3 ;
48
53
}
49
54
50
55
return CloudEventsSpecVersion . Default ;
@@ -60,27 +65,40 @@ public CloudEventsSpecVersion SpecVersion
60
65
return ;
61
66
}
62
67
}
63
- else if ( dict . TryGetValue ( SpecVersionAttributeName ( CloudEventsSpecVersion . V0_2 ) , out val ) )
68
+ else if ( dict . TryGetValue ( SpecVersionAttributeName ( CloudEventsSpecVersion . V0_2 ) , out val ) )
64
69
{
65
70
if ( value == CloudEventsSpecVersion . V0_2 && ( val as string ) == "0.2" )
66
71
{
67
72
return ;
68
73
}
69
74
}
75
+ else if ( dict . TryGetValue ( SpecVersionAttributeName ( CloudEventsSpecVersion . V0_3 ) , out val ) )
76
+ {
77
+ if ( value == CloudEventsSpecVersion . V0_3 && ( val as string ) == "0.3" )
78
+ {
79
+ return ;
80
+ }
81
+ }
70
82
71
83
// transform to new version
72
84
var copy = new Dictionary < string , object > ( dict ) ;
73
85
dict . Clear ( ) ;
74
- dict [ SpecVersionAttributeName ( value ) ] = value == CloudEventsSpecVersion . V0_1 ? "0.1" : "0.2" ;
86
+ dict [ SpecVersionAttributeName ( value ) ] =
87
+ value == CloudEventsSpecVersion . V0_1 ? "0.1" :
88
+ value == CloudEventsSpecVersion . V0_2 ? "0.2" : "0.3" ;
75
89
foreach ( var kv in copy )
76
90
{
77
91
if ( SpecVersionAttributeName ( currentSpecVersion ) . Equals ( kv . Key ) )
78
92
{
79
93
continue ;
80
94
}
81
- if ( ContentTypeAttributeName ( currentSpecVersion ) . Equals ( kv . Key ) )
95
+ if ( DataContentTypeAttributeName ( currentSpecVersion ) . Equals ( kv . Key ) )
96
+ {
97
+ dict [ DataContentTypeAttributeName ( value ) ] = kv . Value ;
98
+ }
99
+ if ( DataContentEncodingAttributeName ( currentSpecVersion ) . Equals ( kv . Key ) )
82
100
{
83
- dict [ ContentTypeAttributeName ( value ) ] = kv . Value ;
101
+ dict [ DataContentEncodingAttributeName ( value ) ] = kv . Value ;
84
102
}
85
103
else if ( DataAttributeName ( currentSpecVersion ) . Equals ( kv . Key ) )
86
104
{
@@ -98,6 +116,10 @@ public CloudEventsSpecVersion SpecVersion
98
116
{
99
117
dict [ SourceAttributeName ( value ) ] = kv . Value ;
100
118
}
119
+ else if ( SubjectAttributeName ( currentSpecVersion ) . Equals ( kv . Key ) )
120
+ {
121
+ dict [ SubjectAttributeName ( value ) ] = kv . Value ;
122
+ }
101
123
else if ( TimeAttributeName ( currentSpecVersion ) . Equals ( kv . Key ) )
102
124
{
103
125
dict [ TimeAttributeName ( value ) ] = kv . Value ;
@@ -110,7 +132,7 @@ public CloudEventsSpecVersion SpecVersion
110
132
{
111
133
dict [ kv . Key ] = kv . Value ;
112
134
}
113
- }
135
+ }
114
136
}
115
137
}
116
138
@@ -124,9 +146,16 @@ public object this[string key]
124
146
}
125
147
}
126
148
127
- public static string ContentTypeAttributeName ( CloudEventsSpecVersion version = CloudEventsSpecVersion . Default )
149
+ public static string DataContentTypeAttributeName ( CloudEventsSpecVersion version = CloudEventsSpecVersion . Default )
128
150
{
129
- return version == CloudEventsSpecVersion . V0_1 ? "contentType" : "contenttype" ;
151
+ return version == CloudEventsSpecVersion . V0_1 ? "contentType" :
152
+ version == CloudEventsSpecVersion . V0_2 ? "contenttype" :
153
+ "datacontenttype" ;
154
+ }
155
+
156
+ public static string DataContentEncodingAttributeName ( CloudEventsSpecVersion version = CloudEventsSpecVersion . Default )
157
+ {
158
+ return "datacontentencoding" ;
130
159
}
131
160
132
161
public static string DataAttributeName ( CloudEventsSpecVersion version = CloudEventsSpecVersion . Default )
@@ -149,6 +178,11 @@ public static string SourceAttributeName(CloudEventsSpecVersion version = CloudE
149
178
return "source" ;
150
179
}
151
180
181
+ public static string SubjectAttributeName ( CloudEventsSpecVersion version = CloudEventsSpecVersion . Default )
182
+ {
183
+ return "subject" ;
184
+ }
185
+
152
186
public static string SpecVersionAttributeName ( CloudEventsSpecVersion version = CloudEventsSpecVersion . Default )
153
187
{
154
188
return version == CloudEventsSpecVersion . V0_1 ? "cloudEventsVersion" : "specversion" ;
@@ -288,6 +322,15 @@ internal virtual bool ValidateAndNormalize(string key, ref object value)
288
322
289
323
throw new InvalidOperationException ( Strings . ErrorSchemaUrlIsNotAUri ) ;
290
324
}
325
+ else if ( key . Equals ( SubjectAttributeName ( this . SpecVersion ) ) )
326
+ {
327
+ if ( value is null || value is string )
328
+ {
329
+ return true ;
330
+ }
331
+
332
+ throw new InvalidOperationException ( Strings . ErrorSchemaUrlIsNotAUri ) ;
333
+ }
291
334
else if ( key . Equals ( SchemaUrlAttributeName ( this . SpecVersion ) ) )
292
335
{
293
336
if ( value is null || value is Uri )
@@ -306,7 +349,7 @@ internal virtual bool ValidateAndNormalize(string key, ref object value)
306
349
307
350
throw new InvalidOperationException ( Strings . ErrorSchemaUrlIsNotAUri ) ;
308
351
}
309
- else if ( key . Equals ( ContentTypeAttributeName ( this . SpecVersion ) ) )
352
+ else if ( key . Equals ( DataContentTypeAttributeName ( this . SpecVersion ) ) )
310
353
{
311
354
if ( value is null || value is ContentType )
312
355
{
@@ -328,6 +371,14 @@ internal virtual bool ValidateAndNormalize(string key, ref object value)
328
371
329
372
throw new InvalidOperationException ( Strings . ErrorContentTypeIsNotRFC2046 ) ;
330
373
}
374
+ else if ( key . Equals ( DataContentEncodingAttributeName ( this . SpecVersion ) ) )
375
+ {
376
+ if ( value is null || value is string )
377
+ {
378
+ return true ;
379
+ }
380
+ throw new InvalidOperationException ( Strings . ErrorDataContentEncodingIsNotAString ) ;
381
+ }
331
382
else if ( key . Equals ( DataAttributeName ( this . SpecVersion ) ) )
332
383
{
333
384
return true ;
0 commit comments