Skip to content

Commit 85ad83e

Browse files
committed
Fix #116
1 parent b8aa171 commit 85ad83e

File tree

2 files changed

+46
-8
lines changed

2 files changed

+46
-8
lines changed

grails-app/services/au/org/ala/collectory/EmlImportService.groovy

+40-5
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ class EmlImportService {
123123
}
124124
}
125125

126-
//add a contacts...
126+
//add contacts...
127127
if (eml.dataset.creator){
128128
eml.dataset.creator.each {
129129
def contact = addContact(it)
@@ -144,16 +144,51 @@ class EmlImportService {
144144
}
145145
}
146146

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+
147166
contacts
148167
}
149168

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)) {
153187
contact = new Contact()
154188
contact.firstName = emlElement.individualName.givenName
155189
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()
157192
contact.setUserLastModified(collectoryAuthService.username())
158193
Contact.withTransaction {
159194
if (contact.validate()) {

grails-app/services/au/org/ala/collectory/IptService.groovy

+6-3
Original file line numberDiff line numberDiff line change
@@ -119,11 +119,14 @@ class IptService {
119119
}
120120
}
121121

122-
def emails = old.getContacts().collect { it.contact.email }
123-
124122
//sync contacts
125123
update.contacts.each { contact ->
126-
if (!emails.contains(contact.email)) {
124+
def existingContact = old.getContacts().find {
125+
(it.contact.email && !it.contact.email.isEmpty() && it.contact.email == contact.email) ||
126+
(it.contact.firstName == contact.firstName && it.contact.lastName == contact.lastName)
127+
}
128+
if (!existingContact) {
129+
// Add new contact
127130
old.addToContacts(contact, null, false, true, collectoryAuthService.username())
128131
}
129132
}

0 commit comments

Comments
 (0)