@@ -123,7 +123,7 @@ class EmlImportService {
123
123
}
124
124
}
125
125
126
- // add a contacts...
126
+ // add contacts...
127
127
if (eml. dataset. creator){
128
128
eml. dataset. creator. each {
129
129
def contact = addContact(it)
@@ -144,16 +144,51 @@ class EmlImportService {
144
144
}
145
145
}
146
146
147
+ // Add additional contacts
148
+ if (eml. dataset. contact){
149
+ eml. dataset. contact. each {
150
+ def contact = addContact(it)
151
+ if (contact){
152
+ contacts << contact
153
+ }
154
+ }
155
+ }
156
+
157
+ if (eml. dataset. associatedParty){
158
+ eml. dataset. associatedParty. each {
159
+ def contact = addContact(it)
160
+ if (contact){
161
+ contacts << contact
162
+ }
163
+ }
164
+ }
165
+
147
166
contacts
148
167
}
149
168
150
- private def addContact (emlElement ){
151
- def contact = Contact . findByEmail(emlElement. electronicMailAddress)
152
- if (! contact){
169
+ private def addContact (emlElement ) {
170
+ def contact = null
171
+ if (emlElement. electronicMailAddress && ! emlElement. electronicMailAddress. isEmpty()) {
172
+ String email = emlElement. electronicMailAddress. text(). trim()
173
+ contact = Contact . findByEmail(email)
174
+ } else if (emlElement. individualName. givenName && emlElement. individualName. surName) {
175
+ contact = Contact . findByFirstNameAndLastName(emlElement. individualName. givenName, emlElement. individualName. surName)
176
+ } else if (emlElement. individualName. surName) {
177
+ // surName is mandatory
178
+ contact = Contact . findByLastName(emlElement. individualName. surName)
179
+ }
180
+
181
+ // Create the contact if it doesn't exist and it's a individualName with email or surName
182
+ // to prevent empty contacts (e.g. with emlElement.organizationName only)
183
+ boolean hasEmail = emlElement?. electronicMailAddress?. text()?. trim()?. isEmpty() == false
184
+ boolean hasName = emlElement?. individualName?. surName?. text()?. trim()?. isEmpty() == false
185
+
186
+ if (! contact && (hasEmail || hasName)) {
153
187
contact = new Contact ()
154
188
contact. firstName = emlElement. individualName. givenName
155
189
contact. lastName = emlElement. individualName. surName
156
- contact. email = emlElement. electronicMailAddress
190
+ // some email has leading/trailing spaces causing the email constrain regexp to fail, lets trim
191
+ contact. email = emlElement. electronicMailAddress. text(). trim()
157
192
contact. setUserLastModified(collectoryAuthService. username())
158
193
Contact . withTransaction {
159
194
if (contact. validate()) {
0 commit comments