forked from JabRef/jabref
-
Notifications
You must be signed in to change notification settings - Fork 15
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
Implement remote storage sync #642
Draft
koppor
wants to merge
12
commits into
main
Choose a base branch
from
sync-mwe
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from 8 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
7c1df88
Introduces test http server
koppor 37dd6b9
Remove temporary code
koppor 8f05677
Fix checkstyle
koppor 057e982
Create http-server.md with a how-to for the SSL certificate generation
koppor 0d5a695
Merge remote-tracking branch 'upstream/main' into min-http-api
koppor be12664
Enables passing files to a test Server
koppor 817d77d
Merge branch 'main' into min-http-api
koppor c675fd7
Add initial sync
koppor 13e0623
Fix ADR name
koppor f3e7c2d
Add "withChanged" to enable proper BibEntryDTOTest
koppor f59e57f
Fix test
koppor d7897d1
WIP: Make SyncState library-aware
koppor File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
parent: Code Howtos | ||
--- | ||
# HTTP Server | ||
|
||
## Get SSL Working | ||
|
||
(Based on <https://stackoverflow.com/a/57511038/873282>) | ||
|
||
Howto vor Windows - other operating systems work similar: | ||
|
||
1. As admin `choco install mkcert` | ||
2. As admin: `mkcert -install` | ||
3. `cd %APPDATA%\..\local\org.jabref\jabref\ssl` | ||
4. `mkcert -pkcs12 jabref.desktop jabref localhost 127.0.0.1 ::1` | ||
5. Rename the file to `server.p12` |
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,53 @@ | ||
--- | ||
nav_order: 27 | ||
parent: Decision Records | ||
--- | ||
<!-- we need to disable MD025, because we use the different heading "ADR Template" in the homepage (see above) than it is foreseen in the template --> | ||
<!-- markdownlint-disable-next-line MD025 --> | ||
# Return BibTeX string and CSL Item JSON in the API | ||
|
||
## Context and Problem Statement | ||
|
||
In the context of an http server, when a http client `GETs` a JSON data structure containing BibTeX data, which format should that have? | ||
|
||
## Considered Options | ||
|
||
* Offer both, BibTeX string and CSL JSON | ||
* Return BibTeX as is as string | ||
* Convert BibTeX to JSON | ||
|
||
## Decision Outcome | ||
|
||
Chosen option: "Offer both, BibTeX string and CSL JSON", because there are many browser libraries out there being able to parse BibTeX. Thus, we don't need to convert it. | ||
|
||
## Pros and Cons of the Options | ||
|
||
### Offer both, BibTeX string and CSL JSON | ||
|
||
- Good, because this follows "Backend for Frontend" | ||
- Good, because Word Addin works seamless with the data provided (and does not need another dependency) | ||
- Good, because other clients can work with BibTeX data | ||
- Bad, because two serializations have to be kept | ||
|
||
### Return BibTeX as is as string | ||
|
||
- Good, because we don't need to think about any conversion | ||
- Bad, because it is unclear how to ship BibTeX data where the entry is dependent on | ||
- Bad, because client needs add additional parsing logic | ||
|
||
### Convert BibTeX to JSON | ||
|
||
More thought has to be done when converting to JSON. | ||
There seems to be a JSON format from [@citation-js/plugin-bibtex](https://www.npmjs.com/package/@citation-js/plugin-bibtex). | ||
We could do an additional self-made JSON format, but this increases the number of available JSON serializations for BibTeX. | ||
|
||
- Good, because it could flatten BibTeX data (example: `author = first # " and " # second`) | ||
- Bad, because conversion is difficult in BibTeX special cases. For instance, if Strings are used (example: `author = first # " and " # second`) and one doesn't want to flatten ("normalize") this. | ||
|
||
## More Information | ||
|
||
Existing JavaScript BibTeX libraries: | ||
|
||
* [bibtex-js](https://github.com/digitalheir/bibtex-js) | ||
* [bibtexParseJS](https://github.com/ORCID/bibtexParseJs) | ||
* [@citation-js/plugin-bibtex](https://www.npmjs.com/package/@citation-js/plugin-bibtex) |
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,6 @@ | ||
package org.jabref.http; | ||
|
||
public class MediaType { | ||
public static final String BIBTEX = "application/x-bibtex"; | ||
public static final String JSON_CSL_ITEM = "application/x-bibtex-library-csl+json"; | ||
} |
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,53 @@ | ||
package org.jabref.http.client; | ||
|
||
import java.io.IOException; | ||
import java.net.URI; | ||
import java.net.http.HttpClient; | ||
import java.net.http.HttpRequest; | ||
import java.net.http.HttpResponse; | ||
import java.util.List; | ||
|
||
import org.jabref.model.database.BibDatabaseContext; | ||
import org.jabref.http.dto.BibEntryDTO; | ||
|
||
public class SyncClient { | ||
|
||
private final BibDatabaseContext bibDatabaseContext; | ||
private Long lastSynchronizedGlobalRevision = -1L; | ||
|
||
private HttpClient httpClient = HttpClient.newHttpClient(); | ||
|
||
/** | ||
* Initializes a client for the given context | ||
*/ | ||
public SyncClient(BibDatabaseContext bibDatabaseContext) throws IllegalArgumentException { | ||
if (bibDatabaseContext.getDatabasePath().isEmpty()) { | ||
throw new IllegalArgumentException("Unsaved libraries not yet supported."); | ||
} | ||
this.bibDatabaseContext = bibDatabaseContext; | ||
} | ||
|
||
/** | ||
* Client needs to store the state of Id and entry locally to be able to handle external changes. | ||
* This is done using the "dirty" flag. | ||
*/ | ||
private void synchronizeWithLocalView() { | ||
} | ||
|
||
public List<BibEntryDTO> getChanges() throws IOException, InterruptedException { | ||
HttpRequest request = HttpRequest.newBuilder() | ||
.uri(URI.create("http://localhost:8080/updates?lastUpdate=0")) | ||
.GET() | ||
.build(); | ||
HttpResponse<String> response = httpClient.send(request, HttpResponse.BodyHandlers.ofString()); | ||
return null; | ||
} | ||
|
||
/** | ||
* Synchronizes the given library with the server. | ||
* <p> | ||
* Pre-condition: Connection with server works | ||
*/ | ||
public void synchronize(BibDatabaseContext bibDatabaseContext) { | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
🚫 [reviewdog] <com.puppycrawl.tools.checkstyle.checks.imports.ImportOrderCheck> reported by reviewdog 🐶
Wrong order for 'org.jabref.http.dto.BibEntryDTO' import.