-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
Added error msg when isbn entry was not found #7036
Added error msg when isbn entry was not found #7036
Conversation
// inspect the "no results" error message (if there is one) | ||
Element potentialErrorMessageDiv = html.select("div#flash-notice.notice.add-bottom").first(); | ||
if (potentialErrorMessageDiv.hasText() && potentialErrorMessageDiv.text().contains("No Results")) { | ||
LOGGER.error("ISBN " + identifier + " not found at ottobib"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LOGGER.error("ISBN " + identifier + " not found at ottobib"); | |
LOGGER.error("ISBN { } not found at ottobib", identifier); |
This is the recommended way
@@ -59,6 +62,13 @@ public String getName() { | |||
bibEntry = isbnViaOttoBibFetcher.performSearchById(identifier); | |||
} | |||
|
|||
// nothing found at ebook.de and ottobib | |||
if (!bibEntry.isPresent()) { | |||
FXDialog noEntryFoundDialog = new FXDialog(AlertType.ERROR); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not the right place. You cannot put GUI code into logic/model classes.
See https://devdocs.jabref.org/getting-into-the-code/high-level-documentation
The right place to check if the results are empty would be here: Than you have it generic as well for all kind of fetchers
Optional<BibEntry> result = fetcherWorker.getValue(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oops, my mistake. I'll fix it later today. I have another question about the ottobib fetcher though, should getting no results throw an exception? Ottobib seems like a special case since supplying an ISBN that leads to no entry doesn't give a 404 but instead leads to a special page with an error message.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I thought about throwing a fetcher exception as well. But on the other hand we have optional for those cases.
So I would not throw an exception.
@tobiasdiez
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for your work so far.
Exceptions are only for exceptional program states. An unkown ISBN is a possible case in Ottobib. Thats probably why Ottobib does not show 404, but a page saying: unkown ISBN.
See: https://github.com/HugoMatilla/Effective-JAVA-Summary#57-use-exceptions-only-for-exceptional-conditions
} else if (result.isEmpty()) { | ||
String fetcher = selectedItemProperty().getValue().getName(); | ||
String searchId = idText.getValue(); | ||
dialogService.showErrorDialogAndWait(Localization.lang("Fetcher '%0' did not find an entry for id '%1'.", fetcher, searchId)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can I leave this error message or should it be unique?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, looks good so far
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks again for your contribution.👍
I only have a minor suggestion regarding the changelog
} else if (result.isEmpty()) { | ||
String fetcher = selectedItemProperty().getValue().getName(); | ||
String searchId = idText.getValue(); | ||
dialogService.showErrorDialogAndWait(Localization.lang("Fetcher '%0' did not find an entry for id '%1'.", fetcher, searchId)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, looks good so far
Co-authored-by: Christoph <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good! Thank you for your contribution. Took the liberty to commit the changes Chris suggested, so we can merge this.
Fixes #7000
Added an error message that gets shown when the entered ISBN leads to no results on ebook.de and ottobib.
Screenshot of change: