-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added option to export in CFF (Citation File Format) (#10917)
* issue #10661 - feat: added option to export in cff * issue #10661 - feat: updated CHANGELOG.md * issue #10661 - feat: added date field to cff export * issue #10661 - fix: fixed checkstyle errors * Bump org.apache.lucene:lucene-queries from 9.9.1 to 9.10.0 (#10920) * Bump org.apache.lucene:lucene-queries from 9.9.1 to 9.10.0 Bumps org.apache.lucene:lucene-queries from 9.9.1 to 9.10.0. --- updated-dependencies: - dependency-name: org.apache.lucene:lucene-queries dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * introduce var for lucene --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Siedlerchr <siedlerkiller@gmail.com> * Fix for delete entries should ask user (#10591) * Implemented the feature that deleting files which linked to selected entries when user select deletion, and keeping files unchanged when user select cut * The following features are implemented: 1.Initializes a pop-up dialog box to confirm whether the user wants to delete attached files from selected entry. 2.Keep track of user preference: if the user prefers always delete attached files, delete the files without displaying the dialog box. 3. Add preference options in File>Preference>Linked Files>Attached files so that users can manage preferences * update CHANGELOG.md * Add language keys to english language file * restore files in src/main/resources/csl-locales and src/main/resources/csl-styles * Removed unnecessary comments and finxed some requested changes. Added new features: 1. When deleting attached files, the name of files to be deleted will be displayed. 2. Solved the access error caused by repeated deletion of files when one file is attached to multiple entries. * Add language keys to english language file * Modify language keys to english language file * made deleteFileFromDisk method static * update comment of method deleteFileFromDisk * fixed coding styles * restored unexpected code changes * fix logic * try null * todo * Unify dialogs that confirmation deleting files * Get around LinkedFile in LIbraryTab, Encapsulate LinkedFile into LinkedFileViewModel * fix style * restore files * Unified the different dialogs when deleting entries, removerd unnecessary dialogs * fix csl-styles * try to fix csl-styles * try to fix csl-styles again * try to fix csl-styles again 2 * try to fix csl-styles again 3 * Update prompts in en.properties * New features - Add to Trash - Group file-related language strings together * Fix architecture tests * Introduce list of files to delete * Streamline 1 vs. many files * Fix openRewrite * Discard changes to src/test/resources/org/jabref/logic/search/test-library-with-attached-files.bib * Adapt true/false logic according to expectations * Add "Trash" to CHANGELOG.md * Fix localization * Fix JabRef_en.properties * Add some debug statements * Fix preferences * Separate log entries by empty line * More refined dialog --------- Co-authored-by: Siedlerchr <siedlerkiller@gmail.com> Co-authored-by: Oliver Kopp <kopp.dev@gmail.com> Co-authored-by: Carl Christian Snethlage <50491877+calixtus@users.noreply.github.com> * Fix variable name * Fix duplicate check/merge entries dialog not triggered on import from… (#10914) * Fix duplicate check/merge entries dialog not triggered on import from browser Refs #5858 * changelog * remove double duplicate check * remove l10n * add icon, downloading is also handled in import entries * changelog * fix l10n * Update JabRef_en.properties * Update ImportEntriesDialog.java --------- Co-authored-by: Oliver Kopp <kopp.dev@gmail.com> * issue #10661 - fix: fixed PR review comments Made a class comment in CffDate.java Replaced System.lineseparator() with OS.NEWLINE in CffDate.java Added a final newline in cff.layout file --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Siedlerchr <siedlerkiller@gmail.com> Co-authored-by: shawn-jj <134609685+shawn-jj@users.noreply.github.com> Co-authored-by: Oliver Kopp <kopp.dev@gmail.com> Co-authored-by: Carl Christian Snethlage <50491877+calixtus@users.noreply.github.com>
- Loading branch information
1 parent
27f3ed6
commit 7317c2e
Showing
8 changed files
with
321 additions
and
0 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,70 @@ | ||
package org.jabref.logic.layout.format; | ||
|
||
import java.time.LocalDate; | ||
import java.time.Year; | ||
import java.time.YearMonth; | ||
import java.time.format.DateTimeFormatter; | ||
import java.time.format.DateTimeParseException; | ||
|
||
import org.jabref.logic.layout.LayoutFormatter; | ||
import org.jabref.logic.util.OS; | ||
|
||
/** | ||
* This class is used to parse dates for CFF exports. Since we do not know if the input String contains | ||
* year, month and day, we must go through all these cases to return the best CFF format possible. | ||
* Different cases are stated below. | ||
* <p> | ||
* Year, Month and Day contained => preferred-citation: | ||
* date-released: yyyy-mm-dd | ||
* <p> | ||
* Year and Month contained => preferred-citation | ||
* ... | ||
* month: mm | ||
* year: yyyy | ||
* <p> | ||
* Year contained => preferred-citation: | ||
* ... | ||
* year: yyyy | ||
* <p> | ||
* Poorly formatted => preferred-citation: | ||
* ... | ||
* issue-date: text-as-is | ||
*/ | ||
public class CffDate implements LayoutFormatter { | ||
@Override | ||
public String format(String fieldText) { | ||
StringBuilder builder = new StringBuilder(); | ||
String formatString = "yyyy-MM-dd"; | ||
try { | ||
DateTimeFormatter formatter = DateTimeFormatter.ofPattern(formatString); | ||
LocalDate date = LocalDate.parse(fieldText, DateTimeFormatter.ISO_LOCAL_DATE); | ||
builder.append("date-released: "); | ||
builder.append(date.format(formatter)); | ||
} catch (DateTimeParseException e) { | ||
try { | ||
formatString = "yyyy-MM"; | ||
DateTimeFormatter formatter = DateTimeFormatter.ofPattern(formatString); | ||
YearMonth yearMonth = YearMonth.parse(fieldText, formatter); | ||
int month = yearMonth.getMonth().getValue(); | ||
int year = yearMonth.getYear(); | ||
builder.append("month: "); | ||
builder.append(month); | ||
builder.append(OS.NEWLINE); | ||
builder.append(" year: "); // Account for indent since we are in `preferred-citation` indentation block | ||
builder.append(year); | ||
} catch (DateTimeParseException f) { | ||
try { | ||
formatString = "yyyy"; | ||
DateTimeFormatter formatter = DateTimeFormatter.ofPattern(formatString); | ||
int year = Year.parse(fieldText, formatter).getValue(); | ||
builder.append("year: "); | ||
builder.append(year); | ||
} catch (DateTimeParseException g) { | ||
builder.append("issue-date: "); | ||
builder.append(fieldText); | ||
} | ||
} | ||
} | ||
return builder.toString(); | ||
} | ||
} |
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,24 @@ | ||
package org.jabref.logic.layout.format; | ||
|
||
import org.jabref.logic.layout.LayoutFormatter; | ||
import org.jabref.model.entry.types.StandardEntryType; | ||
|
||
public class CffType implements LayoutFormatter { | ||
@Override | ||
public String format(String value) { | ||
return switch (StandardEntryType.valueOf(value)) { | ||
case Article, Conference -> "article"; | ||
case Book -> "book"; | ||
case Booklet -> "pamphlet"; | ||
case InProceedings -> "conference-paper"; | ||
case Proceedings -> "proceedings"; | ||
case Misc -> "misc"; | ||
case Manual -> "manual"; | ||
case Software -> "software"; | ||
case Report, TechReport -> "report"; | ||
case Unpublished -> "unpublished"; | ||
default -> "generic"; | ||
}; | ||
} | ||
} | ||
|
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,17 @@ | ||
cff-version: 1.2.0 | ||
message: "If you use this, please cite the work from preferred-citation." | ||
authors: | ||
- name: \format[Default(No author specified.)]{\author} | ||
title: \format[Default(No title specified.)]{\title} | ||
preferred-citation: | ||
type: \format[CffType, Default(generic)]{\entrytype} | ||
authors: | ||
- name: \format[Default(No author specified.)]{\author} | ||
title: \format[Default(No title specified.)]{\title} | ||
\begin{date} | ||
\format[CffDate]{\date} | ||
\end{date} | ||
\begin{abstract} abstract: \abstract\end{abstract} | ||
\begin{doi} doi: \doi\end{doi} | ||
\begin{volume} volume: \volume\end{volume} | ||
\begin{url} url: "\url"\end{url} |
159 changes: 159 additions & 0 deletions
159
src/test/java/org/jabref/logic/exporter/CffExporterTest.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,159 @@ | ||
package org.jabref.logic.exporter; | ||
|
||
import java.nio.file.Files; | ||
import java.nio.file.Path; | ||
import java.util.Collections; | ||
import java.util.List; | ||
|
||
import org.jabref.logic.layout.LayoutFormatterPreferences; | ||
import org.jabref.logic.util.StandardFileType; | ||
import org.jabref.model.database.BibDatabaseContext; | ||
import org.jabref.model.entry.BibEntry; | ||
import org.jabref.model.entry.field.StandardField; | ||
import org.jabref.model.entry.types.StandardEntryType; | ||
import org.jabref.model.metadata.SaveOrder; | ||
|
||
import org.junit.jupiter.api.BeforeAll; | ||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.io.TempDir; | ||
import org.mockito.Answers; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertEquals; | ||
import static org.mockito.Mockito.mock; | ||
|
||
public class CffExporterTest { | ||
|
||
private static Exporter cffExporter; | ||
private static BibDatabaseContext databaseContext; | ||
|
||
@BeforeAll | ||
static void setUp() { | ||
cffExporter = new TemplateExporter( | ||
"CFF", | ||
"cff", | ||
"cff", | ||
null, | ||
StandardFileType.CFF, | ||
mock(LayoutFormatterPreferences.class, Answers.RETURNS_DEEP_STUBS), | ||
SaveOrder.getDefaultSaveOrder(), | ||
BlankLineBehaviour.DELETE_BLANKS); | ||
|
||
databaseContext = new BibDatabaseContext(); | ||
} | ||
|
||
@Test | ||
public final void exportForNoEntriesWritesNothing(@TempDir Path tempFile) throws Exception { | ||
Path file = tempFile.resolve("ThisIsARandomlyNamedFile"); | ||
Files.createFile(file); | ||
cffExporter.export(databaseContext, tempFile, Collections.emptyList()); | ||
assertEquals(Collections.emptyList(), Files.readAllLines(file)); | ||
} | ||
|
||
@Test | ||
public final void exportsCorrectContent(@TempDir Path tempFile) throws Exception { | ||
BibEntry entry = new BibEntry(StandardEntryType.Article) | ||
.withCitationKey("test") | ||
.withField(StandardField.AUTHOR, "Test Author") | ||
.withField(StandardField.TITLE, "Test Title") | ||
.withField(StandardField.URL, "http://example.com"); | ||
|
||
Path file = tempFile.resolve("RandomFileName"); | ||
Files.createFile(file); | ||
cffExporter.export(databaseContext, file, Collections.singletonList(entry)); | ||
|
||
List<String> expected = List.of( | ||
"cff-version: 1.2.0", | ||
"message: \"If you use this, please cite the work from preferred-citation.\"", | ||
"authors:", | ||
" - name: Test Author", | ||
"title: Test Title", | ||
"preferred-citation:", | ||
" type: article", | ||
" authors:", | ||
" - name: Test Author", | ||
" title: Test Title", | ||
" url: \"http://example.com\""); | ||
|
||
assertEquals(expected, Files.readAllLines(file)); | ||
} | ||
|
||
@Test | ||
public final void usesCorrectType(@TempDir Path tempFile) throws Exception { | ||
BibEntry entry = new BibEntry(StandardEntryType.InProceedings) | ||
.withCitationKey("test") | ||
.withField(StandardField.AUTHOR, "Test Author") | ||
.withField(StandardField.TITLE, "Test Title") | ||
.withField(StandardField.DOI, "random_doi_value"); | ||
|
||
Path file = tempFile.resolve("RandomFileName"); | ||
Files.createFile(file); | ||
cffExporter.export(databaseContext, file, Collections.singletonList(entry)); | ||
|
||
List<String> expected = List.of( | ||
"cff-version: 1.2.0", | ||
"message: \"If you use this, please cite the work from preferred-citation.\"", | ||
"authors:", | ||
" - name: Test Author", | ||
"title: Test Title", | ||
"preferred-citation:", | ||
" type: conference-paper", | ||
" authors:", | ||
" - name: Test Author", | ||
" title: Test Title", | ||
" doi: random_doi_value"); | ||
|
||
assertEquals(expected, Files.readAllLines(file)); | ||
} | ||
|
||
@Test | ||
public final void usesCorrectDefaultValues(@TempDir Path tempFile) throws Exception { | ||
BibEntry entry = new BibEntry(StandardEntryType.Thesis) | ||
.withCitationKey("test"); | ||
|
||
Path file = tempFile.resolve("RandomFileName"); | ||
Files.createFile(file); | ||
cffExporter.export(databaseContext, file, Collections.singletonList(entry)); | ||
|
||
List<String> expected = List.of( | ||
"cff-version: 1.2.0", | ||
"message: \"If you use this, please cite the work from preferred-citation.\"", | ||
"authors:", | ||
" - name: No author specified.", | ||
"title: No title specified.", | ||
"preferred-citation:", | ||
" type: generic", | ||
" authors:", | ||
" - name: No author specified.", | ||
" title: No title specified."); | ||
|
||
assertEquals(expected, Files.readAllLines(file)); | ||
} | ||
|
||
@Test | ||
void passesModifiedCharset(@TempDir Path tempFile) throws Exception { | ||
BibEntry entry = new BibEntry(StandardEntryType.Article) | ||
.withCitationKey("test") | ||
.withField(StandardField.AUTHOR, "谷崎 潤一郎") | ||
.withField(StandardField.TITLE, "細雪") | ||
.withField(StandardField.URL, "http://example.com"); | ||
|
||
Path file = tempFile.resolve("RandomFileName"); | ||
Files.createFile(file); | ||
cffExporter.export(databaseContext, file, Collections.singletonList(entry)); | ||
|
||
List<String> expected = List.of( | ||
"cff-version: 1.2.0", | ||
"message: \"If you use this, please cite the work from preferred-citation.\"", | ||
"authors:", | ||
" - name: 谷崎 潤一郎", | ||
"title: 細雪", | ||
"preferred-citation:", | ||
" type: article", | ||
" authors:", | ||
" - name: 谷崎 潤一郎", | ||
" title: 細雪", | ||
" url: \"http://example.com\""); | ||
|
||
assertEquals(expected, Files.readAllLines(file)); | ||
} | ||
} |
45 changes: 45 additions & 0 deletions
45
src/test/java/org/jabref/logic/layout/format/CffDateTest.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,45 @@ | ||
package org.jabref.logic.layout.format; | ||
|
||
import org.jabref.logic.layout.LayoutFormatter; | ||
import org.jabref.logic.util.OS; | ||
|
||
import org.junit.jupiter.api.BeforeEach; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertEquals; | ||
|
||
public class CffDateTest { | ||
|
||
private LayoutFormatter formatter; | ||
private String newLine; | ||
|
||
@BeforeEach | ||
public void setUp() { | ||
formatter = new CffDate(); | ||
newLine = OS.NEWLINE; | ||
} | ||
|
||
@Test | ||
public void dayMonthYear() { | ||
String expected = "date-released: 2003-11-06"; | ||
assertEquals(expected, formatter.format("2003-11-06")); | ||
} | ||
|
||
@Test | ||
public void monthYear() { | ||
String expected = "month: 7" + newLine + " " + "year: 2016"; | ||
assertEquals(expected, formatter.format("2016-07")); | ||
} | ||
|
||
@Test | ||
public void year() { | ||
String expected = "year: 2021"; | ||
assertEquals(expected, formatter.format("2021")); | ||
} | ||
|
||
@Test | ||
public void poorlyFormatted() { | ||
String expected = "issue-date: -2023"; | ||
assertEquals(expected, formatter.format("-2023")); | ||
} | ||
} |