Skip to content
Snippets Groups Projects
Commit 6785edfe authored by Demian Katz's avatar Demian Katz Committed by Robert Lange
Browse files

Index DOIs from 856 fields. (#1783)

parent a04b0224
Branches
Tags
No related merge requests found
package org.vufind.index;
/**
* DOI indexing routines.
*
* Copyright (C) Villanova University 2020.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
import java.util.LinkedHashSet;
import java.util.Set;
import org.marc4j.marc.Record;
import org.solrmarc.index.SolrIndexer;
/**
* Call number indexing routines.
*/
public class DoiTools
{
/**
* Extract DOIs from URLs with the specified prefix
* @param record MARC record
* @param fieldSpec taglist for URL fields
* @param baseUrl Base URL that will be followed by a DOI
* @return Set of DOIs
*/
public Set<String> getDoiFromUrl(final Record record, String fieldSpec, String baseUrl) {
// Initialize our return value:
Set<String> result = new LinkedHashSet<String>();
// Loop through the specified MARC fields:
Set<String> input = SolrIndexer.instance().getFieldList(record, fieldSpec);
for (String current: input) {
// If the base URL is found in the string, crop it off for our DOI!
if (current.startsWith(baseUrl)) {
result.add(current.substring(baseUrl.length()));
}
}
// If we found no matches, return null; otherwise, return our results:
return result.isEmpty() ? null : result;
}
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment