-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
feat: support open reference at google scholar #13153
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
base: main
Are you sure you want to change the base?
feat: support open reference at google scholar #13153
Conversation
Update following are wrong comments; the feature is about opening using the web browser
|
jabgui/src/main/java/org/jabref/gui/maintable/SearchGoogleScholarAction.java
Show resolved
Hide resolved
jablib/src/test/java/org/jabref/logic/util/ExternalLinkCreatorTest.java
Outdated
Show resolved
Hide resolved
Your code currently does not meet JabRef's code guidelines. We use Checkstyle to identify issues. You can see which checks are failing by locating the box "Some checks were not successful" on the pull request page. To see the test output, locate "Tests / Checkstyle (pull_request)" and click on it. In case of issues with the import order, double check that you activated Auto Import. You can trigger fixing imports by pressing Ctrl+Alt+O to trigger Optimize Imports. Please carefully follow the setup guide for the codestyle. Afterwards, please run checkstyle locally and fix the issues, commit, and push. |
@@ -37,6 +37,8 @@ public enum StandardActions implements Action { | |||
EXTRACT_FILE_REFERENCES_OFFLINE(Localization.lang("Extract references from file (offline)"), IconTheme.JabRefIcons.FILE_STAR), | |||
OPEN_URL(Localization.lang("Open URL or DOI"), IconTheme.JabRefIcons.WWW, KeyBinding.OPEN_URL_OR_DOI), | |||
SEARCH_SHORTSCIENCE(Localization.lang("Search ShortScience")), | |||
SEARCH_GOOGLE_SCHOLAR(Localization.lang("Search Google Scholar")), | |||
SEARCH(Localization.lang("Search...")), |
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.
The 'SEARCH' action should be grouped with other search-related actions to maintain semantic consistency and improve code organization.
jabgui/src/main/java/org/jabref/gui/maintable/SearchGoogleScholarAction.java
Show resolved
Hide resolved
jabgui/src/main/java/org/jabref/gui/maintable/SearchShortScienceAction.java
Show resolved
Hide resolved
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.
Small comment on the tests
(I currently don't have much time to dive into this PR, but wanted to give a little pice of work to move this PR forward)
@@ -29,25 +50,34 @@ private boolean urlIsValid(String url) { | |||
|
|||
@Test | |||
void getShortScienceSearchURLEncodesSpecialCharacters() { | |||
ImporterPreferences stubPreferences = new StubImporterPreferences(); |
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.
Typically, this is done with mock
and when
. See other classes. Can you try this?
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.
Yep, I removed the StubImporterPreferences
and replaced it with mock
.
fx:id="catalogEnabledColumn" | ||
text="%Enabled" |
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 no off lines 50/51.
Why the additoinal indent / reformat?
It is hard to review code which makes formatting changes.
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.
@brandon-lau0 May I ask if you are going to continue to work on this? - There are merge conflicts to resolve and tests made properly. If not, it is allright for us; we can then ask another student to continue. |
1b9bacd
to
550796e
Compare
550796e
to
eade1cf
Compare
author.ifPresent(a -> uriBuilder.addParameter("author", a)); | ||
return uriBuilder.toString(); | ||
} catch (URISyntaxException ex) { | ||
throw new AssertionError("ShortScience URL is invalid.", ex); |
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.
Using exceptions for control flow is not recommended. Exceptions should be used for exceptional states, not normal control flow.
author.ifPresent(a -> uriBuilder.addParameter("author", a)); | ||
return uriBuilder.toString(); | ||
} catch (URISyntaxException ex) { | ||
throw new AssertionError("Default Google Scholar URL is invalid.", ex); |
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.
Using exceptions for control flow is not recommended. Exceptions should be used for exceptional states, not normal control flow.
Thank you for your patience. I just resolved the merge conflicts and the tests to use mocks. |
@@ -78,12 +101,12 @@ | |||
text="%Catalog" | |||
/> | |||
<TableColumn minWidth="120" | |||
fx:id="customApiKey" | |||
text="Key"/> | |||
fx:id="customApiKey" |
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.
JUnit tests of You can then run these tests in IntelliJ to reproduce the failing tests locally. We offer a quick test running howto in the section Final build system checks in our setup guide. |
Summary of Changes
This PR adds a new "Search Google Scholar" feature to JabRef, similar to the existing "Search ShortScience" functionality. The feature allows users to quickly search for a selected entry's title in Google Scholar directly from the main table's context menu. The search engines are moved under the "Search..." tab in the right click menu for better organization.

In addition, we make Google Scholar and Short Science links configurable in the Preferences tab, under a new section named "Search Engine URL Templates". One of the comments mentioned, in the issue, that "the URL should be configurable. Reason: We cannot maintain JabRef for all site URLs; and the list of sites might be oppionated." This allows users to customize their URL templates, such as adding additional query parameters like
author
or strings.The following shows the link the user is directed to after clicking "Search Google Scholar".

Closes #12268.
Bullet Pointed List of Changes:
Collaborators
@lydia-yan @yoasaaa @brandon-lau0 @FlyJoanne
Mandatory checks
CHANGELOG.md
described in a way that is understandable for the average user (if change is visible to the user)