DOIBoost Mapping: change the creation of the instance in the DOIBoost result #155

Merged
claudio.atzori merged 12 commits from doiboost_url into beta 2021-11-11 10:40:33 +01:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit b2bb8d9d79 - Show all commits

View File

@ -207,7 +207,7 @@ case object Crossref2Oaf {
instance.setDateofacceptance(asField(createdDate.getValue))
}
val s: String = (json \ "URL").extract[String]
val links: List[String] = ((for {JString(url) <- json \ "link" \ "URL"} yield url) ::: List(s)).filter(p => p != null && !p.contains("api.elsevier.com...")).distinct
val links: List[String] = ((for {JString(url) <- json \ "link" \ "URL"} yield url) ::: List(s)).filter(p => p != null && p.toLowerCase().contains(doi.toLowerCase())).distinct
claudio.atzori marked this conversation as resolved
Review

Clean up commented out code lines

Clean up commented out code lines
if (links.nonEmpty) {
instance.setUrl(links.asJava)
}