Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Product entity in Orcid push #428

Closed
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ public enum OrcidEntityType {
*/
PUBLICATION("Publication", "/work"),

/**
* The ORCID product/work activity.
*/
PRODUCT("Product", "/work"),

/**
* The ORCID funding activity.
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,290 @@
/**
* The contents of this file are subject to the license and copyright
* detailed in the LICENSE and NOTICE files at the root of the source
* tree and available online at
*
* http://www.dspace.org/license/
*/
package org.dspace.orcid.model;

import static java.util.function.Function.identity;
import static java.util.stream.Collectors.toMap;
import static org.dspace.orcid.model.factory.OrcidFactoryUtils.parseConfigurations;

import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;

import org.apache.commons.lang3.StringUtils;
import org.dspace.content.integration.crosswalks.CSLItemDataCrosswalk;
import org.dspace.util.SimpleMapConverter;
import org.orcid.jaxb.model.common.CitationType;
import org.orcid.jaxb.model.common.ContributorRole;
import org.orcid.jaxb.model.v3.release.record.Work;

/**
* Class that contains all the mapping between {@link Work} and DSpace metadata
* fields. Adapted for Product entity
*
* @author Luca Giamminonni (luca.giamminonni at 4science.it)
floriangantner marked this conversation as resolved.
Show resolved Hide resolved
*
*/
public class OrcidProductWorkFieldMapping {

/**
* The metadata fields related to the work contributors.
*/
private Map<String, ContributorRole> contributorFields = new HashMap<>();

/**
* The metadata fields related to the work external identifiers.
*/
private Map<String, String> externalIdentifierFields = new HashMap<>();

/**
* The metadata field related to the work publication date.
*/
private String publicationDateField;

/**
* The metadata field related to the work title.
*/
private String titleField;

/**
* The metadata field related to the work type.
*/
private String typeField;

/**
* The metadata field related to the work journal title.
*/
private String journalTitleField;

/**
* The metadata field related to the work description.
*/
private String shortDescriptionField;

/**
* The metadata field related to the work language.
*/
private String languageField;

/**
* The metadata field related to the work sub title.
*/
private String subTitleField;

private CitationType citationType;

/**
* The work type converter.
*/
private SimpleMapConverter typeConverter;

/**
* The work language converter.
*/
private SimpleMapConverter languageConverter;

private Map<String, CSLItemDataCrosswalk> citationCrosswalks;

private String fundingField;

private String fundingExternalIdType;

private String fundingExternalId;

private String fundingEntityExternalId;

private String fundingUrlField;

public String convertType(String type) {
return typeConverter != null ? typeConverter.getValue(type) : type;
}

public String convertLanguage(String language) {
return languageConverter != null ? languageConverter.getValue(language) : language;
}

public String getTitleField() {
return titleField;
}

public void setTitleField(String titleField) {
this.titleField = titleField;
}

public String getTypeField() {
return typeField;
}

public void setTypeField(String typeField) {
this.typeField = typeField;
}

public void setTypeConverter(SimpleMapConverter typeConverter) {
this.typeConverter = typeConverter;
}

public Map<String, ContributorRole> getContributorFields() {
return contributorFields;
}

public void setContributorFields(String contributorFields) {
this.contributorFields = parseContributors(contributorFields);
}

public Map<String, String> getExternalIdentifierFields() {
return externalIdentifierFields;
}

public void setExternalIdentifierFields(String externalIdentifierFields) {
this.externalIdentifierFields = parseConfigurations(externalIdentifierFields);
}

public String getPublicationDateField() {
return publicationDateField;
}

public void setPublicationDateField(String publicationDateField) {
this.publicationDateField = publicationDateField;
}

public String getJournalTitleField() {
return journalTitleField;
}

public void setJournalTitleField(String journalTitleField) {
this.journalTitleField = journalTitleField;
}

public String getShortDescriptionField() {
return shortDescriptionField;
}

public void setShortDescriptionField(String shortDescriptionField) {
this.shortDescriptionField = shortDescriptionField;
}

public String getLanguageField() {
return languageField;
}

public void setLanguageField(String languageField) {
this.languageField = languageField;
}

public void setLanguageConverter(SimpleMapConverter languageConverter) {
this.languageConverter = languageConverter;
}

public String getSubTitleField() {
return subTitleField;
}

public void setSubTitleField(String subTitleField) {
this.subTitleField = subTitleField;
}

public Map<String, CSLItemDataCrosswalk> getCitationCrosswalks() {
return citationCrosswalks;
}

public void setCitationCrosswalks(Map<String, CSLItemDataCrosswalk> citationCrosswalks) {
this.citationCrosswalks = citationCrosswalks;
}

public String getFundingField() {
return fundingField;
}

public void setFundingField(String fundingField) {
this.fundingField = fundingField;
}

public String getFundingExternalIdType() {
return fundingExternalIdType;
}

public void setFundingExternalIdType(String fundingExternalIdType) {
this.fundingExternalIdType = fundingExternalIdType;
}

public String getFundingExternalId() {
return fundingExternalId;
}

public void setFundingExternalId(String fundingExternalId) {
this.fundingExternalId = fundingExternalId;
}

public String getFundingEntityExternalId() {
return fundingEntityExternalId;
}

public void setFundingEntityExternalId(String fundingEntityExternalId) {
this.fundingEntityExternalId = fundingEntityExternalId;
}

public String getFundingUrlField() {
return fundingUrlField;
}

public void setFundingUrlField(String fundingUrlField) {
this.fundingUrlField = fundingUrlField;
}

public CitationType getCitationType() {
return citationType;
}

public void setCitationType(String citationType) {
this.citationType = parseCitationType(citationType);
}

private CitationType parseCitationType(String citationType) {

if (StringUtils.isBlank(citationType)) {
return null;

Check warning on line 252 in dspace-api/src/main/java/org/dspace/orcid/model/OrcidProductWorkFieldMapping.java

View check run for this annotation

Codecov / codecov/patch

dspace-api/src/main/java/org/dspace/orcid/model/OrcidProductWorkFieldMapping.java#L252

Added line #L252 was not covered by tests
}

try {
return CitationType.fromValue(citationType);
} catch (IllegalArgumentException ex) {
throw new IllegalArgumentException("The citation type " + citationType + " is invalid, "
+ "allowed values are " + getAllowedCitationTypes(), ex);

Check warning on line 259 in dspace-api/src/main/java/org/dspace/orcid/model/OrcidProductWorkFieldMapping.java

View check run for this annotation

Codecov / codecov/patch

dspace-api/src/main/java/org/dspace/orcid/model/OrcidProductWorkFieldMapping.java#L257-L259

Added lines #L257 - L259 were not covered by tests
}
}

private Map<String, ContributorRole> parseContributors(String contributors) {
Map<String, String> contributorsMap = parseConfigurations(contributors);
return contributorsMap.keySet().stream()
.collect(toMap(identity(), field -> parseContributorRole(contributorsMap.get(field))));
}

private ContributorRole parseContributorRole(String contributorRole) {
try {
return ContributorRole.fromValue(contributorRole);
} catch (IllegalArgumentException ex) {
throw new IllegalArgumentException("The contributor role " + contributorRole +
" is invalid, allowed values are " + getAllowedContributorRoles(), ex);

Check warning on line 274 in dspace-api/src/main/java/org/dspace/orcid/model/OrcidProductWorkFieldMapping.java

View check run for this annotation

Codecov / codecov/patch

dspace-api/src/main/java/org/dspace/orcid/model/OrcidProductWorkFieldMapping.java#L272-L274

Added lines #L272 - L274 were not covered by tests
}
}

private List<String> getAllowedContributorRoles() {
return Arrays.asList(ContributorRole.values()).stream()
.map(ContributorRole::value)
.collect(Collectors.toList());

Check warning on line 281 in dspace-api/src/main/java/org/dspace/orcid/model/OrcidProductWorkFieldMapping.java

View check run for this annotation

Codecov / codecov/patch

dspace-api/src/main/java/org/dspace/orcid/model/OrcidProductWorkFieldMapping.java#L279-L281

Added lines #L279 - L281 were not covered by tests
}

private List<String> getAllowedCitationTypes() {
return Arrays.asList(CitationType.values()).stream()
.map(CitationType::value)
.collect(Collectors.toList());

Check warning on line 287 in dspace-api/src/main/java/org/dspace/orcid/model/OrcidProductWorkFieldMapping.java

View check run for this annotation

Codecov / codecov/patch

dspace-api/src/main/java/org/dspace/orcid/model/OrcidProductWorkFieldMapping.java#L285-L287

Added lines #L285 - L287 were not covered by tests
}

}
Loading
Loading