CalDescent
ace5d999e2
Log a comma separated list of hashes after splitting a file into chunks, so they can easily be requested from another node using the //data/files/frompeer/{peer} API endpoint. Again temporary until the sync happens automatically.
2021-06-25 19:30:45 +01:00
CalDescent
52829a244b
More work on APIs to request files from peers. I won't spend too long making these perfect as they are mostly a temporary measure.
2021-06-25 19:28:39 +01:00
CalDescent
71c247fe56
Added POST /data/file/{hash}/build API, used to join multiple chunks together.
2021-06-25 19:28:01 +01:00
CalDescent
b34066f579
More work on HTML parsing.
...
The style tag parsing ideally needs rewriting using an actual CSS parser, but we can get away with this hacky approach in the short term.
2021-06-25 08:34:44 +01:00
CalDescent
b286c15c51
Optimized website serving, and added code to return the correct content types.
...
This is probably the most efficient way to process the data on the fly, but it's still not very scalable. A better approach would be to pre-process the HTML when building the file structure, and then serve them completely statically (i.e. using a standard webserver rather than via application memory). But it makes sense to keep it this way for development and maybe early beta testing.
2021-06-25 08:32:22 +01:00
CalDescent
ea5e2f5580
Added POST /site/preview API
...
This can be used to preview a site before signing a transaction and announcing it to the network. The response will need reworking to return JSON (along with most of the other new APIs)
2021-06-23 09:28:38 +01:00
CalDescent
b65c7a75fe
Handle relative links when parsing HTML.
2021-06-23 09:26:41 +01:00
CalDescent
39f5dce51c
Moved "directory" data uploads to new POST /site/upload API.
...
Directory uploads don't make much sense outside of website hosting, so it's best to make this API specific to that purpose.
2021-06-23 09:10:06 +01:00
CalDescent
f77ec1faf6
A very crude proof of concept which serves a website from a zipped (and in future, chunked) data blob. This forms the beginnings of the "website hosting" layer on top of the data storage. It needs a significant rework - most importantly so that we aren't serving every asset from memory, and also so that the correct content-type headers are returned, etc.
2021-06-23 08:43:21 +01:00
CalDescent
cd3a1e0159
Increased max file size to 1GiB. Will review this again later.
2021-06-23 08:33:53 +01:00
CalDescent
3f20fadb81
When zipping files, rename the outer folder to "data" instead of using the original folder name. This means that the data can be accessed deterministically without the need to first lookup the folder name.
2021-06-23 08:09:59 +01:00
CalDescent
1c6428dd3b
Added equivalent split and join test but this time using a 5.5MiB source file.
2021-06-23 08:07:35 +01:00
CalDescent
aca620241a
More work on data file split/join, and added a test.
2021-06-22 08:58:16 +01:00
CalDescent
808b36e088
Specify chunk size when splitting.
2021-06-22 07:44:34 +01:00
CalDescent
1613375cc0
Added more validation of files received in GET /data/file/frompeer
2021-06-21 19:03:34 +01:00
CalDescent
787ef957d2
Added support for uploading an entire directory via POST /data/upload/path
...
If a directory is specified instead of a file, the directory is automatically zipped before being split into chunks.
2021-06-21 19:02:49 +01:00
CalDescent
b915d0aed5
Only create the output file directories when we are actually writing a file there. This should prevent empty directories being created when initializing a nonexistent DataFile using a hash.
2021-06-21 08:40:52 +01:00
CalDescent
16dc5b5327
Include the data length in DataFileMessage, which is more similar to the approach used by ArbitraryDataMessage. These two message types are very similar, except arbitrary code currently has a requirement of one piece of data per signature, whereas DataFile code is independent and can support multiple files per transaction. Maybe the two can be combined at some point, but for now I'll keep them separate.
2021-06-20 19:49:10 +01:00
CalDescent
c2d0c63db0
Improved error logging.
2021-06-19 20:31:04 +01:00
CalDescent
f5c9807a48
Use contains() rather than equals() when matching a peer in /data/file/frompeer, so that the port can be optionally left out.
2021-06-19 20:29:05 +01:00
CalDescent
7e9b1d5e16
Rework of DataFile.base58Digest()
...
This fixes an NPE when trying to send a file that doesn't exist. It also removes the caching, which we can add again later if it turns out to be needed.
2021-06-19 20:25:25 +01:00
CalDescent
5070c4eea9
Better handling of data file responses in the /data/file/frompeer API endpoint.
2021-06-19 20:23:33 +01:00
CalDescent
33d9c51b6f
Validate supplied base58 string in /data/file/frompeer API endpoint
2021-06-19 19:26:13 +01:00
CalDescent
d0f9d478c2
Fixed bug which prevented the DATA_FILE message ID from making it through to the reply queue.
2021-06-19 19:05:11 +01:00
CalDescent
f296ec46c8
Removed unused headers.
2021-06-19 17:32:55 +01:00
CalDescent
64d19e480b
Chunk size set to 1MB for now, as it seems that our networking code has problems when transferring 2MB chunks. We can increase this later once that problem has been fixed.
2021-06-19 17:32:48 +01:00
CalDescent
8e35f131d5
Removed debugging log that wasn't intended to be committed.
2021-06-18 08:33:51 +01:00
CalDescent
aafb9d7e4f
Include running total in "Sent X bytes" log entry.
2021-06-18 08:05:35 +01:00
CalDescent
652f30bdbd
Added DATA_FILE and GET_DATA_FILE message types.
2021-06-18 08:02:57 +01:00
CalDescent
f4ba7b2a0c
Added onNetworkGetDataFileMessage() handler
2021-06-18 08:02:13 +01:00
CalDescent
592490d709
Added GET /data/file/frompeer API endpoint
...
This requests a file from the supplied peer address, and stores a copy locally if successful. Still a work in progress.
2021-06-18 07:59:46 +01:00
CalDescent
5ac676d201
Added DataFileMessage and GetDataFileMessage, used for requesting and sending files between peers.
2021-06-17 19:05:00 +01:00
CalDescent
abfe0a925a
More DataFile methods and improvements
2021-06-17 18:20:42 +01:00
CalDescent
fa11f4f45b
Moved DataFileChunk(byte[] fileContent) constructor to the superclass so it can be used by regular data files too.
2021-06-17 18:20:11 +01:00
CalDescent
1e8dbfe4b7
Delete chunk if it fails the hash validation in the constructor.
2021-06-17 18:18:19 +01:00
CalDescent
f82f2bd287
Added DELETE /data/file API endpoint
...
This deletes a file referenced by a user supplied SHA256 digest string (which we will use as the file's "ID" in the Qortal data system). In the future this could be extended to delete all associated chunks, but first we need to build out the data chain so we have a way to look up chunks associated with a file hash.
2021-06-16 20:03:15 +01:00
CalDescent
76742c3869
Removed .dat extension, and use an extra level in the directory structure (data/aB/cD/aBcDeF... etc)
2021-06-16 19:49:12 +01:00
CalDescent
9407e7e418
Data storage location moved to settings ("dataPath")
2021-06-16 19:22:50 +01:00
CalDescent
120552b36e
Added resource file missing from last commit.
2021-06-16 19:13:24 +01:00
CalDescent
9fb58c7ae3
Added the beginnings of an upload API, with some basic data file management.
2021-06-16 19:10:35 +01:00
CalDescent
b917da765c
Removed block 212937
2021-06-15 09:29:07 +01:00
CalDescent
cc59510cd0
Removed all cross-chain code. It's not needed for data nodes.
2021-06-15 09:27:05 +01:00
CalDescent
86aab7023c
Initial settings for data node development. Most to be decided later.
2021-06-14 19:40:37 +01:00
CalDescent
904be3005f
Enable fast sync by default.
2021-06-12 13:07:25 +01:00
CalDescent
95eaf4c887
Merge branch 'master' into sync-multiple-blocks
2021-06-12 11:15:28 +01:00
CalDescent
e3923b7b22
Fixed issue causing frequent disconnects (found by szisti)
...
When sending or requesting more than 1000 online accounts, peers would be disconnected with an EOF or connection reset error due to an intentional null response. This response has been removed and it will instead now only send the first 1000 accounts, which prevents the disconnections from occurring.
In theory, these accounts should be in a different order on each node, so the 1000 limit should still result in a fairly even propagation of accounts. However, we may want to consider increasing this limit, to maximise the propagation speed.
Thanks to szisti for tracking this one down.
2021-06-11 19:10:04 +01:00
CalDescent
a43993e3ec
Use placeholder build timestamp and build version when building without mvn package (e.g. from within an IDE)
...
This fixes an exception thrown when running directly in IntelliJ, as previously we relied on mvn package to parse the commit hash and timestamp.
2021-06-11 19:01:35 +01:00
CalDescent
df47f5d47b
Merge branch 'master' into sync-multiple-blocks
2021-06-06 10:35:47 +01:00
CalDescent
319e64bacc
Defend against an edge case NPE in the chat messages websocket.
2021-06-06 10:34:20 +01:00
CalDescent
76e1de38e8
Workaround for issue where sometimes an AT stays in "TRADING" mode even after it is marked as finished. This caused Bob's tradebot to enter BOB_REFUNDED mode instead of redeeming the LTC. This workaround treats "TRADING" as "REDEEMED" as long as the AT is finished. It will still enter the BOB_REFUNDED state if the AT's trade state is "REFUNDED" or "CANCELLED", to prevent it trying to redeem LTC without the secret. Longer term we need to prevent the AT itself from getting in this state to begin with, but this should at least solve the LTC redemption problem that occurs as a result.
2021-06-05 12:31:49 +01:00