forked from JabRef/jabref
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce convienent interface for ID-based fetcher (JabRef#1998)
* Introduce IdBasedParserFetcher * Add language text * Remove unused imports
- Loading branch information
1 parent
d9754ae
commit 12f9a11
Showing
22 changed files
with
183 additions
and
80 deletions.
There are no files selected for viewing
90 changes: 90 additions & 0 deletions
90
src/main/java/net/sf/jabref/logic/importer/IdBasedParserFetcher.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
package net.sf.jabref.logic.importer; | ||
|
||
import java.io.BufferedInputStream; | ||
import java.io.IOException; | ||
import java.io.InputStream; | ||
import java.net.MalformedURLException; | ||
import java.net.URISyntaxException; | ||
import java.net.URL; | ||
import java.util.List; | ||
import java.util.Optional; | ||
|
||
import net.sf.jabref.logic.formatter.Formatter; | ||
import net.sf.jabref.model.entry.BibEntry; | ||
|
||
import org.apache.commons.logging.Log; | ||
import org.apache.commons.logging.LogFactory; | ||
import org.jsoup.helper.StringUtil; | ||
|
||
/** | ||
* Provides a convenient interface for ID-based fetcher, which follow the usual three-step procedure: | ||
* 1. Open a URL based on the search query | ||
* 2. Parse the response to get a list of {@link BibEntry} | ||
* 3. Post-process fetched entries | ||
*/ | ||
public interface IdBasedParserFetcher extends IdBasedFetcher { | ||
|
||
Log LOGGER = LogFactory.getLog(IdBasedParserFetcher.class); | ||
|
||
/** | ||
* Constructs a URL based on the query. | ||
* @param identifier the ID | ||
*/ | ||
URL getURLForID(String identifier) throws URISyntaxException, MalformedURLException, FetcherException; | ||
|
||
/** | ||
* Returns the parser used to convert the response to a list of {@link BibEntry}. | ||
*/ | ||
Parser getParser(); | ||
|
||
/** | ||
* Performs a cleanup of the fetched entry. | ||
* | ||
* Only systematic errors of the fetcher should be corrected here | ||
* (i.e. if information is consistently contained in the wrong field or the wrong format) | ||
* but not cosmetic issues which may depend on the user's taste (for example, LateX code vs HTML in the abstract). | ||
* | ||
* Try to reuse existing {@link Formatter} for the cleanup. For example, | ||
* {@code new FieldFormatterCleanup(FieldName.TITLE, new RemoveBracesFormatter()).cleanup(entry);} | ||
* | ||
* By default, no cleanup is done. | ||
* @param entry the entry to be cleaned-up | ||
*/ | ||
default void doPostCleanup(BibEntry entry) { | ||
// Do nothing by default | ||
} | ||
|
||
@Override | ||
default Optional<BibEntry> performSearchById(String identifier) throws FetcherException { | ||
if (StringUtil.isBlank(identifier)) { | ||
return Optional.empty(); | ||
} | ||
|
||
try (InputStream stream = new BufferedInputStream(getURLForID(identifier).openStream())) { | ||
List<BibEntry> fetchedEntries = getParser().parseEntries(stream); | ||
|
||
if (fetchedEntries.isEmpty()) { | ||
return Optional.empty(); | ||
} | ||
|
||
if (fetchedEntries.size() > 1) { | ||
LOGGER.info("Fetcher " + getName() + "found more than one result for identifier " + identifier | ||
+ ". We will use the first entry."); | ||
} | ||
|
||
BibEntry entry = fetchedEntries.get(0); | ||
|
||
// Post-cleanup | ||
doPostCleanup(entry); | ||
|
||
return Optional.of(entry); | ||
} catch (URISyntaxException e) { | ||
throw new FetcherException("Search URI is malformed", e); | ||
} catch (IOException e) { | ||
// TODO: Catch HTTP Response 401 errors and report that user has no rights to access resource | ||
throw new FetcherException("An I/O exception occurred", e); | ||
} catch (ParserException e) { | ||
throw new FetcherException("An internal parser error occurred", e); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2372,3 +2372,5 @@ Select_first_entry= | |
Select_last_entry= | ||
|
||
Search_in_all_open_databases= | ||
|
||
Invalid_ISBN\:_'%0'.= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2372,3 +2372,5 @@ Select_first_entry= | |
Select_last_entry= | ||
|
||
Search_in_all_open_databases= | ||
|
||
Invalid_ISBN\:_'%0'.= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2375,3 +2375,5 @@ Select_first_entry= | |
Select_last_entry= | ||
|
||
Search_in_all_open_databases= | ||
|
||
Invalid_ISBN\:_'%0'.= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2368,3 +2368,5 @@ Select_first_entry= | |
Select_last_entry= | ||
|
||
Search_in_all_open_databases= | ||
|
||
Invalid_ISBN\:_'%0'.= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2372,3 +2372,5 @@ Select_first_entry= | |
Select_last_entry= | ||
|
||
Search_in_all_open_databases= | ||
|
||
Invalid_ISBN\:_'%0'.= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2372,3 +2372,5 @@ Select_first_entry= | |
Select_last_entry= | ||
|
||
Search_in_all_open_databases= | ||
|
||
Invalid_ISBN\:_'%0'.= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2374,3 +2374,5 @@ Select_first_entry= | |
Select_last_entry= | ||
|
||
Search_in_all_open_databases= | ||
|
||
Invalid_ISBN\:_'%0'.= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2374,3 +2374,5 @@ Select_first_entry= | |
Select_last_entry= | ||
|
||
Search_in_all_open_databases= | ||
|
||
Invalid_ISBN\:_'%0'.= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2372,3 +2372,5 @@ Select_first_entry= | |
Select_last_entry= | ||
|
||
Search_in_all_open_databases= | ||
|
||
Invalid_ISBN\:_'%0'.= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2375,3 +2375,5 @@ Select_first_entry= | |
Select_last_entry= | ||
|
||
Search_in_all_open_databases= | ||
|
||
Invalid_ISBN\:_'%0'.= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2368,3 +2368,5 @@ Select_first_entry= | |
Select_last_entry= | ||
|
||
Search_in_all_open_databases= | ||
|
||
Invalid_ISBN\:_'%0'.= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2374,3 +2374,5 @@ Select_first_entry= | |
Select_last_entry= | ||
|
||
Search_in_all_open_databases= | ||
|
||
Invalid_ISBN\:_'%0'.= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2372,3 +2372,5 @@ Select_first_entry= | |
Select_last_entry= | ||
|
||
Search_in_all_open_databases= | ||
|
||
Invalid_ISBN\:_'%0'.= |
Oops, something went wrong.