@@ -24,6 +24,7 @@ import com.cabolabs.openehr.rm_1_0_2.data_types.quantity.date_time.*
24
24
import com.cabolabs.openehr.rm_1_0_2.data_types.text.*
25
25
import com.cabolabs.openehr.rm_1_0_2.data_types.uri.*
26
26
import com.cabolabs.openehr.rm_1_0_2.support.identification.*
27
+ import com.cabolabs.openehr.dto_1_0_2.common.change_control.ContributionDto
27
28
28
29
// Old Groovy
29
30
import groovy.util.XmlSlurper
@@ -115,32 +116,53 @@ class OpenEhrXmlParser {
115
116
return versions
116
117
}
117
118
118
- Contribution parseContribution (String xml )
119
+ ContributionDto parseContributionDto (String xml )
119
120
{
120
121
def slurper = new XmlSlurper (false , false )
121
122
def gpath = slurper. parseText(xml)
122
123
String type, method
123
124
Version version
124
125
125
- def contribution = new Contribution (versions : new HashSet ())
126
-
127
-
128
- // NOTE: POST /contribution doesn't have uid, so this will fail to parse that, might need to relax the schema
129
- contribution. uid = this . parseHIER_OBJECT_ID(gpath. uid)
126
+ def contribution = new ContributionDto (versions : [])
130
127
128
+ // in the DTO the uid is optional
129
+ if (! gpath. uid. isEmpty())
130
+ {
131
+ contribution. uid = this . parseHIER_OBJECT_ID(gpath. uid)
132
+ }
131
133
132
134
gpath. versions. each { version_gpath ->
133
135
134
- type = version_gpath. ' @xsi:type' . text()
136
+ type = version_gpath. ' @xsi:type' . text() // ORIGINAL_VERSION, IMPORTED_VERSION
135
137
136
138
if (! type)
137
139
{
138
140
throw new XmlCompositionParseException (" Can't parse XML if node doesn't have a xsi:type" )
139
141
}
140
142
141
143
method = ' parse' + type
142
- version = this . " $method " (version_gpath)
143
- contribution. versions << this . parseVersionToObjectRef(version) // contribiution has objectrefs
144
+ contribution. versions << this . " $method " (version_gpath)
145
+ }
146
+
147
+ contribution. audit = this . parseAUDIT_DETAILS(gpath. audit)
148
+
149
+ return contribution
150
+ }
151
+
152
+ Contribution parseContribution (String xml )
153
+ {
154
+ def slurper = new XmlSlurper (false , false )
155
+ def gpath = slurper. parseText(xml)
156
+ String type, method
157
+
158
+ def contribution = new Contribution (versions : new HashSet ())
159
+
160
+ // note for the RM the uid is mandatory, in the DTO the uid is optional
161
+ contribution. uid = this . parseHIER_OBJECT_ID(gpath. uid)
162
+
163
+ gpath. versions. each { version_gpath ->
164
+
165
+ contribution. versions << this . parseOBJECT_REF(version_gpath) // contribiution has objectrefs
144
166
}
145
167
146
168
contribution. audit = this . parseAUDIT_DETAILS(gpath. audit)
0 commit comments