Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b581ef3f31 | ||
|
|
d8c42adc55 | ||
|
|
45b18ca63d | ||
|
|
52e9d3298a | ||
|
|
e82dfc1e88 | ||
|
|
0be19b677b | ||
|
|
d1839706af | ||
|
|
ce0cc232c8 | ||
|
|
12d09a30ef | ||
|
|
3fdc443ecf | ||
|
|
0700af855d | ||
|
|
d3b81ca3dc | ||
|
|
2a572fb1bd | ||
|
|
76f90ea375 | ||
|
|
d753617628 | ||
|
|
69c9686ce8 | ||
|
|
b3e3022751 | ||
|
|
2ad342c201 | ||
|
|
2182c6e886 | ||
|
|
0d9cbd176c | ||
|
|
d944260a97 | ||
|
|
14f305adda | ||
|
|
6459dcd228 | ||
|
|
714807cdc7 | ||
|
|
59645e620a | ||
|
|
125da9d734 | ||
|
|
808ae709fb | ||
|
|
16c3c11fd8 | ||
|
|
be2b168c6c | ||
|
|
6b296d6110 | ||
|
|
6757348ac9 | ||
|
|
a7e6bed071 | ||
|
|
8b8c5bdb98 | ||
|
|
5b77b23e9f | ||
|
|
05313f9530 | ||
|
|
ce4e55fcc7 | ||
|
|
b26d6a7ffb | ||
|
|
ea12a14d7f | ||
|
|
3609a78465 | ||
|
|
7ec2db4006 | ||
|
|
5352c7b828 | ||
|
|
2a49bb53b2 | ||
|
|
fde4c9a294 | ||
|
|
7fc38a942a | ||
|
|
cc0c4fe224 | ||
|
|
2ab5640c12 | ||
|
|
b7a0376a0f | ||
|
|
d7d1c47e2a | ||
|
|
a65f5eb004 | ||
|
|
2ce34379ad | ||
|
|
40d2ee95b7 | ||
|
|
5632e28331 | ||
|
|
2b53a1bf5e | ||
|
|
ccd9e3116c | ||
|
|
e8d6a50793 | ||
|
|
c43b36e0e7 | ||
|
|
bcd92d135f | ||
|
|
62aea9d330 | ||
|
|
b9c17076b4 | ||
|
|
385290c1cc | ||
|
|
371089e3ee | ||
|
|
254790cd61 | ||
|
|
d3b812c8fa | ||
|
|
3a14f86880 | ||
|
|
887f948dc3 | ||
|
|
035beb7d97 | ||
|
|
f334198241 | ||
|
|
bcca2b4446 | ||
|
|
659deb9830 | ||
|
|
b6df3f7ed5 | ||
|
|
2012758383 | ||
|
|
bea0e694f6 | ||
|
|
8fbbae6c2e | ||
|
|
ec2fec9bf8 | ||
|
|
09d33523b6 | ||
|
|
170cbbfb4f | ||
|
|
9d5fb7e966 | ||
|
|
dc11d21d72 | ||
|
|
774e31ef27 | ||
|
|
7c4a981434 | ||
|
|
358311e8ac | ||
|
|
2551462003 | ||
|
|
60d5b78df0 | ||
|
|
f04017e05b | ||
|
|
cb0098ec85 | ||
|
|
d007d5f230 | ||
|
|
07c6fbe747 | ||
|
|
5e3d413b33 | ||
|
|
bcf8586fbf | ||
|
|
6431182ec3 | ||
|
|
cef623f493 | ||
|
|
0c00c1a2e3 | ||
|
|
ab8805f272 | ||
|
|
da180fcc92 | ||
|
|
a9d80bef8f | ||
|
|
010561596e | ||
|
|
9fc67e37f6 | ||
|
|
151ae50a07 | ||
|
|
b0c6165fee | ||
|
|
6a3ed65e06 | ||
|
|
4395ab508f | ||
|
|
a681ceb4f5 | ||
|
|
58cd51d776 | ||
|
|
b450fa5c44 |
@@ -0,0 +1,5 @@
|
|||||||
|
*.png filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.jpg filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.jpeg filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.enc filter=lfs diff=lfs merge=lfs -text
|
||||||
@@ -0,0 +1,41 @@
|
|||||||
|
# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node
|
||||||
|
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
|
||||||
|
|
||||||
|
name: BuildCI
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [master]
|
||||||
|
pull_request:
|
||||||
|
branches: [master]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
node-version: [16.x]
|
||||||
|
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout codes
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
lfs: true
|
||||||
|
- name: Checkout LFS
|
||||||
|
run: git lfs checkout
|
||||||
|
- name: Use Node.js ${{ matrix.node-version }}
|
||||||
|
uses: actions/setup-node@v2
|
||||||
|
with:
|
||||||
|
node-version: ${{ matrix.node-version }}
|
||||||
|
- run: npm install
|
||||||
|
- run: npm test
|
||||||
|
- run: npm run build
|
||||||
|
- uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: my-dist
|
||||||
|
path: |
|
||||||
|
main.js
|
||||||
|
manifest.json
|
||||||
|
styles.css
|
||||||
@@ -13,5 +13,8 @@ main.js
|
|||||||
# obsidian
|
# obsidian
|
||||||
data.json
|
data.json
|
||||||
|
|
||||||
|
# debug
|
||||||
|
logs.txt
|
||||||
|
|
||||||
# hidden files
|
# hidden files
|
||||||
.*
|
.*
|
||||||
|
|||||||
@@ -1,18 +1,52 @@
|
|||||||
# Save Remote
|
# Remotely Save
|
||||||
|
|
||||||
This is yet another sync plugin for Obsidian.
|
This is yet another unofficial sync plugin for Obsidian.
|
||||||
|
|
||||||
## Disclaimer
|
## Disclaimer
|
||||||
|
|
||||||
**This is NOT the official sync service provided by Obsidian.**
|
- **This is NOT the [official sync service](https://github.com/fyears/obsidian-remotely-save.git) provided by Obsidian.**
|
||||||
|
|
||||||
## !!!Caution!!!
|
## !!!Caution!!!
|
||||||
|
|
||||||
As of October 2021, the plugin is under development. **DO NOT USE IT for any serious vaults.** Prepare for data loss!
|
As of November 2021, the plugin is considered in BETA stage. **DO NOT USE IT for any serious vaults.** **Backup your vault before using this plugin.** Don't be surprise to data loss!
|
||||||
|
|
||||||
|
## Features
|
||||||
|
|
||||||
|
- **Amazon S3 or S3-compatible services are supported.** Webdav supports on the half way.
|
||||||
|
- **Obsidiain Mobile supported.** Vaults can be synced across mobile and desktop devices with the cloud service as the "broker".
|
||||||
|
- **[End-to-end encryption](./docs/encryption.md) supported.** Files would be encrypted using openssl format before being sent to the cloud **if** user specify a password.
|
||||||
|
- **[Minimal Intrusive](./docs/minimal_intrusive_design.md).**
|
||||||
|
- **Fully open source under [Apache-2.0 License](./LICENSE).**
|
||||||
|
- **[Sync Algorithm open](./docs/sync_algorithm.md) for discussion.**
|
||||||
|
|
||||||
|
## Limitations
|
||||||
|
|
||||||
|
- **Users have to trigger the sync manually.** This design is intentional because the plugin is in beta, and it's better for users to be exactly aware of the running of this plugin.
|
||||||
|
- **"deletion" operation can only be triggered from local device.** It's because of the "[minimal intrusive design](./docs/minimal_intrusive_design.md)". May be changed in the future.
|
||||||
|
- **No Conflict resolution. No content-diff-and-patch algorithm.** All files and folders are compared using their local and remote "last modified time" and those with later "last modified time" wins.
|
||||||
|
- **Cloud services cost you money.** Always be aware of the costs and pricing.
|
||||||
|
- **All files or folder starting with `.` (dot) or `_` (underscore) are treated as hidden files, and would NOT be synced.** It's useful if you have some files just staying locally. But this strategy also means that themes / other plugins / settings of this plugin would neither be synced.
|
||||||
|
|
||||||
|
## Download and Install
|
||||||
|
|
||||||
|
- Option #1: [](https://github.com/fyears/obsidian-remotely-save/actions/workflows/auto-build.yml) Every artifacts are placed in the "Summary" under every successful builds.
|
||||||
|
- Option #2: Besides manually downloading the files, you can also use [Obsidian42 - BRAT](https://github.com/TfTHacker/obsidian42-brat) to install this plugin.
|
||||||
|
- Option #3: The pluin would be submitted to the official "community plugin list" in near future.
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
Remote service in support list:
|
### s3
|
||||||
|
|
||||||
- [ ] AWS S3
|
- Prepare your S3 (-compatible) service information: [endpoint, region](https://docs.aws.amazon.com/general/latest/gr/s3.html), [access key id, secret access key](https://docs.aws.amazon.com/sdk-for-javascript/v3/developer-guide/getting-your-credentials.html), bucket name. The bucket should be empty and solely for syncing a vault.
|
||||||
- [ ] webdav
|
- Configure (enable) [CORS](https://docs.aws.amazon.com/AmazonS3/latest/userguide/enabling-cors-examples.html) for requests from `app://obsidian.md` and `capacitor://localhost` and `http://localhost`. It's unfortunately required, because the plugin sends requests from a browser-like envirement. And those addresses are tested and found on desktop and ios and android.
|
||||||
|
- Download and enable this plugin.
|
||||||
|
- Enter your infomation to the settings of this plugin.
|
||||||
|
- If you want to enable end-to-end encryption, also set a password in settings. If you do not specify a password, the files and folders are synced in plain, original content to the cloud.
|
||||||
|
- Click the new "switch" icon on the ribbon (the left sidebar), **every time** you want to sync your vault between local and remote. (No "auto sync" yet.)
|
||||||
|
- **Be patient while syncing.** Especially in the first-time sync.
|
||||||
|
|
||||||
|
### webdav
|
||||||
|
|
||||||
|
- **webdav support is buggy (as of now, 20211122) and considered experimental, so it's hidden by default.** Highly recommend to use the more stable s3.
|
||||||
|
- If you decide to give it a try, open settings, and click "Choose service" area five times, then a Notice should show up. Close and open settings again then you will be able to select webdav.
|
||||||
|
- Currently webdav server should enable CORS for requests, because of technical limitations of mobile.
|
||||||
|
|||||||
@@ -1,29 +0,0 @@
|
|||||||
# Algorithm
|
|
||||||
|
|
||||||
## Sources
|
|
||||||
|
|
||||||
We have three record sources:
|
|
||||||
|
|
||||||
1. Local files
|
|
||||||
2. Remote files
|
|
||||||
3. Local "delete-or-rename" history.
|
|
||||||
|
|
||||||
Assuming all sources are reliable.
|
|
||||||
|
|
||||||
## Deal with them
|
|
||||||
|
|
||||||
We list all combinations mutually exclusive and collectively exhaustive.
|
|
||||||
|
|
||||||
| ID | Remote Files | Local files | Local delete rename history | Extra | Decision |
|
|
||||||
| --- | ------------ | ----------- | --------------------------- | ---------------------------------------------------------- | ------------------------------------------------------------------------------------------------- |
|
|
||||||
| 1 | exist | exist | ignore | mtime_remote > mtime_local | download remote file, create local folder if not exists, clear local history if exists |
|
|
||||||
| 2 | exist | exist | ignore | mtime_remote < mtime_local | upload local file, create remote folder if not exists, clear local history if exists |
|
|
||||||
| 3 | exist | exist | ignore | mtime_remote === mtime_local && size_remote === size_local | clear local history if exists (the file was synced and no changes after last sync) |
|
|
||||||
| 4 | exist | exist | ignore | mtime_remote === mtime_local && size_remote !== size_local | upload local file, clear local history if exists (we always prefer local to remote) |
|
|
||||||
| 5 | exist | exist | ignore | If local is a folder. mtime_local === undefined | clear local history if exists. TODO: what if a folder and a previous file share the same name? |
|
|
||||||
| 6 | exist | not exist | exist | mtime_remote >= delete_time_local | download remote file, create folder if not exists |
|
|
||||||
| 7 | exist | not exist | exist | mtime_remote < delete_time_local | delete remote file, clear local history |
|
|
||||||
| 8 | exist | not exist | not exist | | download remote file, create folder if not exists |
|
|
||||||
| 9 | not exist | exist | ignore | If local is a single file. | upload local file, create remote folder if not exists, clear local history if exists |
|
|
||||||
| 10 | not exist | exist | ignore | If local is a folder. | upload local files recursively, create remote folder if not exists, clear local history if exists |
|
|
||||||
| 11 | not exist | not exist | ignore | | clear local history if exists |
|
|
||||||
@@ -0,0 +1,29 @@
|
|||||||
|
# Encryption
|
||||||
|
|
||||||
|
If a password is set, the files are encrypted before being sent to the cloud.
|
||||||
|
|
||||||
|
The encryption algorithm is delibrately designed to be aligned with openssl format.
|
||||||
|
|
||||||
|
1. The encryption algorithm is implemented using web-crypto.
|
||||||
|
2. The file content is encrypted using openssl format. Assuming a file named `sometext.txt`, a password `somepassword`, then the encryption is equivalent to the following command:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# file content encryption (ignoring file path encryption)
|
||||||
|
openssl enc -p -aes-256-cbc -pbkdf2 -iter 20000 -pass pass:somepassword -in ./sometext.txt -out ./sometext.txt.enc
|
||||||
|
|
||||||
|
# file content decryption (ignoring file path decryption)
|
||||||
|
openssl enc -d -p -aes-256-cbc -pbkdf2 -iter 20000 -pass pass:somepassword -in ./sometext.txt.enc -out ./sometext.txt
|
||||||
|
```
|
||||||
|
|
||||||
|
3. The file/directory path strings, are encrypted using openssl in binary mode and then `base32` is applied.
|
||||||
|
Assuming the file path is `a-folder-文件夹/a-file-文件.md`, then the following commands are equivilent:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# pure string encryption then base32
|
||||||
|
echo -n 'a-folder-文件夹/a-file-文件.md' | openssl enc -aes-256-cbc -pbkdf2 -iter 20000 -pass pass:mylongpassword | base32 -w 0
|
||||||
|
|
||||||
|
# pure string base32 then decryption
|
||||||
|
echo -n 'KNQWY5DFMRPV7UHRWVYFSHE2XVVVZCFN65SR7ETEKO5L6EYGXCVEPT4A2LVTW4W2ZHXWF3K22SVA562CCZ6SALARXJY6AAXXHLK5UOA=' | base32 -d -w 00 | openssl enc -d -aes-256-cbc -pbkdf2 -iter 20000 -pass pass:mylongpassword
|
||||||
|
```
|
||||||
|
|
||||||
|
4. The directory is considered as special "0-byte" object on remote s3. So this meta infomation may be easily guessed if some third party can access the remote bucket.
|
||||||
@@ -0,0 +1,36 @@
|
|||||||
|
# Minimal Intrusive Design
|
||||||
|
|
||||||
|
The plugin tries to avoid saving additional meta data remotely.
|
||||||
|
|
||||||
|
## Benefits
|
||||||
|
|
||||||
|
Then the plugin doesn't make any assumptions about information on the remote endpoint.
|
||||||
|
|
||||||
|
For example, it's possbile for a uses to manually upload a file to s3, and next time the plugin can download that file to the local device.
|
||||||
|
|
||||||
|
And it's also possible to combine another "sync-to-s3" solution (like, another software) on desktops, and this plugin on mobile devices, together.
|
||||||
|
|
||||||
|
## Flaws
|
||||||
|
|
||||||
|
The main issue comes from deletions (and renamings which is actually interpreted as "deletion-then-creation").
|
||||||
|
|
||||||
|
Consider this:
|
||||||
|
|
||||||
|
1. The user create and sync a file to the cloud on the 1st device.
|
||||||
|
2. Then download this file to the 2nd device.
|
||||||
|
3. And then delete this file on the 1st device.
|
||||||
|
4. And sync on the 1st device. The file on the cloud is also deleted.
|
||||||
|
5. And sync on the 2nd device. **The 2nd device would upload the file again to the cloud.**
|
||||||
|
|
||||||
|
In step 4, the file is marked "deleted" on the 1st device, and the 1st device send the command "delete this file on the cloud" to the cloud sevice (e.g. s3). Then the file on the cloud is also deleted. So far so good.
|
||||||
|
|
||||||
|
But, in step 5, because no meta data are saved on the cloud, the 2nd device doesn't know that the file are deleted. Instead, it thinks "the file was not synced to the cloud last time, so it's uploaded this time". So an unintentional upload occurs.
|
||||||
|
|
||||||
|
Currently no way to fix this if no meta data are saved remotely. The only workarounds are:
|
||||||
|
|
||||||
|
1. Delete the file on the 1st device, **before** syncing it to the cloud. Then the file never show up on the cloud or on the 2nd device.
|
||||||
|
2. Or, manually delete the file on 2nd device **before** step 5 in above situation.
|
||||||
|
|
||||||
|
## Future
|
||||||
|
|
||||||
|
This design may be changed in the feature, considering the flaws described above.
|
||||||
@@ -0,0 +1,29 @@
|
|||||||
|
# Sync Algorithm
|
||||||
|
|
||||||
|
## Sources
|
||||||
|
|
||||||
|
We have three record sources:
|
||||||
|
|
||||||
|
1. Local files
|
||||||
|
2. Remote files
|
||||||
|
3. Local "delete-or-rename" history.
|
||||||
|
|
||||||
|
Assuming all sources are reliable.
|
||||||
|
|
||||||
|
## Deal with them
|
||||||
|
|
||||||
|
We list all combinations mutually exclusive and collectively exhaustive.
|
||||||
|
|
||||||
|
| ID | Remote Files | Local files | Local delete rename history | Extra | Decision |
|
||||||
|
| --- | ------------ | ----------- | --------------------------- | ----------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- |
|
||||||
|
| 1 | exist | exist | ignore | mtime_remote > mtime_local | download remote file, create local folder if not exists, clear local history if exists |
|
||||||
|
| 2 | exist | exist | ignore | mtime_remote < mtime_local | upload local file, create remote folder if not exists, clear local history if exists |
|
||||||
|
| 3 | exist | exist | ignore | mtime_remote === mtime_local && password === "" && size_remote === size_local | clear local history if exists (the file was synced and no changes after last sync) |
|
||||||
|
| 4 | exist | exist | ignore | mtime_remote === mtime_local && password === "" && size_remote !== size_local | upload local file, clear local history if exists (we always prefer local to remote) |
|
||||||
|
| 5 | exist | exist | ignore | mtime_remote === mtime_local && password !== "" | clear local history if exists (in encryption mode, file sizes are unequal. we can only rely on mtime(s)) |
|
||||||
|
| 6 | exist | exist | ignore | If local is a folder. mtime_local === undefined | clear local history if exists. TODO: what if a folder and a previous file share the same name? |
|
||||||
|
| 7 | exist | not exist | exist | mtime_remote >= delete_time_local | download remote file, create folder if not exists |
|
||||||
|
| 8 | exist | not exist | exist | mtime_remote < delete_time_local | delete remote file, clear local history |
|
||||||
|
| 9 | exist | not exist | not exist | | download remote file, create folder if not exists |
|
||||||
|
| 10 | not exist | exist | ignore | local may be folder or file | upload local files recursively, create remote folder if not exists, clear local history if exists |
|
||||||
|
| 11 | not exist | not exist | ignore | | clear local history if exists |
|
||||||
+4
-4
@@ -1,9 +1,9 @@
|
|||||||
{
|
{
|
||||||
"id": "obsdian-save-remote",
|
"id": "obsidian-remotely-save",
|
||||||
"name": "Save remote",
|
"name": "Remotely Save",
|
||||||
"version": "0.0.2",
|
"version": "0.1.5",
|
||||||
"minAppVersion": "0.12.15",
|
"minAppVersion": "0.12.15",
|
||||||
"description": "This is yet another plugin allowing users to sync notes between local device and the cloud.",
|
"description": "Yet another unofficial plugin allowing users to sync notes between local device and the cloud service.",
|
||||||
"author": "fyears",
|
"author": "fyears",
|
||||||
"authorUrl": "https://github.com/fyears",
|
"authorUrl": "https://github.com/fyears",
|
||||||
"isDesktopOnly": false
|
"isDesktopOnly": false
|
||||||
|
|||||||
+23
-6
@@ -1,22 +1,32 @@
|
|||||||
{
|
{
|
||||||
"name": "obsidian-save-remote",
|
"name": "obsidian-remotely-save",
|
||||||
"version": "0.0.1",
|
"version": "0.1.5",
|
||||||
"description": "This is yet another sync plugin for Obsidian app.",
|
"description": "This is yet another sync plugin for Obsidian app.",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "webpack --mode development --watch",
|
"dev": "webpack --mode development --watch",
|
||||||
"build": "webpack --mode production",
|
"build": "webpack --mode production",
|
||||||
"format": "npx prettier --write .",
|
"format": "npx prettier --write .",
|
||||||
"clean": "npx rimraf main.js"
|
"clean": "npx rimraf main.js",
|
||||||
|
"test": "cross-env TS_NODE_COMPILER_OPTIONS={\\\"module\\\":\\\"commonjs\\\"} mocha -r ts-node/register 'tests/**/*.ts'"
|
||||||
},
|
},
|
||||||
"source": "main.ts",
|
"source": "main.ts",
|
||||||
"keywords": [],
|
"keywords": [],
|
||||||
"author": "",
|
"author": "",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"@types/chai": "^4.2.22",
|
||||||
|
"@types/chai-as-promised": "^7.1.4",
|
||||||
|
"@types/mime-types": "^2.1.1",
|
||||||
|
"@types/mocha": "^9.0.0",
|
||||||
"@types/node": "^14.14.37",
|
"@types/node": "^14.14.37",
|
||||||
|
"chai": "^4.3.4",
|
||||||
|
"chai-as-promised": "^7.1.1",
|
||||||
|
"cross-env": "^7.0.3",
|
||||||
|
"mocha": "^9.1.3",
|
||||||
"prettier": "^2.4.1",
|
"prettier": "^2.4.1",
|
||||||
"terser-webpack-plugin": "^5.2.4",
|
"terser-webpack-plugin": "^5.2.4",
|
||||||
"ts-loader": "^9.2.6",
|
"ts-loader": "^9.2.6",
|
||||||
|
"ts-node": "^10.4.0",
|
||||||
"tslib": "^2.2.0",
|
"tslib": "^2.2.0",
|
||||||
"typescript": "^4.4.4",
|
"typescript": "^4.4.4",
|
||||||
"webdav-server": "^2.6.2",
|
"webdav-server": "^2.6.2",
|
||||||
@@ -25,15 +35,22 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@aws-sdk/client-s3": "^3.37.0",
|
"@aws-sdk/client-s3": "^3.37.0",
|
||||||
|
"@aws-sdk/lib-storage": "^3.40.1",
|
||||||
"@aws-sdk/signature-v4-crt": "^3.37.0",
|
"@aws-sdk/signature-v4-crt": "^3.37.0",
|
||||||
"@types/mime-types": "^2.1.1",
|
"acorn": "^8.5.0",
|
||||||
"aws-crt": "^1.10.1",
|
"aws-crt": "^1.10.1",
|
||||||
|
"buffer": "^6.0.3",
|
||||||
"codemirror": "^5.63.1",
|
"codemirror": "^5.63.1",
|
||||||
"lovefield-ts": "^0.7.0",
|
"localforage": "^1.10.0",
|
||||||
"mime-types": "^2.1.33",
|
"mime-types": "^2.1.33",
|
||||||
"obsidian": "^0.12.0",
|
"obsidian": "^0.12.0",
|
||||||
|
"path-browserify": "^1.0.1",
|
||||||
|
"process": "^0.11.10",
|
||||||
|
"rfc4648": "^1.5.0",
|
||||||
"rimraf": "^3.0.2",
|
"rimraf": "^3.0.2",
|
||||||
|
"stream-browserify": "^3.0.0",
|
||||||
"webdav": "^4.7.0",
|
"webdav": "^4.7.0",
|
||||||
"webdav-fs": "^4.0.0"
|
"webdav-fs": "^4.0.0",
|
||||||
|
"xregexp": "^5.1.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,13 @@
|
|||||||
|
/**
|
||||||
|
* Only type defs here.
|
||||||
|
*/
|
||||||
|
|
||||||
|
export type SUPPORTED_SERVICES_TYPE = "s3" | "webdav";
|
||||||
|
|
||||||
|
export interface RemoteItem {
|
||||||
|
key: string;
|
||||||
|
lastModified: number;
|
||||||
|
size: number;
|
||||||
|
remoteType: SUPPORTED_SERVICES_TYPE;
|
||||||
|
etag?: string;
|
||||||
|
}
|
||||||
@@ -0,0 +1,29 @@
|
|||||||
|
import { TAbstractFile, TFolder, TFile, Vault } from "obsidian";
|
||||||
|
|
||||||
|
import type { SyncPlanType } from "./sync";
|
||||||
|
import { readAllSyncPlanRecordTexts } from "./localdb";
|
||||||
|
import type { InternalDBs } from "./localdb";
|
||||||
|
import { mkdirpInVault } from "./misc";
|
||||||
|
|
||||||
|
const DEFAULT_DEBUG_FOLDER = "_debug_remotely_save/";
|
||||||
|
const DEFAULT_SYNC_PLANS_HISTORY_FILE_PREFIX = "sync_plans_hist_exported_on_";
|
||||||
|
|
||||||
|
export const exportSyncPlansToFiles = async (db: InternalDBs, vault: Vault) => {
|
||||||
|
console.log("exporting");
|
||||||
|
await mkdirpInVault(DEFAULT_DEBUG_FOLDER, vault);
|
||||||
|
const records = await readAllSyncPlanRecordTexts(db);
|
||||||
|
let md = "";
|
||||||
|
if (records.length === 0) {
|
||||||
|
md = "No sync plans history found";
|
||||||
|
} else {
|
||||||
|
md =
|
||||||
|
"Sync plans found:\n\n" +
|
||||||
|
records.map((x) => "```json\n" + x + "\n```\n").join("\n");
|
||||||
|
}
|
||||||
|
const ts = Date.now();
|
||||||
|
const filePath = `${DEFAULT_DEBUG_FOLDER}${DEFAULT_SYNC_PLANS_HISTORY_FILE_PREFIX}${ts}.md`;
|
||||||
|
await vault.create(filePath, md, {
|
||||||
|
mtime: ts,
|
||||||
|
});
|
||||||
|
console.log("finish exporting");
|
||||||
|
};
|
||||||
+138
@@ -0,0 +1,138 @@
|
|||||||
|
import { base32, base64 } from "rfc4648";
|
||||||
|
import {
|
||||||
|
bufferToArrayBuffer,
|
||||||
|
arrayBufferToBuffer,
|
||||||
|
hexStringToTypedArray,
|
||||||
|
arrayBufferToHex,
|
||||||
|
} from "./misc";
|
||||||
|
|
||||||
|
const DEFAULT_ITER = 20000;
|
||||||
|
|
||||||
|
// base32.stringify(Buffer.from('Salted__'))
|
||||||
|
export const MAGIC_ENCRYPTED_PREFIX_BASE32 = "KNQWY5DFMRPV";
|
||||||
|
|
||||||
|
const getKeyIVFromPassword = async (
|
||||||
|
salt: Uint8Array,
|
||||||
|
password: string,
|
||||||
|
rounds: number = DEFAULT_ITER
|
||||||
|
) => {
|
||||||
|
const k1 = await window.crypto.subtle.importKey(
|
||||||
|
"raw",
|
||||||
|
new TextEncoder().encode(password),
|
||||||
|
{ name: "PBKDF2" },
|
||||||
|
false,
|
||||||
|
["deriveKey", "deriveBits"]
|
||||||
|
);
|
||||||
|
|
||||||
|
const k2 = await window.crypto.subtle.deriveBits(
|
||||||
|
{
|
||||||
|
name: "PBKDF2",
|
||||||
|
salt: salt,
|
||||||
|
iterations: rounds,
|
||||||
|
hash: "SHA-256",
|
||||||
|
},
|
||||||
|
k1,
|
||||||
|
256 + 128
|
||||||
|
);
|
||||||
|
|
||||||
|
return k2;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const encryptArrayBuffer = async (
|
||||||
|
arrBuf: ArrayBuffer,
|
||||||
|
password: string,
|
||||||
|
rounds: number = DEFAULT_ITER,
|
||||||
|
saltHex: string = ""
|
||||||
|
) => {
|
||||||
|
let salt: Uint8Array;
|
||||||
|
if (saltHex !== "") {
|
||||||
|
salt = hexStringToTypedArray(saltHex);
|
||||||
|
} else {
|
||||||
|
salt = window.crypto.getRandomValues(new Uint8Array(8));
|
||||||
|
}
|
||||||
|
|
||||||
|
const derivedKey = await getKeyIVFromPassword(salt, password, rounds);
|
||||||
|
const key = derivedKey.slice(0, 32);
|
||||||
|
const iv = derivedKey.slice(32, 32 + 16);
|
||||||
|
|
||||||
|
const keyCrypt = await window.crypto.subtle.importKey(
|
||||||
|
"raw",
|
||||||
|
key,
|
||||||
|
{ name: "AES-CBC" },
|
||||||
|
false,
|
||||||
|
["encrypt", "decrypt"]
|
||||||
|
);
|
||||||
|
|
||||||
|
const enc = (await window.crypto.subtle.encrypt(
|
||||||
|
{ name: "AES-CBC", iv },
|
||||||
|
keyCrypt,
|
||||||
|
arrBuf
|
||||||
|
)) as ArrayBuffer;
|
||||||
|
|
||||||
|
const prefix = new TextEncoder().encode("Salted__");
|
||||||
|
|
||||||
|
const res = new Uint8Array([...prefix, ...salt, ...new Uint8Array(enc)]);
|
||||||
|
|
||||||
|
return bufferToArrayBuffer(res);
|
||||||
|
};
|
||||||
|
|
||||||
|
export const decryptArrayBuffer = async (
|
||||||
|
arrBuf: ArrayBuffer,
|
||||||
|
password: string,
|
||||||
|
rounds: number = DEFAULT_ITER
|
||||||
|
) => {
|
||||||
|
const prefix = arrBuf.slice(0, 8);
|
||||||
|
const salt = arrBuf.slice(8, 16);
|
||||||
|
const derivedKey = await getKeyIVFromPassword(
|
||||||
|
new Uint8Array(salt),
|
||||||
|
password,
|
||||||
|
rounds
|
||||||
|
);
|
||||||
|
const key = derivedKey.slice(0, 32);
|
||||||
|
const iv = derivedKey.slice(32, 32 + 16);
|
||||||
|
|
||||||
|
const keyCrypt = await window.crypto.subtle.importKey(
|
||||||
|
"raw",
|
||||||
|
key,
|
||||||
|
{ name: "AES-CBC" },
|
||||||
|
false,
|
||||||
|
["encrypt", "decrypt"]
|
||||||
|
);
|
||||||
|
|
||||||
|
const dec = (await window.crypto.subtle.decrypt(
|
||||||
|
{ name: "AES-CBC", iv },
|
||||||
|
keyCrypt,
|
||||||
|
arrBuf.slice(16)
|
||||||
|
)) as ArrayBuffer;
|
||||||
|
|
||||||
|
return dec;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const encryptStringToBase32 = async (
|
||||||
|
text: string,
|
||||||
|
password: string,
|
||||||
|
rounds: number = DEFAULT_ITER,
|
||||||
|
saltHex: string = ""
|
||||||
|
) => {
|
||||||
|
const enc = await encryptArrayBuffer(
|
||||||
|
bufferToArrayBuffer(new TextEncoder().encode(text)),
|
||||||
|
password,
|
||||||
|
rounds,
|
||||||
|
saltHex
|
||||||
|
);
|
||||||
|
return base32.stringify(new Uint8Array(enc));
|
||||||
|
};
|
||||||
|
|
||||||
|
export const decryptBase32ToString = async (
|
||||||
|
text: string,
|
||||||
|
password: string,
|
||||||
|
rounds: number = DEFAULT_ITER
|
||||||
|
) => {
|
||||||
|
return new TextDecoder().decode(
|
||||||
|
await decryptArrayBuffer(
|
||||||
|
bufferToArrayBuffer(base32.parse(text)),
|
||||||
|
password,
|
||||||
|
rounds
|
||||||
|
)
|
||||||
|
);
|
||||||
|
};
|
||||||
+168
-142
@@ -1,82 +1,92 @@
|
|||||||
import * as lf from "lovefield-ts/dist/es6/lf.js";
|
import localforage from "localforage";
|
||||||
import { TAbstractFile, TFile, TFolder } from "obsidian";
|
import { TAbstractFile, TFile, TFolder } from "obsidian";
|
||||||
|
|
||||||
import type { SUPPORTED_SERVICES_TYPE } from "./misc";
|
import type { SUPPORTED_SERVICES_TYPE } from "./baseTypes";
|
||||||
|
import type { SyncPlanType } from "./sync";
|
||||||
|
|
||||||
export type DatabaseConnection = lf.DatabaseConnection;
|
export type LocalForage = typeof localforage;
|
||||||
|
|
||||||
export const DEFAULT_DB_NAME = "saveremotedb";
|
export const DEFAULT_DB_VERSION_NUMBER: number = 20211114;
|
||||||
|
export const DEFAULT_DB_NAME = "remotelysavedb";
|
||||||
|
export const DEFAULT_TBL_VERSION = "schemaversion";
|
||||||
export const DEFAULT_TBL_DELETE_HISTORY = "filefolderoperationhistory";
|
export const DEFAULT_TBL_DELETE_HISTORY = "filefolderoperationhistory";
|
||||||
export const DEFAULT_TBL_SYNC_MAPPING = "syncmetadatahistory";
|
export const DEFAULT_TBL_SYNC_MAPPING = "syncmetadatahistory";
|
||||||
|
export const DEFAULT_SYNC_PLANS_HISTORY = "syncplanshistory";
|
||||||
|
|
||||||
export interface FileFolderHistoryRecord {
|
export interface FileFolderHistoryRecord {
|
||||||
key: string;
|
key: string;
|
||||||
ctime: number;
|
ctime: number;
|
||||||
mtime: number;
|
mtime: number;
|
||||||
size: number;
|
size: number;
|
||||||
action_when: number;
|
actionWhen: number;
|
||||||
action_type: "delete" | "rename";
|
actionType: "delete" | "rename";
|
||||||
key_type: "folder" | "file";
|
keyType: "folder" | "file";
|
||||||
rename_to: string;
|
renameTo: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface SyncMetaMappingRecord {
|
interface SyncMetaMappingRecord {
|
||||||
local_key: string;
|
localKey: string;
|
||||||
remote_key: string;
|
remoteKey: string;
|
||||||
local_size: number;
|
localSize: number;
|
||||||
remote_size: number;
|
remoteSize: number;
|
||||||
local_mtime: number;
|
localMtime: number;
|
||||||
remote_mtime: number;
|
remoteMtime: number;
|
||||||
remote_extra_key: string;
|
remoteExtraKey: string;
|
||||||
remote_type: SUPPORTED_SERVICES_TYPE;
|
remoteType: SUPPORTED_SERVICES_TYPE;
|
||||||
key_type: "folder" | "file";
|
keyType: "folder" | "file";
|
||||||
|
}
|
||||||
|
|
||||||
|
interface SyncPlanRecord {
|
||||||
|
ts: number;
|
||||||
|
remoteType: string;
|
||||||
|
syncPlan: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface InternalDBs {
|
||||||
|
versionTbl: LocalForage;
|
||||||
|
deleteHistoryTbl: LocalForage;
|
||||||
|
syncMappingTbl: LocalForage;
|
||||||
|
syncPlansTbl: LocalForage;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const prepareDBs = async () => {
|
export const prepareDBs = async () => {
|
||||||
const schemaBuilder = lf.schema.create(DEFAULT_DB_NAME, 1);
|
const db = {
|
||||||
schemaBuilder
|
versionTbl: localforage.createInstance({
|
||||||
.createTable(DEFAULT_TBL_DELETE_HISTORY)
|
name: DEFAULT_DB_NAME,
|
||||||
.addColumn("id", lf.Type.INTEGER)
|
storeName: DEFAULT_TBL_VERSION,
|
||||||
.addColumn("key", lf.Type.STRING)
|
}),
|
||||||
.addColumn("ctime", lf.Type.INTEGER)
|
deleteHistoryTbl: localforage.createInstance({
|
||||||
.addColumn("mtime", lf.Type.INTEGER)
|
name: DEFAULT_DB_NAME,
|
||||||
.addColumn("size", lf.Type.INTEGER)
|
storeName: DEFAULT_TBL_DELETE_HISTORY,
|
||||||
.addColumn("action_when", lf.Type.INTEGER)
|
}),
|
||||||
.addColumn("action_type", lf.Type.STRING)
|
syncMappingTbl: localforage.createInstance({
|
||||||
.addColumn("key_type", lf.Type.STRING)
|
name: DEFAULT_DB_NAME,
|
||||||
.addPrimaryKey(["id"], true)
|
storeName: DEFAULT_TBL_SYNC_MAPPING,
|
||||||
.addIndex("idxKey", ["key"]);
|
}),
|
||||||
|
syncPlansTbl: localforage.createInstance({
|
||||||
|
name: DEFAULT_DB_NAME,
|
||||||
|
storeName: DEFAULT_SYNC_PLANS_HISTORY,
|
||||||
|
}),
|
||||||
|
} as InternalDBs;
|
||||||
|
|
||||||
schemaBuilder
|
const originalVersion = (await db.versionTbl.getItem("version")) as number;
|
||||||
.createTable(DEFAULT_TBL_SYNC_MAPPING)
|
if (originalVersion === null) {
|
||||||
.addColumn("id", lf.Type.INTEGER)
|
await db.versionTbl.setItem("version", DEFAULT_DB_VERSION_NUMBER);
|
||||||
.addColumn("local_key", lf.Type.STRING)
|
} else if (originalVersion === DEFAULT_DB_VERSION_NUMBER) {
|
||||||
.addColumn("remote_key", lf.Type.STRING)
|
// do nothing
|
||||||
.addColumn("local_size", lf.Type.INTEGER)
|
} else {
|
||||||
.addColumn("remote_size", lf.Type.INTEGER)
|
await migrateDBs(db, originalVersion, DEFAULT_DB_VERSION_NUMBER);
|
||||||
.addColumn("local_mtime", lf.Type.INTEGER)
|
}
|
||||||
.addColumn("remote_mtime", lf.Type.INTEGER)
|
|
||||||
.addColumn("key_type", lf.Type.STRING)
|
|
||||||
.addColumn("remote_extra_key", lf.Type.STRING)
|
|
||||||
.addColumn("remote_type", lf.Type.STRING)
|
|
||||||
.addNullable([
|
|
||||||
"remote_extra_key",
|
|
||||||
"remote_mtime",
|
|
||||||
"remote_size",
|
|
||||||
"local_mtime",
|
|
||||||
])
|
|
||||||
.addPrimaryKey(["id"], true)
|
|
||||||
.addIndex("idxkey", ["local_key", "remote_key"]);
|
|
||||||
|
|
||||||
const db = await schemaBuilder.connect({
|
|
||||||
storeType: lf.DataStoreType.INDEXED_DB,
|
|
||||||
});
|
|
||||||
console.log("db connected");
|
console.log("db connected");
|
||||||
return db;
|
return db;
|
||||||
};
|
};
|
||||||
|
|
||||||
export const destroyDBs = async (db: lf.DatabaseConnection) => {
|
export const destroyDBs = async () => {
|
||||||
db.close();
|
// await localforage.dropInstance({
|
||||||
|
// name: DEFAULT_DB_NAME,
|
||||||
|
// });
|
||||||
|
// console.log("db deleted");
|
||||||
const req = indexedDB.deleteDatabase(DEFAULT_DB_NAME);
|
const req = indexedDB.deleteDatabase(DEFAULT_DB_NAME);
|
||||||
req.onsuccess = (event) => {
|
req.onsuccess = (event) => {
|
||||||
console.log("db deleted");
|
console.log("db deleted");
|
||||||
@@ -90,37 +100,34 @@ export const destroyDBs = async (db: lf.DatabaseConnection) => {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
export const loadDeleteRenameHistoryTable = async (
|
const migrateDBs = async (db: InternalDBs, oldVer: number, newVer: number) => {
|
||||||
db: lf.DatabaseConnection
|
if (oldVer === newVer) {
|
||||||
) => {
|
return;
|
||||||
const schema = db.getSchema().table(DEFAULT_TBL_DELETE_HISTORY);
|
}
|
||||||
const tbl = db.getSchema().table(DEFAULT_TBL_DELETE_HISTORY);
|
// not implemented
|
||||||
|
throw Error(`not supported internal db changes from ${oldVer} to ${newVer}`);
|
||||||
|
};
|
||||||
|
|
||||||
const records = await db
|
export const loadDeleteRenameHistoryTable = async (db: InternalDBs) => {
|
||||||
.select()
|
const records = [] as FileFolderHistoryRecord[];
|
||||||
.from(schema)
|
await db.deleteHistoryTbl.iterate((value, key, iterationNumber) => {
|
||||||
.orderBy(schema.col("action_when"), lf.Order.ASC)
|
records.push(value as FileFolderHistoryRecord);
|
||||||
.exec();
|
});
|
||||||
|
records.sort((a, b) => a.actionWhen - b.actionWhen); // ascending
|
||||||
return records as FileFolderHistoryRecord[];
|
return records;
|
||||||
};
|
};
|
||||||
|
|
||||||
export const clearDeleteRenameHistoryOfKey = async (
|
export const clearDeleteRenameHistoryOfKey = async (
|
||||||
db: lf.DatabaseConnection,
|
db: InternalDBs,
|
||||||
key: string
|
key: string
|
||||||
) => {
|
) => {
|
||||||
const schema = db.getSchema().table(DEFAULT_TBL_DELETE_HISTORY);
|
await db.deleteHistoryTbl.removeItem(key);
|
||||||
const tbl = db.getSchema().table(DEFAULT_TBL_DELETE_HISTORY);
|
|
||||||
|
|
||||||
await db.delete().from(tbl).where(tbl.col("key").eq(key)).exec();
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export const insertDeleteRecord = async (
|
export const insertDeleteRecord = async (
|
||||||
db: lf.DatabaseConnection,
|
db: InternalDBs,
|
||||||
fileOrFolder: TAbstractFile
|
fileOrFolder: TAbstractFile
|
||||||
) => {
|
) => {
|
||||||
const schema = db.getSchema().table(DEFAULT_TBL_DELETE_HISTORY);
|
|
||||||
const tbl = db.getSchema().table(DEFAULT_TBL_DELETE_HISTORY);
|
|
||||||
// console.log(fileOrFolder);
|
// console.log(fileOrFolder);
|
||||||
let k: FileFolderHistoryRecord;
|
let k: FileFolderHistoryRecord;
|
||||||
if (fileOrFolder instanceof TFile) {
|
if (fileOrFolder instanceof TFile) {
|
||||||
@@ -129,10 +136,10 @@ export const insertDeleteRecord = async (
|
|||||||
ctime: fileOrFolder.stat.ctime,
|
ctime: fileOrFolder.stat.ctime,
|
||||||
mtime: fileOrFolder.stat.mtime,
|
mtime: fileOrFolder.stat.mtime,
|
||||||
size: fileOrFolder.stat.size,
|
size: fileOrFolder.stat.size,
|
||||||
action_when: Date.now(),
|
actionWhen: Date.now(),
|
||||||
action_type: "delete",
|
actionType: "delete",
|
||||||
key_type: "file",
|
keyType: "file",
|
||||||
rename_to: "",
|
renameTo: "",
|
||||||
};
|
};
|
||||||
} else if (fileOrFolder instanceof TFolder) {
|
} else if (fileOrFolder instanceof TFolder) {
|
||||||
// key should endswith "/"
|
// key should endswith "/"
|
||||||
@@ -144,23 +151,20 @@ export const insertDeleteRecord = async (
|
|||||||
ctime: 0,
|
ctime: 0,
|
||||||
mtime: 0,
|
mtime: 0,
|
||||||
size: 0,
|
size: 0,
|
||||||
action_when: Date.now(),
|
actionWhen: Date.now(),
|
||||||
action_type: "delete",
|
actionType: "delete",
|
||||||
key_type: "folder",
|
keyType: "folder",
|
||||||
rename_to: "",
|
renameTo: "",
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
const row = tbl.createRow(k);
|
await db.deleteHistoryTbl.setItem(k.key, k);
|
||||||
await db.insertOrReplace().into(tbl).values([row]).exec();
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export const insertRenameRecord = async (
|
export const insertRenameRecord = async (
|
||||||
db: lf.DatabaseConnection,
|
db: InternalDBs,
|
||||||
fileOrFolder: TAbstractFile,
|
fileOrFolder: TAbstractFile,
|
||||||
oldPath: string
|
oldPath: string
|
||||||
) => {
|
) => {
|
||||||
const schema = db.getSchema().table(DEFAULT_TBL_DELETE_HISTORY);
|
|
||||||
const tbl = db.getSchema().table(DEFAULT_TBL_DELETE_HISTORY);
|
|
||||||
// console.log(fileOrFolder);
|
// console.log(fileOrFolder);
|
||||||
let k: FileFolderHistoryRecord;
|
let k: FileFolderHistoryRecord;
|
||||||
if (fileOrFolder instanceof TFile) {
|
if (fileOrFolder instanceof TFile) {
|
||||||
@@ -169,10 +173,10 @@ export const insertRenameRecord = async (
|
|||||||
ctime: fileOrFolder.stat.ctime,
|
ctime: fileOrFolder.stat.ctime,
|
||||||
mtime: fileOrFolder.stat.mtime,
|
mtime: fileOrFolder.stat.mtime,
|
||||||
size: fileOrFolder.stat.size,
|
size: fileOrFolder.stat.size,
|
||||||
action_when: Date.now(),
|
actionWhen: Date.now(),
|
||||||
action_type: "rename",
|
actionType: "rename",
|
||||||
key_type: "file",
|
keyType: "file",
|
||||||
rename_to: fileOrFolder.path,
|
renameTo: fileOrFolder.path,
|
||||||
};
|
};
|
||||||
} else if (fileOrFolder instanceof TFolder) {
|
} else if (fileOrFolder instanceof TFolder) {
|
||||||
const key = oldPath.endsWith("/") ? oldPath : `${oldPath}/`;
|
const key = oldPath.endsWith("/") ? oldPath : `${oldPath}/`;
|
||||||
@@ -184,25 +188,18 @@ export const insertRenameRecord = async (
|
|||||||
ctime: 0,
|
ctime: 0,
|
||||||
mtime: 0,
|
mtime: 0,
|
||||||
size: 0,
|
size: 0,
|
||||||
action_when: Date.now(),
|
actionWhen: Date.now(),
|
||||||
action_type: "rename",
|
actionType: "rename",
|
||||||
key_type: "folder",
|
keyType: "folder",
|
||||||
rename_to: renameTo,
|
renameTo: renameTo,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
const row = tbl.createRow(k);
|
await db.deleteHistoryTbl.setItem(k.key, k);
|
||||||
await db.insertOrReplace().into(tbl).values([row]).exec();
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export const getAllDeleteRenameRecords = async (db: lf.DatabaseConnection) => {
|
export const upsertSyncMetaMappingData = async (
|
||||||
const schema = db.getSchema().table(DEFAULT_TBL_DELETE_HISTORY);
|
serviceType: SUPPORTED_SERVICES_TYPE,
|
||||||
const res1 = await db.select().from(schema).exec();
|
db: InternalDBs,
|
||||||
const res2 = res1 as FileFolderHistoryRecord[];
|
|
||||||
return res2;
|
|
||||||
};
|
|
||||||
|
|
||||||
export const upsertSyncMetaMappingDataS3 = async (
|
|
||||||
db: lf.DatabaseConnection,
|
|
||||||
localKey: string,
|
localKey: string,
|
||||||
localMTime: number,
|
localMTime: number,
|
||||||
localSize: number,
|
localSize: number,
|
||||||
@@ -211,50 +208,79 @@ export const upsertSyncMetaMappingDataS3 = async (
|
|||||||
remoteSize: number,
|
remoteSize: number,
|
||||||
remoteExtraKey: string /* ETag from s3 */
|
remoteExtraKey: string /* ETag from s3 */
|
||||||
) => {
|
) => {
|
||||||
const schema = db.getSchema().table(DEFAULT_TBL_SYNC_MAPPING);
|
|
||||||
const aggregratedInfo: SyncMetaMappingRecord = {
|
const aggregratedInfo: SyncMetaMappingRecord = {
|
||||||
local_key: localKey,
|
localKey: localKey,
|
||||||
local_mtime: localMTime,
|
localMtime: localMTime,
|
||||||
local_size: localSize,
|
localSize: localSize,
|
||||||
remote_key: remoteKey,
|
remoteKey: remoteKey,
|
||||||
remote_mtime: remoteMTime,
|
remoteMtime: remoteMTime,
|
||||||
remote_size: remoteSize,
|
remoteSize: remoteSize,
|
||||||
remote_extra_key: remoteExtraKey,
|
remoteExtraKey: remoteExtraKey,
|
||||||
remote_type: "s3",
|
remoteType: serviceType,
|
||||||
key_type: localKey.endsWith("/") ? "folder" : "file",
|
keyType: localKey.endsWith("/") ? "folder" : "file",
|
||||||
};
|
};
|
||||||
const row = schema.createRow(aggregratedInfo);
|
await db.syncMappingTbl.setItem(remoteKey, aggregratedInfo);
|
||||||
await db.insertOrReplace().into(schema).values([row]).exec();
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export const getSyncMetaMappingByRemoteKeyS3 = async (
|
export const getSyncMetaMappingByRemoteKey = async (
|
||||||
db: lf.DatabaseConnection,
|
serviceType: SUPPORTED_SERVICES_TYPE,
|
||||||
|
db: InternalDBs,
|
||||||
remoteKey: string,
|
remoteKey: string,
|
||||||
remoteMTime: number,
|
remoteMTime: number,
|
||||||
remoteExtraKey: string
|
remoteExtraKey: string
|
||||||
) => {
|
) => {
|
||||||
const schema = db.getSchema().table(DEFAULT_TBL_SYNC_MAPPING);
|
const potentialItem = (await db.syncMappingTbl.getItem(
|
||||||
const tbl = db.getSchema().table(DEFAULT_TBL_SYNC_MAPPING);
|
remoteKey
|
||||||
const res = (await db
|
)) as SyncMetaMappingRecord;
|
||||||
.select()
|
|
||||||
.from(tbl)
|
|
||||||
.where(
|
|
||||||
lf.op.and(
|
|
||||||
tbl.col("remote_key").eq(remoteKey),
|
|
||||||
tbl.col("remote_mtime").eq(remoteMTime),
|
|
||||||
tbl.col("remote_extra_key").eq(remoteExtraKey),
|
|
||||||
tbl.col("remote_type").eq("s3")
|
|
||||||
)
|
|
||||||
)
|
|
||||||
.exec()) as SyncMetaMappingRecord[];
|
|
||||||
|
|
||||||
if (res.length === 1) {
|
if (potentialItem === null) {
|
||||||
return res[0];
|
// no result was found
|
||||||
}
|
|
||||||
|
|
||||||
if (res.length === 0) {
|
|
||||||
return undefined;
|
return undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
throw Error("something bad in sync meta mapping!");
|
if (
|
||||||
|
potentialItem.remoteKey === remoteKey &&
|
||||||
|
potentialItem.remoteMtime === remoteMTime &&
|
||||||
|
potentialItem.remoteExtraKey === remoteExtraKey &&
|
||||||
|
potentialItem.remoteType === serviceType
|
||||||
|
) {
|
||||||
|
// the result was found
|
||||||
|
return potentialItem;
|
||||||
|
} else {
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
export const clearAllSyncMetaMapping = async (db: InternalDBs) => {
|
||||||
|
await db.syncMappingTbl.clear();
|
||||||
|
};
|
||||||
|
|
||||||
|
export const insertSyncPlanRecord = async (
|
||||||
|
db: InternalDBs,
|
||||||
|
syncPlan: SyncPlanType
|
||||||
|
) => {
|
||||||
|
const record = {
|
||||||
|
ts: syncPlan.ts,
|
||||||
|
remoteType: syncPlan.remoteType,
|
||||||
|
syncPlan: JSON.stringify(syncPlan /* directly stringify */, null, 2),
|
||||||
|
} as SyncPlanRecord;
|
||||||
|
await db.syncPlansTbl.setItem(`${syncPlan.ts}`, record);
|
||||||
|
};
|
||||||
|
|
||||||
|
export const clearAllSyncPlanRecords = async (db: InternalDBs) => {
|
||||||
|
await db.syncPlansTbl.clear();
|
||||||
|
};
|
||||||
|
|
||||||
|
export const readAllSyncPlanRecordTexts = async (db: InternalDBs) => {
|
||||||
|
const records = [] as SyncPlanRecord[];
|
||||||
|
await db.syncPlansTbl.iterate((value, key, iterationNumber) => {
|
||||||
|
records.push(value as SyncPlanRecord);
|
||||||
|
});
|
||||||
|
records.sort((a, b) => -(a.ts - b.ts)); // descending
|
||||||
|
|
||||||
|
if (records === undefined) {
|
||||||
|
return [] as string[];
|
||||||
|
} else {
|
||||||
|
return records.map((x) => x.syncPlan);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
+483
-77
@@ -11,36 +11,50 @@ import {
|
|||||||
TFolder,
|
TFolder,
|
||||||
} from "obsidian";
|
} from "obsidian";
|
||||||
import * as CodeMirror from "codemirror";
|
import * as CodeMirror from "codemirror";
|
||||||
import type { DatabaseConnection } from "./localdb";
|
|
||||||
import {
|
import {
|
||||||
prepareDBs,
|
prepareDBs,
|
||||||
destroyDBs,
|
destroyDBs,
|
||||||
loadDeleteRenameHistoryTable,
|
loadDeleteRenameHistoryTable,
|
||||||
|
clearAllSyncPlanRecords,
|
||||||
|
clearAllSyncMetaMapping,
|
||||||
insertDeleteRecord,
|
insertDeleteRecord,
|
||||||
insertRenameRecord,
|
insertRenameRecord,
|
||||||
getAllDeleteRenameRecords,
|
insertSyncPlanRecord,
|
||||||
} from "./localdb";
|
} from "./localdb";
|
||||||
|
import type { InternalDBs } from "./localdb";
|
||||||
|
|
||||||
import type { SyncStatusType } from "./sync";
|
import type { SyncStatusType, PasswordCheckType } from "./sync";
|
||||||
import { ensembleMixedStates, getOperation, doActualSync } from "./sync";
|
import { isPasswordOk, getSyncPlan, doActualSync } from "./sync";
|
||||||
import { DEFAULT_S3_CONFIG, getS3Client, listFromRemote, S3Config } from "./s3";
|
import { S3Config, DEFAULT_S3_CONFIG } from "./s3";
|
||||||
|
import { WebdavConfig, DEFAULT_WEBDAV_CONFIG, WebdavAuthType } from "./webdav";
|
||||||
|
import { RemoteClient } from "./remote";
|
||||||
|
import { exportSyncPlansToFiles } from "./debugMode";
|
||||||
|
import { SUPPORTED_SERVICES_TYPE } from "./baseTypes";
|
||||||
|
|
||||||
interface SaveRemotePluginSettings {
|
interface RemotelySavePluginSettings {
|
||||||
s3?: S3Config;
|
s3: S3Config;
|
||||||
|
webdav: WebdavConfig;
|
||||||
|
password: string;
|
||||||
|
serviceType: SUPPORTED_SERVICES_TYPE;
|
||||||
|
enableExperimentService: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
const DEFAULT_SETTINGS: SaveRemotePluginSettings = {
|
const DEFAULT_SETTINGS: RemotelySavePluginSettings = {
|
||||||
s3: DEFAULT_S3_CONFIG,
|
s3: DEFAULT_S3_CONFIG,
|
||||||
|
webdav: DEFAULT_WEBDAV_CONFIG,
|
||||||
|
password: "",
|
||||||
|
serviceType: "s3",
|
||||||
|
enableExperimentService: false,
|
||||||
};
|
};
|
||||||
|
|
||||||
export default class SaveRemotePlugin extends Plugin {
|
export default class RemotelySavePlugin extends Plugin {
|
||||||
settings: SaveRemotePluginSettings;
|
settings: RemotelySavePluginSettings;
|
||||||
cm: CodeMirror.Editor;
|
cm: CodeMirror.Editor;
|
||||||
db: DatabaseConnection;
|
db: InternalDBs;
|
||||||
syncStatus: SyncStatusType;
|
syncStatus: SyncStatusType;
|
||||||
|
|
||||||
async onload() {
|
async onload() {
|
||||||
console.log("loading plugin obsidian-save-remote");
|
console.log("loading plugin obsidian-remotely-save");
|
||||||
|
|
||||||
await this.loadSettings();
|
await this.loadSettings();
|
||||||
|
|
||||||
@@ -60,65 +74,95 @@ export default class SaveRemotePlugin extends Plugin {
|
|||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
|
||||||
// this.addRibbonIcon("dice", "Misc", async () => {
|
this.addRibbonIcon("switch", "Remotely Save", async () => {
|
||||||
// const a = this.app.vault.getAllLoadedFiles();
|
|
||||||
// console.log(a);
|
|
||||||
// const h = await getAllRecords(this.db);
|
|
||||||
// console.log(h);
|
|
||||||
// });
|
|
||||||
|
|
||||||
this.addRibbonIcon("switch", "Save Remote", async () => {
|
|
||||||
if (this.syncStatus !== "idle") {
|
if (this.syncStatus !== "idle") {
|
||||||
new Notice("Save Remote already running!");
|
new Notice(
|
||||||
|
`Remotely Save already running in stage ${this.syncStatus}!`
|
||||||
|
);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
new Notice("Save Remote Sync Preparing");
|
try {
|
||||||
this.syncStatus = "preparing";
|
//console.log(`huh ${this.settings.password}`)
|
||||||
const s3Client = getS3Client(this.settings.s3);
|
new Notice(
|
||||||
const remoteRsp = await listFromRemote(s3Client, this.settings.s3);
|
`1/6 Remotely Save Sync Preparing (${this.settings.serviceType})`
|
||||||
const local = this.app.vault.getAllLoadedFiles();
|
);
|
||||||
const localHistory = await loadDeleteRenameHistoryTable(this.db);
|
this.syncStatus = "preparing";
|
||||||
// console.log(remoteRsp);
|
|
||||||
// console.log(local);
|
|
||||||
// console.log(localHistory);
|
|
||||||
|
|
||||||
const mixedStates = await ensembleMixedStates(
|
new Notice("2/6 Starting to fetch remote meta data.");
|
||||||
remoteRsp.Contents,
|
this.syncStatus = "getting_remote_meta";
|
||||||
local,
|
const client = new RemoteClient(
|
||||||
localHistory,
|
this.settings.serviceType,
|
||||||
this.db
|
this.settings.s3,
|
||||||
);
|
this.settings.webdav
|
||||||
|
);
|
||||||
|
const remoteRsp = await client.listFromRemote();
|
||||||
|
|
||||||
for (const [key, val] of Object.entries(mixedStates)) {
|
new Notice("3/6 Starting to fetch local meta data.");
|
||||||
getOperation(val, true);
|
this.syncStatus = "getting_local_meta";
|
||||||
|
const local = this.app.vault.getAllLoadedFiles();
|
||||||
|
const localHistory = await loadDeleteRenameHistoryTable(this.db);
|
||||||
|
// console.log(remoteRsp);
|
||||||
|
// console.log(local);
|
||||||
|
// console.log(localHistory);
|
||||||
|
|
||||||
|
new Notice("4/7 Checking password correct or not.");
|
||||||
|
this.syncStatus = "checking_password";
|
||||||
|
const passwordCheckResult = await isPasswordOk(
|
||||||
|
remoteRsp.Contents,
|
||||||
|
this.settings.password
|
||||||
|
);
|
||||||
|
if (!passwordCheckResult.ok) {
|
||||||
|
new Notice("something goes wrong while checking password");
|
||||||
|
throw Error(passwordCheckResult.reason);
|
||||||
|
}
|
||||||
|
|
||||||
|
new Notice("5/7 Starting to generate sync plan.");
|
||||||
|
this.syncStatus = "generating_plan";
|
||||||
|
const syncPlan = await getSyncPlan(
|
||||||
|
remoteRsp.Contents,
|
||||||
|
local,
|
||||||
|
localHistory,
|
||||||
|
this.db,
|
||||||
|
client.serviceType,
|
||||||
|
this.settings.password
|
||||||
|
);
|
||||||
|
console.log(syncPlan.mixedStates); // for debugging
|
||||||
|
await insertSyncPlanRecord(this.db, syncPlan);
|
||||||
|
|
||||||
|
// The operations above are read only and kind of safe.
|
||||||
|
// The operations below begins to write or delete (!!!) something.
|
||||||
|
|
||||||
|
new Notice("6/7 Remotely Save Sync data exchanging!");
|
||||||
|
|
||||||
|
this.syncStatus = "syncing";
|
||||||
|
await doActualSync(
|
||||||
|
client,
|
||||||
|
this.db,
|
||||||
|
this.app.vault,
|
||||||
|
syncPlan,
|
||||||
|
this.settings.password
|
||||||
|
);
|
||||||
|
|
||||||
|
new Notice("7/7 Remotely Save finish!");
|
||||||
|
this.syncStatus = "finish";
|
||||||
|
this.syncStatus = "idle";
|
||||||
|
} catch (error) {
|
||||||
|
const msg = `Remotely Save error while ${this.syncStatus}`;
|
||||||
|
console.log(msg);
|
||||||
|
console.log(error);
|
||||||
|
new Notice(msg);
|
||||||
|
new Notice(error.message);
|
||||||
|
this.syncStatus = "idle";
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log(mixedStates);
|
|
||||||
|
|
||||||
// The operations above are read only and kind of safe.
|
|
||||||
// The operations below begins to write or delete (!!!) something.
|
|
||||||
|
|
||||||
new Notice("Save Remote Sync data exchanging!");
|
|
||||||
|
|
||||||
await doActualSync(
|
|
||||||
s3Client,
|
|
||||||
this.settings.s3,
|
|
||||||
this.db,
|
|
||||||
this.app.vault,
|
|
||||||
mixedStates
|
|
||||||
);
|
|
||||||
|
|
||||||
new Notice("Save Remote finish!");
|
|
||||||
this.syncStatus = "idle";
|
|
||||||
});
|
});
|
||||||
|
|
||||||
this.addSettingTab(new SaveRemoteSettingTab(this.app, this));
|
this.addSettingTab(new RemotelySaveSettingTab(this.app, this));
|
||||||
|
|
||||||
this.registerCodeMirror((cm: CodeMirror.Editor) => {
|
// this.registerCodeMirror((cm: CodeMirror.Editor) => {
|
||||||
this.cm = cm;
|
// this.cm = cm;
|
||||||
console.log("codemirror registered.");
|
// console.log("codemirror registered.");
|
||||||
});
|
// });
|
||||||
|
|
||||||
// this.registerDomEvent(document, "click", (evt: MouseEvent) => {
|
// this.registerDomEvent(document, "click", (evt: MouseEvent) => {
|
||||||
// console.log("click", evt);
|
// console.log("click", evt);
|
||||||
@@ -130,7 +174,7 @@ export default class SaveRemotePlugin extends Plugin {
|
|||||||
}
|
}
|
||||||
|
|
||||||
onunload() {
|
onunload() {
|
||||||
console.log("unloading plugin obsidian-save-remote");
|
console.log("unloading plugin obsidian-remotely-save");
|
||||||
this.destroyDBs();
|
this.destroyDBs();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -147,14 +191,72 @@ export default class SaveRemotePlugin extends Plugin {
|
|||||||
}
|
}
|
||||||
|
|
||||||
destroyDBs() {
|
destroyDBs() {
|
||||||
destroyDBs(this.db);
|
/* destroyDBs(this.db); */
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class SaveRemoteSettingTab extends PluginSettingTab {
|
export class PasswordModal extends Modal {
|
||||||
plugin: SaveRemotePlugin;
|
plugin: RemotelySavePlugin;
|
||||||
|
newPassword: string;
|
||||||
|
constructor(app: App, plugin: RemotelySavePlugin, newPassword: string) {
|
||||||
|
super(app);
|
||||||
|
this.plugin = plugin;
|
||||||
|
this.newPassword = newPassword;
|
||||||
|
}
|
||||||
|
|
||||||
constructor(app: App, plugin: SaveRemotePlugin) {
|
onOpen() {
|
||||||
|
let { contentEl } = this;
|
||||||
|
// contentEl.setText("Add Or change password.");
|
||||||
|
contentEl.createEl("h2", { text: "Hold on and PLEASE READ ON..." });
|
||||||
|
contentEl.createEl("p", {
|
||||||
|
text: "If the field is not empty, files are enctrypted using the password locally before sent to remote.",
|
||||||
|
});
|
||||||
|
contentEl.createEl("p", {
|
||||||
|
text: "If the field is empty, then no password is used, and files would be sent without encryption.",
|
||||||
|
});
|
||||||
|
|
||||||
|
contentEl.createEl("p", {
|
||||||
|
text: "Attention 1/4: The password itself is stored in PLAIN TEXT LOCALLY and would not be sent to remote by this plugin.",
|
||||||
|
});
|
||||||
|
contentEl.createEl("p", {
|
||||||
|
text: "Attention 2/4: Non-empty file contents are encrypted using openssl format. File/directory path are also encrypted then applied base32. BUT, some metadata such as file sizes and directory structures are not encrypted or can be easily guessed, and directory path are stored as 0-byte-size object remotely.",
|
||||||
|
});
|
||||||
|
contentEl.createEl("p", {
|
||||||
|
text: "Attention 3/4: Before changing password, you should make sure the remote store (s3/webdav/...) IS EMPTY, or REMOTE FILES WERE ENCRYPTED BY THAT NEW PASSWORD. OTHERWISE SOMETHING BAD WOULD HAPPEN!",
|
||||||
|
});
|
||||||
|
contentEl.createEl("p", {
|
||||||
|
text: "Attention 4/4: The longer the password, the better.",
|
||||||
|
});
|
||||||
|
|
||||||
|
new Setting(contentEl)
|
||||||
|
.addButton((button) => {
|
||||||
|
button.setButtonText("The Second Confirm to change password.");
|
||||||
|
button.onClick(async () => {
|
||||||
|
this.plugin.settings.password = this.newPassword;
|
||||||
|
await this.plugin.saveSettings();
|
||||||
|
new Notice("New password saved!");
|
||||||
|
this.close();
|
||||||
|
});
|
||||||
|
button.setClass("password_second_confirm");
|
||||||
|
})
|
||||||
|
.addButton((button) => {
|
||||||
|
button.setButtonText("Go Back");
|
||||||
|
button.onClick(() => {
|
||||||
|
this.close();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
onClose() {
|
||||||
|
let { contentEl } = this;
|
||||||
|
contentEl.empty();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class RemotelySaveSettingTab extends PluginSettingTab {
|
||||||
|
plugin: RemotelySavePlugin;
|
||||||
|
|
||||||
|
constructor(app: App, plugin: RemotelySavePlugin) {
|
||||||
super(app, plugin);
|
super(app, plugin);
|
||||||
this.plugin = plugin;
|
this.plugin = plugin;
|
||||||
}
|
}
|
||||||
@@ -164,9 +266,97 @@ class SaveRemoteSettingTab extends PluginSettingTab {
|
|||||||
|
|
||||||
containerEl.empty();
|
containerEl.empty();
|
||||||
|
|
||||||
containerEl.createEl("h2", { text: "Settings for Save Remote" });
|
containerEl.createEl("h1", { text: "Remotely Save" });
|
||||||
|
|
||||||
new Setting(containerEl)
|
const generalDiv = containerEl.createEl("div");
|
||||||
|
generalDiv.createEl("h2", { text: "General" });
|
||||||
|
|
||||||
|
const passwordDiv = generalDiv.createEl("div");
|
||||||
|
let newPassword = `${this.plugin.settings.password}`;
|
||||||
|
new Setting(passwordDiv)
|
||||||
|
.setName("encryption password")
|
||||||
|
.setDesc(
|
||||||
|
'Password for E2E encryption. Empty for no password. You need to click "Confirm".'
|
||||||
|
)
|
||||||
|
.addText((text) =>
|
||||||
|
text
|
||||||
|
.setPlaceholder("")
|
||||||
|
.setValue(`${this.plugin.settings.password}`)
|
||||||
|
.onChange(async (value) => {
|
||||||
|
newPassword = value.trim();
|
||||||
|
})
|
||||||
|
)
|
||||||
|
.addButton(async (button) => {
|
||||||
|
button.setButtonText("Confirm");
|
||||||
|
button.onClick(async () => {
|
||||||
|
new PasswordModal(this.app, this.plugin, newPassword).open();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
// we need to create the div in advance of s3Div and webdavDiv
|
||||||
|
const serviceChooserDiv = generalDiv.createEl("div");
|
||||||
|
|
||||||
|
serviceChooserDiv.onClickEvent((x) => {
|
||||||
|
if (x.detail === 5) {
|
||||||
|
if (this.plugin.settings.serviceType === "webdav") {
|
||||||
|
new Notice(
|
||||||
|
"You've enabled hidden unstable experimental webdav support before. Nothing changes."
|
||||||
|
);
|
||||||
|
} else if (!this.plugin.settings.enableExperimentService) {
|
||||||
|
this.plugin.settings.enableExperimentService = true;
|
||||||
|
this.plugin.saveSettings();
|
||||||
|
new Notice(
|
||||||
|
"You've enabled hidden unstable experimental webdav support. Reopen settings again and try webdav with caution."
|
||||||
|
);
|
||||||
|
} else if (this.plugin.settings.enableExperimentService) {
|
||||||
|
this.plugin.settings.enableExperimentService = false;
|
||||||
|
this.plugin.saveSettings();
|
||||||
|
new Notice(
|
||||||
|
"You've disabled hidden unstable experimental webdav support. Reopen settings again."
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
const s3Div = containerEl.createEl("div", { cls: "s3-hide" });
|
||||||
|
s3Div.toggleClass("s3-hide", this.plugin.settings.serviceType !== "s3");
|
||||||
|
s3Div.createEl("h2", { text: "S3 (-compatible) Service" });
|
||||||
|
|
||||||
|
s3Div.createEl("p", {
|
||||||
|
text: "You can use Amazon S3 or another S3-compatible service to sync your vault. Enter your bucket information below.",
|
||||||
|
});
|
||||||
|
|
||||||
|
s3Div.createEl("p", {
|
||||||
|
text: "Disclaimer: The infomation is stored in PLAIN TEXT locally. Other malicious/harmful/faulty plugins may or may not be able to read the info. If you see any unintentional access to your S3 bucket, please immediately delete the access key to stop further accessment.",
|
||||||
|
cls: "s3-disclaimer",
|
||||||
|
});
|
||||||
|
|
||||||
|
s3Div.createEl("p", {
|
||||||
|
text: "You need to configure CORS to allow requests from origin app://obsidian.md and capacitor://localhost and http://localhost",
|
||||||
|
});
|
||||||
|
|
||||||
|
s3Div.createEl("p", {
|
||||||
|
text: "Some Amazon S3 official docs:",
|
||||||
|
});
|
||||||
|
|
||||||
|
const s3LinksUl = s3Div.createEl("div").createEl("ul");
|
||||||
|
|
||||||
|
s3LinksUl.createEl("li").createEl("a", {
|
||||||
|
href: "https://docs.aws.amazon.com/general/latest/gr/s3.html",
|
||||||
|
text: "Endpoint and region info",
|
||||||
|
});
|
||||||
|
|
||||||
|
s3LinksUl.createEl("li").createEl("a", {
|
||||||
|
href: "https://docs.aws.amazon.com/sdk-for-javascript/v3/developer-guide/getting-your-credentials.html",
|
||||||
|
text: "Access key ID and Secret access key info",
|
||||||
|
});
|
||||||
|
|
||||||
|
s3LinksUl.createEl("li").createEl("a", {
|
||||||
|
href: "https://docs.aws.amazon.com/AmazonS3/latest/userguide/enabling-cors-examples.html",
|
||||||
|
text: "Configuring CORS",
|
||||||
|
});
|
||||||
|
|
||||||
|
new Setting(s3Div)
|
||||||
.setName("s3Endpoint")
|
.setName("s3Endpoint")
|
||||||
.setDesc("s3Endpoint")
|
.setDesc("s3Endpoint")
|
||||||
.addText((text) =>
|
.addText((text) =>
|
||||||
@@ -174,12 +364,12 @@ class SaveRemoteSettingTab extends PluginSettingTab {
|
|||||||
.setPlaceholder("")
|
.setPlaceholder("")
|
||||||
.setValue(this.plugin.settings.s3.s3Endpoint)
|
.setValue(this.plugin.settings.s3.s3Endpoint)
|
||||||
.onChange(async (value) => {
|
.onChange(async (value) => {
|
||||||
this.plugin.settings.s3.s3Endpoint = value;
|
this.plugin.settings.s3.s3Endpoint = value.trim();
|
||||||
await this.plugin.saveSettings();
|
await this.plugin.saveSettings();
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
|
||||||
new Setting(containerEl)
|
new Setting(s3Div)
|
||||||
.setName("s3Region")
|
.setName("s3Region")
|
||||||
.setDesc("s3Region")
|
.setDesc("s3Region")
|
||||||
.addText((text) =>
|
.addText((text) =>
|
||||||
@@ -187,12 +377,12 @@ class SaveRemoteSettingTab extends PluginSettingTab {
|
|||||||
.setPlaceholder("")
|
.setPlaceholder("")
|
||||||
.setValue(`${this.plugin.settings.s3.s3Region}`)
|
.setValue(`${this.plugin.settings.s3.s3Region}`)
|
||||||
.onChange(async (value) => {
|
.onChange(async (value) => {
|
||||||
this.plugin.settings.s3.s3Region = value;
|
this.plugin.settings.s3.s3Region = value.trim();
|
||||||
await this.plugin.saveSettings();
|
await this.plugin.saveSettings();
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
|
||||||
new Setting(containerEl)
|
new Setting(s3Div)
|
||||||
.setName("s3AccessKeyID")
|
.setName("s3AccessKeyID")
|
||||||
.setDesc("s3AccessKeyID")
|
.setDesc("s3AccessKeyID")
|
||||||
.addText((text) =>
|
.addText((text) =>
|
||||||
@@ -200,12 +390,12 @@ class SaveRemoteSettingTab extends PluginSettingTab {
|
|||||||
.setPlaceholder("")
|
.setPlaceholder("")
|
||||||
.setValue(`${this.plugin.settings.s3.s3AccessKeyID}`)
|
.setValue(`${this.plugin.settings.s3.s3AccessKeyID}`)
|
||||||
.onChange(async (value) => {
|
.onChange(async (value) => {
|
||||||
this.plugin.settings.s3.s3AccessKeyID = value;
|
this.plugin.settings.s3.s3AccessKeyID = value.trim();
|
||||||
await this.plugin.saveSettings();
|
await this.plugin.saveSettings();
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
|
||||||
new Setting(containerEl)
|
new Setting(s3Div)
|
||||||
.setName("s3SecretAccessKey")
|
.setName("s3SecretAccessKey")
|
||||||
.setDesc("s3SecretAccessKey")
|
.setDesc("s3SecretAccessKey")
|
||||||
.addText((text) =>
|
.addText((text) =>
|
||||||
@@ -213,12 +403,12 @@ class SaveRemoteSettingTab extends PluginSettingTab {
|
|||||||
.setPlaceholder("")
|
.setPlaceholder("")
|
||||||
.setValue(`${this.plugin.settings.s3.s3SecretAccessKey}`)
|
.setValue(`${this.plugin.settings.s3.s3SecretAccessKey}`)
|
||||||
.onChange(async (value) => {
|
.onChange(async (value) => {
|
||||||
this.plugin.settings.s3.s3SecretAccessKey = value;
|
this.plugin.settings.s3.s3SecretAccessKey = value.trim();
|
||||||
await this.plugin.saveSettings();
|
await this.plugin.saveSettings();
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
|
||||||
new Setting(containerEl)
|
new Setting(s3Div)
|
||||||
.setName("s3BucketName")
|
.setName("s3BucketName")
|
||||||
.setDesc("s3BucketName")
|
.setDesc("s3BucketName")
|
||||||
.addText((text) =>
|
.addText((text) =>
|
||||||
@@ -226,9 +416,225 @@ class SaveRemoteSettingTab extends PluginSettingTab {
|
|||||||
.setPlaceholder("")
|
.setPlaceholder("")
|
||||||
.setValue(`${this.plugin.settings.s3.s3BucketName}`)
|
.setValue(`${this.plugin.settings.s3.s3BucketName}`)
|
||||||
.onChange(async (value) => {
|
.onChange(async (value) => {
|
||||||
this.plugin.settings.s3.s3BucketName = value;
|
this.plugin.settings.s3.s3BucketName = value.trim();
|
||||||
await this.plugin.saveSettings();
|
await this.plugin.saveSettings();
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
|
||||||
|
new Setting(s3Div)
|
||||||
|
.setName("check connectivity")
|
||||||
|
.setDesc("check connectivity")
|
||||||
|
.addButton(async (button) => {
|
||||||
|
button.setButtonText("Check");
|
||||||
|
button.onClick(async () => {
|
||||||
|
new Notice("Checking...");
|
||||||
|
const client = new RemoteClient(
|
||||||
|
"s3",
|
||||||
|
this.plugin.settings.s3,
|
||||||
|
undefined
|
||||||
|
);
|
||||||
|
const res = await client.checkConnectivity();
|
||||||
|
if (res) {
|
||||||
|
new Notice("Great! The bucket can be accessed.");
|
||||||
|
} else {
|
||||||
|
new Notice("The S3 bucket cannot be reached.");
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
const webdavDiv = containerEl.createEl("div", { cls: "webdav-hide" });
|
||||||
|
webdavDiv.toggleClass(
|
||||||
|
"webdav-hide",
|
||||||
|
this.plugin.settings.serviceType !== "webdav"
|
||||||
|
);
|
||||||
|
|
||||||
|
webdavDiv.createEl("h2", { text: "Webdav Service" });
|
||||||
|
|
||||||
|
webdavDiv.createEl("p", {
|
||||||
|
text: "Disclaimer: Webdav functions are more experimental, and s3 functions are more stable now.",
|
||||||
|
cls: "webdav-disclaimer",
|
||||||
|
});
|
||||||
|
|
||||||
|
webdavDiv.createEl("p", {
|
||||||
|
text: "Disclaimer: The infomation is stored in PLAIN TEXT locally. Other malicious/harmful/faulty plugins may or may not be able to read the info. If you see any unintentional access to your webdav server, please immediately change the username and/or password to stop further accessment.",
|
||||||
|
cls: "webdav-disclaimer",
|
||||||
|
});
|
||||||
|
|
||||||
|
webdavDiv.createEl("p", {
|
||||||
|
text: "You need to configure CORS to allow requests from origin app://obsidian.md and capacitor://localhost and http://localhost",
|
||||||
|
});
|
||||||
|
|
||||||
|
new Setting(webdavDiv)
|
||||||
|
.setName("server address")
|
||||||
|
.setDesc("server address")
|
||||||
|
.addText((text) =>
|
||||||
|
text
|
||||||
|
.setPlaceholder("")
|
||||||
|
.setValue(this.plugin.settings.webdav.address)
|
||||||
|
.onChange(async (value) => {
|
||||||
|
this.plugin.settings.webdav.address = value.trim();
|
||||||
|
await this.plugin.saveSettings();
|
||||||
|
})
|
||||||
|
);
|
||||||
|
|
||||||
|
new Setting(webdavDiv)
|
||||||
|
.setName("server username")
|
||||||
|
.setDesc("server username")
|
||||||
|
.addText((text) =>
|
||||||
|
text
|
||||||
|
.setPlaceholder("")
|
||||||
|
.setValue(this.plugin.settings.webdav.username)
|
||||||
|
.onChange(async (value) => {
|
||||||
|
this.plugin.settings.webdav.username = value.trim();
|
||||||
|
await this.plugin.saveSettings();
|
||||||
|
})
|
||||||
|
);
|
||||||
|
|
||||||
|
new Setting(webdavDiv)
|
||||||
|
.setName("server password")
|
||||||
|
.setDesc("server password")
|
||||||
|
.addText((text) =>
|
||||||
|
text
|
||||||
|
.setPlaceholder("")
|
||||||
|
.setValue(this.plugin.settings.webdav.password)
|
||||||
|
.onChange(async (value) => {
|
||||||
|
this.plugin.settings.webdav.password = value.trim();
|
||||||
|
await this.plugin.saveSettings();
|
||||||
|
})
|
||||||
|
);
|
||||||
|
|
||||||
|
new Setting(webdavDiv)
|
||||||
|
.setName("server auth type")
|
||||||
|
.setDesc(
|
||||||
|
"Server auth type. If you do not set password, this option would be ignored."
|
||||||
|
)
|
||||||
|
.addDropdown((dropdown) => {
|
||||||
|
dropdown.addOption("basic", "basic");
|
||||||
|
dropdown.addOption("digest", "digest");
|
||||||
|
|
||||||
|
dropdown
|
||||||
|
.setValue(this.plugin.settings.webdav.authType)
|
||||||
|
.onChange(async (val: WebdavAuthType) => {
|
||||||
|
this.plugin.settings.webdav.authType = val;
|
||||||
|
await this.plugin.saveSettings();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
new Setting(webdavDiv)
|
||||||
|
.setName("check connectivity")
|
||||||
|
.setDesc("check connectivity")
|
||||||
|
.addButton(async (button) => {
|
||||||
|
button.setButtonText("Check");
|
||||||
|
button.onClick(async () => {
|
||||||
|
new Notice("Checking...");
|
||||||
|
const client = new RemoteClient(
|
||||||
|
"webdav",
|
||||||
|
undefined,
|
||||||
|
this.plugin.settings.webdav
|
||||||
|
);
|
||||||
|
const res = await client.checkConnectivity();
|
||||||
|
if (res) {
|
||||||
|
new Notice("Great! The webdav server can be accessed.");
|
||||||
|
} else {
|
||||||
|
new Notice("The webdav server cannot be reached.");
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
// we need to create chooser
|
||||||
|
// after s3Div and webdavDiv being created
|
||||||
|
new Setting(serviceChooserDiv)
|
||||||
|
.setName("Choose service")
|
||||||
|
.setDesc("Choose a service, by default s3")
|
||||||
|
.addDropdown(async (dropdown) => {
|
||||||
|
const currService = this.plugin.settings.serviceType;
|
||||||
|
const enableExperimentService =
|
||||||
|
this.plugin.settings.enableExperimentService;
|
||||||
|
|
||||||
|
dropdown.addOption("s3", "s3 (-compatible)");
|
||||||
|
if (currService === "webdav" || enableExperimentService) {
|
||||||
|
dropdown.addOption("webdav", "webdav (experimental)");
|
||||||
|
if (!enableExperimentService) {
|
||||||
|
this.plugin.settings.enableExperimentService = true;
|
||||||
|
await this.plugin.saveSettings();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
dropdown
|
||||||
|
.setValue(this.plugin.settings.serviceType)
|
||||||
|
.onChange(async (val: SUPPORTED_SERVICES_TYPE) => {
|
||||||
|
this.plugin.settings.serviceType = val;
|
||||||
|
s3Div.toggleClass(
|
||||||
|
"s3-hide",
|
||||||
|
this.plugin.settings.serviceType !== "s3"
|
||||||
|
);
|
||||||
|
webdavDiv.toggleClass(
|
||||||
|
"webdav-hide",
|
||||||
|
this.plugin.settings.serviceType !== "webdav"
|
||||||
|
);
|
||||||
|
await this.plugin.saveSettings();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
const debugDiv = containerEl.createEl("div");
|
||||||
|
debugDiv.createEl("h2", { text: "Debug" });
|
||||||
|
const syncPlanDiv = debugDiv.createEl("div");
|
||||||
|
syncPlanDiv.createEl("p", {
|
||||||
|
text: "Sync plans are created every time after you trigger sync and before the actual sync. Useful to know what would actually happen in those sync.",
|
||||||
|
});
|
||||||
|
|
||||||
|
new Setting(syncPlanDiv)
|
||||||
|
.setName("export sync plans")
|
||||||
|
.setDesc("export sync plans")
|
||||||
|
.addButton(async (button) => {
|
||||||
|
button.setButtonText("Export");
|
||||||
|
button.onClick(async () => {
|
||||||
|
await exportSyncPlansToFiles(this.plugin.db, this.app.vault);
|
||||||
|
new Notice("sync plans history exported");
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
new Setting(syncPlanDiv)
|
||||||
|
.setName("delete sync plans history in db")
|
||||||
|
.setDesc("delete sync plans history in db")
|
||||||
|
.addButton(async (button) => {
|
||||||
|
button.setButtonText("Delete History");
|
||||||
|
button.onClick(async () => {
|
||||||
|
await clearAllSyncPlanRecords(this.plugin.db);
|
||||||
|
new Notice("sync plans history (in db) deleted");
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
const syncMappingDiv = debugDiv.createEl("div");
|
||||||
|
syncMappingDiv.createEl("p", {
|
||||||
|
text: "Sync mappings history stores the actual LOCAL last modified time of the REMOTE objects. Clearing it may cause unnecessary data exchanges in next-time sync.",
|
||||||
|
});
|
||||||
|
|
||||||
|
new Setting(syncMappingDiv)
|
||||||
|
.setName("delete sync mappings history in db")
|
||||||
|
.setDesc("delete sync mappings history in db")
|
||||||
|
.addButton(async (button) => {
|
||||||
|
button.setButtonText("Delete Sync Mappings");
|
||||||
|
button.onClick(async () => {
|
||||||
|
await clearAllSyncMetaMapping(this.plugin.db);
|
||||||
|
new Notice("sync mappings history (in local db) deleted");
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
const dbsResetDiv = debugDiv.createEl("div");
|
||||||
|
syncMappingDiv.createEl("p", {
|
||||||
|
text: "Reset local internal caches/databases (for debugging purposes). You would want to reload the plugin after resetting this. This option will not empty the {s3, password...} settings.",
|
||||||
|
});
|
||||||
|
new Setting(syncMappingDiv)
|
||||||
|
.setName("reset local internal cache/databases")
|
||||||
|
.setDesc("reset local internal cache/databases")
|
||||||
|
.addButton(async (button) => {
|
||||||
|
button.setButtonText("Reset");
|
||||||
|
button.onClick(async () => {
|
||||||
|
await destroyDBs();
|
||||||
|
new Notice(
|
||||||
|
"Local internal cache/databases deleted. Please manually reload the plugin."
|
||||||
|
);
|
||||||
|
});
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+98
-5
@@ -1,11 +1,31 @@
|
|||||||
import { Vault } from "obsidian";
|
import { Vault } from "obsidian";
|
||||||
import * as path from "path";
|
import * as path from "path";
|
||||||
|
|
||||||
export type SUPPORTED_SERVICES_TYPE = "s3" | "webdav" | "ftp";
|
import { base32 } from "rfc4648";
|
||||||
|
import XRegExp from "xregexp";
|
||||||
|
|
||||||
export const ignoreHiddenFiles = (item: string) => {
|
/**
|
||||||
const basename = path.basename(item);
|
* If any part of the file starts with '.' or '_' then it's a hidden file.
|
||||||
return basename === "." || basename[0] !== ".";
|
* @param item
|
||||||
|
* @param loose
|
||||||
|
* @returns
|
||||||
|
*/
|
||||||
|
export const isHiddenPath = (item: string, loose: boolean = true) => {
|
||||||
|
const k = path.posix.normalize(item); // TODO: only unix path now
|
||||||
|
const k2 = k.split("/"); // TODO: only unix path now
|
||||||
|
// console.log(k2)
|
||||||
|
for (const singlePart of k2) {
|
||||||
|
if (singlePart === "." || singlePart === ".." || singlePart === "") {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (singlePart[0] === ".") {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
if (loose && singlePart[0] === "_") {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -31,9 +51,12 @@ export const getFolderLevels = (x: string) => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export const mkdirpInVault = async (thePath: string, vault: Vault) => {
|
export const mkdirpInVault = async (thePath: string, vault: Vault) => {
|
||||||
|
// console.log(thePath);
|
||||||
const foldersToBuild = getFolderLevels(thePath);
|
const foldersToBuild = getFolderLevels(thePath);
|
||||||
|
// console.log(foldersToBuild);
|
||||||
for (const folder of foldersToBuild) {
|
for (const folder of foldersToBuild) {
|
||||||
const r = await vault.adapter.exists(folder);
|
const r = await vault.adapter.exists(folder);
|
||||||
|
// console.log(r);
|
||||||
if (!r) {
|
if (!r) {
|
||||||
console.log(`mkdir ${folder}`);
|
console.log(`mkdir ${folder}`);
|
||||||
await vault.adapter.mkdir(folder);
|
await vault.adapter.mkdir(folder);
|
||||||
@@ -46,6 +69,76 @@ export const mkdirpInVault = async (thePath: string, vault: Vault) => {
|
|||||||
* @param b Buffer
|
* @param b Buffer
|
||||||
* @returns ArrayBuffer
|
* @returns ArrayBuffer
|
||||||
*/
|
*/
|
||||||
export const bufferToArrayBuffer = (b: Buffer) => {
|
export const bufferToArrayBuffer = (b: Buffer | Uint8Array) => {
|
||||||
return b.buffer.slice(b.byteOffset, b.byteOffset + b.byteLength);
|
return b.buffer.slice(b.byteOffset, b.byteOffset + b.byteLength);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Simple func.
|
||||||
|
* @param b
|
||||||
|
* @returns
|
||||||
|
*/
|
||||||
|
export const arrayBufferToBuffer = (b: ArrayBuffer) => {
|
||||||
|
return Buffer.from(b);
|
||||||
|
};
|
||||||
|
|
||||||
|
export const arrayBufferToBase64 = (b: ArrayBuffer) => {
|
||||||
|
return arrayBufferToBuffer(b).toString("base64");
|
||||||
|
};
|
||||||
|
|
||||||
|
export const arrayBufferToHex = (b: ArrayBuffer) => {
|
||||||
|
return arrayBufferToBuffer(b).toString("hex");
|
||||||
|
};
|
||||||
|
|
||||||
|
export const base64ToArrayBuffer = (b64text: string) => {
|
||||||
|
return bufferToArrayBuffer(Buffer.from(b64text, "base64"));
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* https://stackoverflow.com/questions/43131242
|
||||||
|
* @param hex
|
||||||
|
* @returns
|
||||||
|
*/
|
||||||
|
export const hexStringToTypedArray = (hex: string) => {
|
||||||
|
return new Uint8Array(
|
||||||
|
hex.match(/[\da-f]{2}/gi).map(function (h) {
|
||||||
|
return parseInt(h, 16);
|
||||||
|
})
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export const base64ToBase32 = (a: string) => {
|
||||||
|
return base32.stringify(Buffer.from(a, "base64"));
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* iOS Safari could decrypt string with invalid password!
|
||||||
|
* So we need an extra way to test the decrypted result.
|
||||||
|
* One simple way is testing the result are "valid", printable chars or not.
|
||||||
|
*
|
||||||
|
* https://stackoverflow.com/questions/6198986
|
||||||
|
* https://www.regular-expressions.info/unicode.html
|
||||||
|
* Manual test shows that emojis like '🍎' match '\\p{Cs}',
|
||||||
|
* so we need to write the regrex in a form that \p{C} minus \p{Cs}
|
||||||
|
* @param a
|
||||||
|
*/
|
||||||
|
export const isVaildText = (a: string) => {
|
||||||
|
// If the regex matches, the string is invalid.
|
||||||
|
return !XRegExp("\\p{Cc}|\\p{Cf}|\\p{Co}|\\p{Cn}|\\p{Zl}|\\p{Zp}", "A").test(
|
||||||
|
a
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If input is already a folder, returns it as is;
|
||||||
|
* And if input is a file, returns its direname.
|
||||||
|
* @param a
|
||||||
|
* @returns
|
||||||
|
*/
|
||||||
|
export const getPathFolder = (a: string) => {
|
||||||
|
if (a.endsWith("/")) {
|
||||||
|
return a;
|
||||||
|
}
|
||||||
|
const b = path.posix.dirname(a);
|
||||||
|
return b.endsWith("/") ? b : `${b}/`;
|
||||||
|
};
|
||||||
|
|||||||
+151
@@ -0,0 +1,151 @@
|
|||||||
|
import { Vault } from "obsidian";
|
||||||
|
|
||||||
|
import type { SUPPORTED_SERVICES_TYPE } from "./baseTypes";
|
||||||
|
import * as s3 from "./s3";
|
||||||
|
import * as webdav from "./webdav";
|
||||||
|
|
||||||
|
export class RemoteClient {
|
||||||
|
readonly serviceType: SUPPORTED_SERVICES_TYPE;
|
||||||
|
readonly s3Client?: s3.S3Client;
|
||||||
|
readonly s3Config?: s3.S3Config;
|
||||||
|
readonly webdavClient?: webdav.WebDAVClient;
|
||||||
|
readonly webdavConfig?: webdav.WebdavConfig;
|
||||||
|
|
||||||
|
constructor(
|
||||||
|
serviceType: SUPPORTED_SERVICES_TYPE,
|
||||||
|
s3Config?: s3.S3Config,
|
||||||
|
webdavConfig?: webdav.WebdavConfig
|
||||||
|
) {
|
||||||
|
this.serviceType = serviceType;
|
||||||
|
if (serviceType === "s3") {
|
||||||
|
this.s3Config = s3Config;
|
||||||
|
this.s3Client = s3.getS3Client(s3Config);
|
||||||
|
} else if (serviceType === "webdav") {
|
||||||
|
this.webdavConfig = webdavConfig;
|
||||||
|
this.webdavClient = webdav.getWebdavClient(webdavConfig);
|
||||||
|
} else {
|
||||||
|
throw Error(`not supported service type ${this.serviceType}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
getRemoteMeta = async (fileOrFolderPath: string) => {
|
||||||
|
if (this.serviceType === "s3") {
|
||||||
|
return await s3.getRemoteMeta(
|
||||||
|
this.s3Client,
|
||||||
|
this.s3Config,
|
||||||
|
fileOrFolderPath
|
||||||
|
);
|
||||||
|
} else if (this.serviceType === "webdav") {
|
||||||
|
return await webdav.getRemoteMeta(this.webdavClient, fileOrFolderPath);
|
||||||
|
} else {
|
||||||
|
throw Error(`not supported service type ${this.serviceType}`);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
uploadToRemote = async (
|
||||||
|
fileOrFolderPath: string,
|
||||||
|
vault: Vault,
|
||||||
|
isRecursively: boolean = false,
|
||||||
|
password: string = "",
|
||||||
|
remoteEncryptedKey: string = ""
|
||||||
|
) => {
|
||||||
|
if (this.serviceType === "s3") {
|
||||||
|
return await s3.uploadToRemote(
|
||||||
|
this.s3Client,
|
||||||
|
this.s3Config,
|
||||||
|
fileOrFolderPath,
|
||||||
|
vault,
|
||||||
|
isRecursively,
|
||||||
|
password,
|
||||||
|
remoteEncryptedKey
|
||||||
|
);
|
||||||
|
} else if (this.serviceType === "webdav") {
|
||||||
|
return await webdav.uploadToRemote(
|
||||||
|
this.webdavClient,
|
||||||
|
fileOrFolderPath,
|
||||||
|
vault,
|
||||||
|
isRecursively,
|
||||||
|
password,
|
||||||
|
remoteEncryptedKey
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
throw Error(`not supported service type ${this.serviceType}`);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
listFromRemote = async (prefix?: string) => {
|
||||||
|
if (this.serviceType === "s3") {
|
||||||
|
return await s3.listFromRemote(this.s3Client, this.s3Config, prefix);
|
||||||
|
} else if (this.serviceType === "webdav") {
|
||||||
|
return await webdav.listFromRemote(this.webdavClient, prefix);
|
||||||
|
} else {
|
||||||
|
throw Error(`not supported service type ${this.serviceType}`);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
downloadFromRemote = async (
|
||||||
|
fileOrFolderPath: string,
|
||||||
|
vault: Vault,
|
||||||
|
mtime: number,
|
||||||
|
password: string = "",
|
||||||
|
remoteEncryptedKey: string = ""
|
||||||
|
) => {
|
||||||
|
if (this.serviceType === "s3") {
|
||||||
|
return await s3.downloadFromRemote(
|
||||||
|
this.s3Client,
|
||||||
|
this.s3Config,
|
||||||
|
fileOrFolderPath,
|
||||||
|
vault,
|
||||||
|
mtime,
|
||||||
|
password,
|
||||||
|
remoteEncryptedKey
|
||||||
|
);
|
||||||
|
} else if (this.serviceType === "webdav") {
|
||||||
|
return await webdav.downloadFromRemote(
|
||||||
|
this.webdavClient,
|
||||||
|
fileOrFolderPath,
|
||||||
|
vault,
|
||||||
|
mtime,
|
||||||
|
password,
|
||||||
|
remoteEncryptedKey
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
throw Error(`not supported service type ${this.serviceType}`);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
deleteFromRemote = async (
|
||||||
|
fileOrFolderPath: string,
|
||||||
|
password: string = "",
|
||||||
|
remoteEncryptedKey: string = ""
|
||||||
|
) => {
|
||||||
|
if (this.serviceType === "s3") {
|
||||||
|
return await s3.deleteFromRemote(
|
||||||
|
this.s3Client,
|
||||||
|
this.s3Config,
|
||||||
|
fileOrFolderPath,
|
||||||
|
password,
|
||||||
|
remoteEncryptedKey
|
||||||
|
);
|
||||||
|
} else if (this.serviceType === "webdav") {
|
||||||
|
return await webdav.deleteFromRemote(
|
||||||
|
this.webdavClient,
|
||||||
|
fileOrFolderPath,
|
||||||
|
password,
|
||||||
|
remoteEncryptedKey
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
throw Error(`not supported service type ${this.serviceType}`);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
checkConnectivity = async () => {
|
||||||
|
if (this.serviceType === "s3") {
|
||||||
|
return await s3.checkConnectivity(this.s3Client, this.s3Config);
|
||||||
|
} else if (this.serviceType === "webdav") {
|
||||||
|
return await webdav.checkConnectivity(this.webdavClient);
|
||||||
|
} else {
|
||||||
|
throw Error(`not supported service type ${this.serviceType}`);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -3,6 +3,7 @@ import { Readable } from "stream";
|
|||||||
|
|
||||||
import { Vault } from "obsidian";
|
import { Vault } from "obsidian";
|
||||||
|
|
||||||
|
import { Upload } from "@aws-sdk/lib-storage";
|
||||||
import {
|
import {
|
||||||
S3Client,
|
S3Client,
|
||||||
ListObjectsV2Command,
|
ListObjectsV2Command,
|
||||||
@@ -10,13 +11,25 @@ import {
|
|||||||
GetObjectCommand,
|
GetObjectCommand,
|
||||||
DeleteObjectCommand,
|
DeleteObjectCommand,
|
||||||
HeadObjectCommand,
|
HeadObjectCommand,
|
||||||
|
HeadBucketCommand,
|
||||||
|
ListObjectsV2CommandInput,
|
||||||
|
ListObjectsV2CommandOutput,
|
||||||
|
HeadObjectCommandOutput,
|
||||||
} from "@aws-sdk/client-s3";
|
} from "@aws-sdk/client-s3";
|
||||||
|
export { S3Client } from "@aws-sdk/client-s3";
|
||||||
|
|
||||||
import type { _Object } from "@aws-sdk/client-s3";
|
import type { _Object } from "@aws-sdk/client-s3";
|
||||||
|
|
||||||
import { bufferToArrayBuffer, mkdirpInVault } from "./misc";
|
import {
|
||||||
|
arrayBufferToBuffer,
|
||||||
|
bufferToArrayBuffer,
|
||||||
|
mkdirpInVault,
|
||||||
|
} from "./misc";
|
||||||
import * as mime from "mime-types";
|
import * as mime from "mime-types";
|
||||||
|
|
||||||
|
import { RemoteItem } from "./baseTypes";
|
||||||
|
import { decryptArrayBuffer, encryptArrayBuffer } from "./encrypt";
|
||||||
|
|
||||||
export interface S3Config {
|
export interface S3Config {
|
||||||
s3Endpoint: string;
|
s3Endpoint: string;
|
||||||
s3Region: string;
|
s3Region: string;
|
||||||
@@ -35,10 +48,37 @@ export const DEFAULT_S3_CONFIG = {
|
|||||||
|
|
||||||
export type S3ObjectType = _Object;
|
export type S3ObjectType = _Object;
|
||||||
|
|
||||||
|
const fromS3ObjectToRemoteItem = (x: S3ObjectType) => {
|
||||||
|
return {
|
||||||
|
key: x.Key,
|
||||||
|
lastModified: x.LastModified.valueOf(),
|
||||||
|
size: x.Size,
|
||||||
|
remoteType: "s3",
|
||||||
|
etag: x.ETag,
|
||||||
|
} as RemoteItem;
|
||||||
|
};
|
||||||
|
|
||||||
|
const fromS3HeadObjectToRemoteItem = (
|
||||||
|
key: string,
|
||||||
|
x: HeadObjectCommandOutput
|
||||||
|
) => {
|
||||||
|
return {
|
||||||
|
key: key,
|
||||||
|
lastModified: x.LastModified.valueOf(),
|
||||||
|
size: x.ContentLength,
|
||||||
|
remoteType: "s3",
|
||||||
|
etag: x.ETag,
|
||||||
|
} as RemoteItem;
|
||||||
|
};
|
||||||
|
|
||||||
export const getS3Client = (s3Config: S3Config) => {
|
export const getS3Client = (s3Config: S3Config) => {
|
||||||
|
let endpoint = s3Config.s3Endpoint;
|
||||||
|
if (!(endpoint.startsWith("http://") || endpoint.startsWith("https://"))) {
|
||||||
|
endpoint = `https://${endpoint}`;
|
||||||
|
}
|
||||||
const s3Client = new S3Client({
|
const s3Client = new S3Client({
|
||||||
region: s3Config.s3Region,
|
region: s3Config.s3Region,
|
||||||
endpoint: s3Config.s3Endpoint,
|
endpoint: endpoint,
|
||||||
credentials: {
|
credentials: {
|
||||||
accessKeyId: s3Config.s3AccessKeyID,
|
accessKeyId: s3Config.s3AccessKeyID,
|
||||||
secretAccessKey: s3Config.s3SecretAccessKey,
|
secretAccessKey: s3Config.s3SecretAccessKey,
|
||||||
@@ -52,12 +92,14 @@ export const getRemoteMeta = async (
|
|||||||
s3Config: S3Config,
|
s3Config: S3Config,
|
||||||
fileOrFolderPath: string
|
fileOrFolderPath: string
|
||||||
) => {
|
) => {
|
||||||
return await s3Client.send(
|
const res = await s3Client.send(
|
||||||
new HeadObjectCommand({
|
new HeadObjectCommand({
|
||||||
Bucket: s3Config.s3BucketName,
|
Bucket: s3Config.s3BucketName,
|
||||||
Key: fileOrFolderPath,
|
Key: fileOrFolderPath,
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
|
||||||
|
return fromS3HeadObjectToRemoteItem(fileOrFolderPath, res);
|
||||||
};
|
};
|
||||||
|
|
||||||
export const uploadToRemote = async (
|
export const uploadToRemote = async (
|
||||||
@@ -65,8 +107,14 @@ export const uploadToRemote = async (
|
|||||||
s3Config: S3Config,
|
s3Config: S3Config,
|
||||||
fileOrFolderPath: string,
|
fileOrFolderPath: string,
|
||||||
vault: Vault,
|
vault: Vault,
|
||||||
isRecursively: boolean = false
|
isRecursively: boolean = false,
|
||||||
|
password: string = "",
|
||||||
|
remoteEncryptedKey: string = ""
|
||||||
) => {
|
) => {
|
||||||
|
let uploadFile = fileOrFolderPath;
|
||||||
|
if (password !== "") {
|
||||||
|
uploadFile = remoteEncryptedKey;
|
||||||
|
}
|
||||||
const isFolder = fileOrFolderPath.endsWith("/");
|
const isFolder = fileOrFolderPath.endsWith("/");
|
||||||
|
|
||||||
const DEFAULT_CONTENT_TYPE = "application/octet-stream";
|
const DEFAULT_CONTENT_TYPE = "application/octet-stream";
|
||||||
@@ -79,29 +127,47 @@ export const uploadToRemote = async (
|
|||||||
await s3Client.send(
|
await s3Client.send(
|
||||||
new PutObjectCommand({
|
new PutObjectCommand({
|
||||||
Bucket: s3Config.s3BucketName,
|
Bucket: s3Config.s3BucketName,
|
||||||
Key: fileOrFolderPath,
|
Key: uploadFile,
|
||||||
Body: "",
|
Body: "",
|
||||||
ContentType: contentType,
|
ContentType: contentType,
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
return await getRemoteMeta(s3Client, s3Config, fileOrFolderPath);
|
return await getRemoteMeta(s3Client, s3Config, uploadFile);
|
||||||
} else {
|
} else {
|
||||||
// file
|
// file
|
||||||
// we ignore isRecursively parameter here
|
// we ignore isRecursively parameter here
|
||||||
const contentType =
|
let contentType = DEFAULT_CONTENT_TYPE;
|
||||||
mime.contentType(mime.lookup(fileOrFolderPath) || DEFAULT_CONTENT_TYPE) ||
|
if (password === "") {
|
||||||
DEFAULT_CONTENT_TYPE;
|
contentType =
|
||||||
const content = await vault.adapter.readBinary(fileOrFolderPath);
|
mime.contentType(
|
||||||
const body = Buffer.from(content);
|
mime.lookup(fileOrFolderPath) || DEFAULT_CONTENT_TYPE
|
||||||
await s3Client.send(
|
) || DEFAULT_CONTENT_TYPE;
|
||||||
new PutObjectCommand({
|
}
|
||||||
|
const localContent = await vault.adapter.readBinary(fileOrFolderPath);
|
||||||
|
let remoteContent = localContent;
|
||||||
|
if (password !== "") {
|
||||||
|
remoteContent = await encryptArrayBuffer(localContent, password);
|
||||||
|
}
|
||||||
|
const body = arrayBufferToBuffer(remoteContent);
|
||||||
|
|
||||||
|
const upload = new Upload({
|
||||||
|
client: s3Client,
|
||||||
|
queueSize: 20, // concurrency
|
||||||
|
partSize: 5242880, // minimal 5MB by default
|
||||||
|
leavePartsOnError: false,
|
||||||
|
params: {
|
||||||
Bucket: s3Config.s3BucketName,
|
Bucket: s3Config.s3BucketName,
|
||||||
Key: fileOrFolderPath,
|
Key: uploadFile,
|
||||||
Body: body,
|
Body: body,
|
||||||
ContentType: contentType,
|
ContentType: contentType,
|
||||||
})
|
},
|
||||||
);
|
});
|
||||||
return await getRemoteMeta(s3Client, s3Config, fileOrFolderPath);
|
upload.on("httpUploadProgress", (progress) => {
|
||||||
|
// console.log(progress);
|
||||||
|
});
|
||||||
|
await upload.done();
|
||||||
|
|
||||||
|
return await getRemoteMeta(s3Client, s3Config, uploadFile);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -110,17 +176,42 @@ export const listFromRemote = async (
|
|||||||
s3Config: S3Config,
|
s3Config: S3Config,
|
||||||
prefix?: string
|
prefix?: string
|
||||||
) => {
|
) => {
|
||||||
|
const confCmd = {
|
||||||
|
Bucket: s3Config.s3BucketName,
|
||||||
|
} as ListObjectsV2CommandInput;
|
||||||
if (prefix !== undefined) {
|
if (prefix !== undefined) {
|
||||||
return await s3Client.send(
|
confCmd.Prefix = prefix;
|
||||||
new ListObjectsV2Command({
|
|
||||||
Bucket: s3Config.s3BucketName,
|
|
||||||
Prefix: prefix,
|
|
||||||
})
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
return await s3Client.send(
|
|
||||||
new ListObjectsV2Command({ Bucket: s3Config.s3BucketName })
|
const contents = [] as _Object[];
|
||||||
);
|
|
||||||
|
let isTruncated = true;
|
||||||
|
let continuationToken = "";
|
||||||
|
do {
|
||||||
|
const rsp = await s3Client.send(new ListObjectsV2Command(confCmd));
|
||||||
|
|
||||||
|
if (rsp.$metadata.httpStatusCode !== 200) {
|
||||||
|
throw Error("some thing bad while listing remote!");
|
||||||
|
}
|
||||||
|
if (rsp.Contents === undefined) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
contents.push(...rsp.Contents);
|
||||||
|
|
||||||
|
isTruncated = rsp.IsTruncated;
|
||||||
|
confCmd.ContinuationToken = rsp.NextContinuationToken;
|
||||||
|
if (
|
||||||
|
isTruncated &&
|
||||||
|
(continuationToken === undefined || continuationToken === "")
|
||||||
|
) {
|
||||||
|
throw Error("isTruncated is true but no continuationToken provided");
|
||||||
|
}
|
||||||
|
} while (isTruncated);
|
||||||
|
|
||||||
|
// ensemble fake rsp
|
||||||
|
return {
|
||||||
|
Contents: contents.map((x) => fromS3ObjectToRemoteItem(x)),
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -149,7 +240,7 @@ const getObjectBodyToArrayBuffer = async (
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
export const downloadFromRemoteRaw = async (
|
const downloadFromRemoteRaw = async (
|
||||||
s3Client: S3Client,
|
s3Client: S3Client,
|
||||||
s3Config: S3Config,
|
s3Config: S3Config,
|
||||||
fileOrFolderPath: string
|
fileOrFolderPath: string
|
||||||
@@ -169,22 +260,35 @@ export const downloadFromRemote = async (
|
|||||||
s3Config: S3Config,
|
s3Config: S3Config,
|
||||||
fileOrFolderPath: string,
|
fileOrFolderPath: string,
|
||||||
vault: Vault,
|
vault: Vault,
|
||||||
mtime: number
|
mtime: number,
|
||||||
|
password: string = "",
|
||||||
|
remoteEncryptedKey: string = ""
|
||||||
) => {
|
) => {
|
||||||
const isFolder = fileOrFolderPath.endsWith("/");
|
const isFolder = fileOrFolderPath.endsWith("/");
|
||||||
|
|
||||||
await mkdirpInVault(fileOrFolderPath, vault);
|
await mkdirpInVault(fileOrFolderPath, vault);
|
||||||
|
|
||||||
|
// the file is always local file
|
||||||
|
// we need to encrypt it
|
||||||
|
|
||||||
if (isFolder) {
|
if (isFolder) {
|
||||||
// mkdirp locally is enough
|
// mkdirp locally is enough
|
||||||
// do nothing here
|
// do nothing here
|
||||||
} else {
|
} else {
|
||||||
const content = await downloadFromRemoteRaw(
|
let downloadFile = fileOrFolderPath;
|
||||||
|
if (password !== "") {
|
||||||
|
downloadFile = remoteEncryptedKey;
|
||||||
|
}
|
||||||
|
const remoteContent = await downloadFromRemoteRaw(
|
||||||
s3Client,
|
s3Client,
|
||||||
s3Config,
|
s3Config,
|
||||||
fileOrFolderPath
|
downloadFile
|
||||||
);
|
);
|
||||||
await vault.adapter.writeBinary(fileOrFolderPath, content, {
|
let localContent = remoteContent;
|
||||||
|
if (password !== "") {
|
||||||
|
localContent = await decryptArrayBuffer(remoteContent, password);
|
||||||
|
}
|
||||||
|
await vault.adapter.writeBinary(fileOrFolderPath, localContent, {
|
||||||
mtime: mtime,
|
mtime: mtime,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -200,27 +304,65 @@ export const downloadFromRemote = async (
|
|||||||
export const deleteFromRemote = async (
|
export const deleteFromRemote = async (
|
||||||
s3Client: S3Client,
|
s3Client: S3Client,
|
||||||
s3Config: S3Config,
|
s3Config: S3Config,
|
||||||
fileOrFolderPath: string
|
fileOrFolderPath: string,
|
||||||
|
password: string = "",
|
||||||
|
remoteEncryptedKey: string = ""
|
||||||
) => {
|
) => {
|
||||||
if (fileOrFolderPath === "/") {
|
if (fileOrFolderPath === "/") {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (fileOrFolderPath.endsWith("/")) {
|
let remoteFileName = fileOrFolderPath;
|
||||||
|
if (password !== "") {
|
||||||
|
remoteFileName = remoteEncryptedKey;
|
||||||
|
}
|
||||||
|
await s3Client.send(
|
||||||
|
new DeleteObjectCommand({
|
||||||
|
Bucket: s3Config.s3BucketName,
|
||||||
|
Key: remoteFileName,
|
||||||
|
})
|
||||||
|
);
|
||||||
|
|
||||||
|
if (fileOrFolderPath.endsWith("/") && password === "") {
|
||||||
const x = await listFromRemote(s3Client, s3Config, fileOrFolderPath);
|
const x = await listFromRemote(s3Client, s3Config, fileOrFolderPath);
|
||||||
x.Contents.forEach(async (element) => {
|
x.Contents.forEach(async (element) => {
|
||||||
await s3Client.send(
|
await s3Client.send(
|
||||||
new DeleteObjectCommand({
|
new DeleteObjectCommand({
|
||||||
Bucket: s3Config.s3BucketName,
|
Bucket: s3Config.s3BucketName,
|
||||||
Key: element.Key,
|
Key: element.key,
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
} else if (fileOrFolderPath.endsWith("/") && password !== "") {
|
||||||
|
// TODO
|
||||||
} else {
|
} else {
|
||||||
await s3Client.send(
|
// pass
|
||||||
new DeleteObjectCommand({
|
}
|
||||||
Bucket: s3Config.s3BucketName,
|
};
|
||||||
Key: fileOrFolderPath,
|
|
||||||
})
|
/**
|
||||||
|
* Check the config of S3 by heading bucket
|
||||||
|
* https://stackoverflow.com/questions/50842835
|
||||||
|
* @param s3Client
|
||||||
|
* @param s3Config
|
||||||
|
* @returns
|
||||||
|
*/
|
||||||
|
export const checkConnectivity = async (
|
||||||
|
s3Client: S3Client,
|
||||||
|
s3Config: S3Config
|
||||||
|
) => {
|
||||||
|
try {
|
||||||
|
const results = await s3Client.send(
|
||||||
|
new HeadBucketCommand({ Bucket: s3Config.s3BucketName })
|
||||||
);
|
);
|
||||||
|
if (
|
||||||
|
results === undefined ||
|
||||||
|
results.$metadata === undefined ||
|
||||||
|
results.$metadata.httpStatusCode === undefined
|
||||||
|
) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return results.$metadata.httpStatusCode === 200;
|
||||||
|
} catch (err) {
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
+298
-120
@@ -1,22 +1,30 @@
|
|||||||
import { TAbstractFile, TFolder, TFile, Vault } from "obsidian";
|
import { TAbstractFile, TFolder, TFile, Vault } from "obsidian";
|
||||||
|
|
||||||
import { S3Client } from "@aws-sdk/client-s3";
|
|
||||||
import * as lf from "lovefield-ts/dist/es6/lf.js";
|
|
||||||
|
|
||||||
import {
|
import {
|
||||||
clearDeleteRenameHistoryOfKey,
|
clearDeleteRenameHistoryOfKey,
|
||||||
FileFolderHistoryRecord,
|
upsertSyncMetaMappingData,
|
||||||
upsertSyncMetaMappingDataS3,
|
getSyncMetaMappingByRemoteKey,
|
||||||
getSyncMetaMappingByRemoteKeyS3,
|
|
||||||
} from "./localdb";
|
} from "./localdb";
|
||||||
|
import type { FileFolderHistoryRecord, InternalDBs } from "./localdb";
|
||||||
|
|
||||||
|
import { RemoteClient } from "./remote";
|
||||||
|
import type { SUPPORTED_SERVICES_TYPE, RemoteItem } from "./baseTypes";
|
||||||
|
import { mkdirpInVault, isHiddenPath, isVaildText } from "./misc";
|
||||||
import {
|
import {
|
||||||
S3Config,
|
decryptBase32ToString,
|
||||||
S3ObjectType,
|
encryptStringToBase32,
|
||||||
uploadToRemote,
|
MAGIC_ENCRYPTED_PREFIX_BASE32,
|
||||||
deleteFromRemote,
|
} from "./encrypt";
|
||||||
downloadFromRemote,
|
|
||||||
} from "./s3";
|
export type SyncStatusType =
|
||||||
import { mkdirpInVault } from "./misc";
|
| "idle"
|
||||||
|
| "preparing"
|
||||||
|
| "getting_remote_meta"
|
||||||
|
| "getting_local_meta"
|
||||||
|
| "checking_password"
|
||||||
|
| "generating_plan"
|
||||||
|
| "syncing"
|
||||||
|
| "finish";
|
||||||
|
|
||||||
type DecisionType =
|
type DecisionType =
|
||||||
| "undecided"
|
| "undecided"
|
||||||
@@ -30,8 +38,6 @@ type DecisionType =
|
|||||||
| "mkdirplocal"
|
| "mkdirplocal"
|
||||||
| "skip";
|
| "skip";
|
||||||
|
|
||||||
export type SyncStatusType = "idle" | "preparing" | "syncing";
|
|
||||||
|
|
||||||
interface FileOrFolderMixedState {
|
interface FileOrFolderMixedState {
|
||||||
key: string;
|
key: string;
|
||||||
exist_local?: boolean;
|
exist_local?: boolean;
|
||||||
@@ -44,48 +50,139 @@ interface FileOrFolderMixedState {
|
|||||||
decision?: DecisionType;
|
decision?: DecisionType;
|
||||||
syncDone?: "done";
|
syncDone?: "done";
|
||||||
decision_branch?: number;
|
decision_branch?: number;
|
||||||
|
remote_encrypted_key?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const ensembleMixedStates = async (
|
export interface SyncPlanType {
|
||||||
remote: S3ObjectType[],
|
ts: number;
|
||||||
|
remoteType: SUPPORTED_SERVICES_TYPE;
|
||||||
|
mixedStates: Record<string, FileOrFolderMixedState>;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface PasswordCheckType {
|
||||||
|
ok: boolean;
|
||||||
|
reason:
|
||||||
|
| "ok"
|
||||||
|
| "empty_remote"
|
||||||
|
| "remote_encrypted_local_no_password"
|
||||||
|
| "password_matched"
|
||||||
|
| "password_not_matched"
|
||||||
|
| "invalid_text_after_decryption"
|
||||||
|
| "remote_not_encrypted_local_has_password"
|
||||||
|
| "no_password_both_sides";
|
||||||
|
}
|
||||||
|
|
||||||
|
export const isPasswordOk = async (
|
||||||
|
remote: RemoteItem[],
|
||||||
|
password: string = ""
|
||||||
|
) => {
|
||||||
|
if (remote === undefined || remote.length === 0) {
|
||||||
|
// remote empty
|
||||||
|
return {
|
||||||
|
ok: true,
|
||||||
|
reason: "empty_remote",
|
||||||
|
} as PasswordCheckType;
|
||||||
|
}
|
||||||
|
const santyCheckKey = remote[0].key;
|
||||||
|
if (santyCheckKey.startsWith(MAGIC_ENCRYPTED_PREFIX_BASE32)) {
|
||||||
|
// this is encrypted!
|
||||||
|
// try to decrypt it using the provided password.
|
||||||
|
if (password === "") {
|
||||||
|
return {
|
||||||
|
ok: false,
|
||||||
|
reason: "remote_encrypted_local_no_password",
|
||||||
|
} as PasswordCheckType;
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
const res = await decryptBase32ToString(santyCheckKey, password);
|
||||||
|
|
||||||
|
// additional test
|
||||||
|
// because iOS Safari bypasses decryption with wrong password!
|
||||||
|
if (isVaildText(res)) {
|
||||||
|
return {
|
||||||
|
ok: true,
|
||||||
|
reason: "password_matched",
|
||||||
|
} as PasswordCheckType;
|
||||||
|
} else {
|
||||||
|
return {
|
||||||
|
ok: false,
|
||||||
|
reason: "invalid_text_after_decryption",
|
||||||
|
} as PasswordCheckType;
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
return {
|
||||||
|
ok: false,
|
||||||
|
reason: "password_not_matched",
|
||||||
|
} as PasswordCheckType;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// it is not encrypted!
|
||||||
|
if (password !== "") {
|
||||||
|
return {
|
||||||
|
ok: false,
|
||||||
|
reason: "remote_not_encrypted_local_has_password",
|
||||||
|
} as PasswordCheckType;
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
ok: true,
|
||||||
|
reason: "no_password_both_sides",
|
||||||
|
} as PasswordCheckType;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const ensembleMixedStates = async (
|
||||||
|
remote: RemoteItem[],
|
||||||
local: TAbstractFile[],
|
local: TAbstractFile[],
|
||||||
deleteHistory: FileFolderHistoryRecord[],
|
deleteHistory: FileFolderHistoryRecord[],
|
||||||
db: lf.DatabaseConnection
|
db: InternalDBs,
|
||||||
|
remoteType: SUPPORTED_SERVICES_TYPE,
|
||||||
|
password: string = ""
|
||||||
) => {
|
) => {
|
||||||
const results = {} as Record<string, FileOrFolderMixedState>;
|
const results = {} as Record<string, FileOrFolderMixedState>;
|
||||||
|
|
||||||
if (remote !== undefined) {
|
if (remote !== undefined) {
|
||||||
for (const entry of remote) {
|
for (const entry of remote) {
|
||||||
const backwardMapping = await getSyncMetaMappingByRemoteKeyS3(
|
const remoteEncryptedKey = entry.key;
|
||||||
|
let key = remoteEncryptedKey;
|
||||||
|
if (password !== "") {
|
||||||
|
key = await decryptBase32ToString(remoteEncryptedKey, password);
|
||||||
|
}
|
||||||
|
const backwardMapping = await getSyncMetaMappingByRemoteKey(
|
||||||
|
remoteType,
|
||||||
db,
|
db,
|
||||||
entry.Key,
|
key,
|
||||||
entry.LastModified.valueOf(),
|
entry.lastModified,
|
||||||
entry.ETag
|
entry.etag
|
||||||
);
|
);
|
||||||
|
|
||||||
let key = entry.Key;
|
|
||||||
let r = {} as FileOrFolderMixedState;
|
let r = {} as FileOrFolderMixedState;
|
||||||
if (backwardMapping !== undefined) {
|
if (backwardMapping !== undefined) {
|
||||||
key = backwardMapping.local_key;
|
key = backwardMapping.localKey;
|
||||||
r = {
|
r = {
|
||||||
key: key,
|
key: key,
|
||||||
exist_remote: true,
|
exist_remote: true,
|
||||||
mtime_remote: backwardMapping.local_mtime,
|
mtime_remote: backwardMapping.localMtime || entry.lastModified,
|
||||||
size_remote: backwardMapping.local_size,
|
size_remote: backwardMapping.localSize || entry.size,
|
||||||
|
remote_encrypted_key: remoteEncryptedKey,
|
||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
r = {
|
r = {
|
||||||
key: key,
|
key: key,
|
||||||
exist_remote: true,
|
exist_remote: true,
|
||||||
mtime_remote: entry.LastModified.valueOf(),
|
mtime_remote: entry.lastModified,
|
||||||
size_remote: entry.Size,
|
size_remote: entry.size,
|
||||||
|
remote_encrypted_key: remoteEncryptedKey,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
if (isHiddenPath(key)) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
if (results.hasOwnProperty(key)) {
|
if (results.hasOwnProperty(key)) {
|
||||||
results[key].key = r.key;
|
results[key].key = r.key;
|
||||||
results[key].exist_remote = r.exist_remote;
|
results[key].exist_remote = r.exist_remote;
|
||||||
results[key].mtime_remote = r.mtime_remote;
|
results[key].mtime_remote = r.mtime_remote;
|
||||||
results[key].size_remote = r.size_remote;
|
results[key].size_remote = r.size_remote;
|
||||||
|
results[key].remote_encrypted_key = r.remote_encrypted_key;
|
||||||
} else {
|
} else {
|
||||||
results[key] = r;
|
results[key] = r;
|
||||||
}
|
}
|
||||||
@@ -118,6 +215,9 @@ export const ensembleMixedStates = async (
|
|||||||
throw Error(`unexpected ${entry}`);
|
throw Error(`unexpected ${entry}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (isHiddenPath(key)) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
if (results.hasOwnProperty(key)) {
|
if (results.hasOwnProperty(key)) {
|
||||||
results[key].key = r.key;
|
results[key].key = r.key;
|
||||||
results[key].exist_local = r.exist_local;
|
results[key].exist_local = r.exist_local;
|
||||||
@@ -130,11 +230,11 @@ export const ensembleMixedStates = async (
|
|||||||
|
|
||||||
for (const entry of deleteHistory) {
|
for (const entry of deleteHistory) {
|
||||||
let key = entry.key;
|
let key = entry.key;
|
||||||
if (entry.key_type === "folder") {
|
if (entry.keyType === "folder") {
|
||||||
if (!entry.key.endsWith("/")) {
|
if (!entry.key.endsWith("/")) {
|
||||||
key = `${entry.key}/`;
|
key = `${entry.key}/`;
|
||||||
}
|
}
|
||||||
} else if (entry.key_type === "file") {
|
} else if (entry.keyType === "file") {
|
||||||
// pass
|
// pass
|
||||||
} else {
|
} else {
|
||||||
throw Error(`unexpected ${entry}`);
|
throw Error(`unexpected ${entry}`);
|
||||||
@@ -142,9 +242,12 @@ export const ensembleMixedStates = async (
|
|||||||
|
|
||||||
const r = {
|
const r = {
|
||||||
key: key,
|
key: key,
|
||||||
delete_time_local: entry.action_when,
|
delete_time_local: entry.actionWhen,
|
||||||
} as FileOrFolderMixedState;
|
} as FileOrFolderMixedState;
|
||||||
|
|
||||||
|
if (isHiddenPath(key)) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
if (results.hasOwnProperty(key)) {
|
if (results.hasOwnProperty(key)) {
|
||||||
results[key].key = r.key;
|
results[key].key = r.key;
|
||||||
results[key].delete_time_local = r.delete_time_local;
|
results[key].delete_time_local = r.delete_time_local;
|
||||||
@@ -156,9 +259,10 @@ export const ensembleMixedStates = async (
|
|||||||
return results;
|
return results;
|
||||||
};
|
};
|
||||||
|
|
||||||
export const getOperation = (
|
const getOperation = (
|
||||||
origRecord: FileOrFolderMixedState,
|
origRecord: FileOrFolderMixedState,
|
||||||
inplace: boolean = false
|
inplace: boolean = false,
|
||||||
|
password: string = ""
|
||||||
) => {
|
) => {
|
||||||
let r = origRecord;
|
let r = origRecord;
|
||||||
if (!inplace) {
|
if (!inplace) {
|
||||||
@@ -206,6 +310,7 @@ export const getOperation = (
|
|||||||
r.mtime_remote !== undefined &&
|
r.mtime_remote !== undefined &&
|
||||||
r.mtime_local !== undefined &&
|
r.mtime_local !== undefined &&
|
||||||
r.mtime_remote === r.mtime_local &&
|
r.mtime_remote === r.mtime_local &&
|
||||||
|
password === "" &&
|
||||||
r.size_local === r.size_remote
|
r.size_local === r.size_remote
|
||||||
) {
|
) {
|
||||||
r.decision = "skip";
|
r.decision = "skip";
|
||||||
@@ -216,17 +321,31 @@ export const getOperation = (
|
|||||||
r.mtime_remote !== undefined &&
|
r.mtime_remote !== undefined &&
|
||||||
r.mtime_local !== undefined &&
|
r.mtime_local !== undefined &&
|
||||||
r.mtime_remote === r.mtime_local &&
|
r.mtime_remote === r.mtime_local &&
|
||||||
|
password === "" &&
|
||||||
r.size_local !== r.size_remote
|
r.size_local !== r.size_remote
|
||||||
) {
|
) {
|
||||||
r.decision = "upload_clearhist";
|
r.decision = "upload_clearhist";
|
||||||
r.decision_branch = 4;
|
r.decision_branch = 4;
|
||||||
|
} else if (
|
||||||
|
r.exist_remote &&
|
||||||
|
r.exist_local &&
|
||||||
|
r.mtime_remote !== undefined &&
|
||||||
|
r.mtime_local !== undefined &&
|
||||||
|
r.mtime_remote === r.mtime_local &&
|
||||||
|
password !== ""
|
||||||
|
) {
|
||||||
|
// if we have encryption,
|
||||||
|
// the size is always unequal
|
||||||
|
// only mtime(s) are reliable
|
||||||
|
r.decision = "skip";
|
||||||
|
r.decision_branch = 5;
|
||||||
} else if (r.exist_remote && r.exist_local && r.mtime_local === undefined) {
|
} else if (r.exist_remote && r.exist_local && r.mtime_local === undefined) {
|
||||||
// this must be a folder!
|
// this must be a folder!
|
||||||
if (!r.key.endsWith("/")) {
|
if (!r.key.endsWith("/")) {
|
||||||
throw Error(`${r.key} is not a folder but lacks local mtime`);
|
throw Error(`${r.key} is not a folder but lacks local mtime`);
|
||||||
}
|
}
|
||||||
r.decision = "skip";
|
r.decision = "skip";
|
||||||
r.decision_branch = 5;
|
r.decision_branch = 6;
|
||||||
} else if (
|
} else if (
|
||||||
r.exist_remote &&
|
r.exist_remote &&
|
||||||
!r.exist_local &&
|
!r.exist_local &&
|
||||||
@@ -236,7 +355,7 @@ export const getOperation = (
|
|||||||
r.mtime_remote >= r.delete_time_local
|
r.mtime_remote >= r.delete_time_local
|
||||||
) {
|
) {
|
||||||
r.decision = "download_clearhist";
|
r.decision = "download_clearhist";
|
||||||
r.decision_branch = 6;
|
r.decision_branch = 7;
|
||||||
} else if (
|
} else if (
|
||||||
r.exist_remote &&
|
r.exist_remote &&
|
||||||
!r.exist_local &&
|
!r.exist_local &&
|
||||||
@@ -246,7 +365,7 @@ export const getOperation = (
|
|||||||
r.mtime_remote < r.delete_time_local
|
r.mtime_remote < r.delete_time_local
|
||||||
) {
|
) {
|
||||||
r.decision = "delremote_clearhist";
|
r.decision = "delremote_clearhist";
|
||||||
r.decision_branch = 7;
|
r.decision_branch = 8;
|
||||||
} else if (
|
} else if (
|
||||||
r.exist_remote &&
|
r.exist_remote &&
|
||||||
!r.exist_local &&
|
!r.exist_local &&
|
||||||
@@ -255,10 +374,10 @@ export const getOperation = (
|
|||||||
r.delete_time_local == undefined
|
r.delete_time_local == undefined
|
||||||
) {
|
) {
|
||||||
r.decision = "download";
|
r.decision = "download";
|
||||||
r.decision_branch = 8;
|
r.decision_branch = 9;
|
||||||
} else if (!r.exist_remote && r.exist_local && r.mtime_remote === undefined) {
|
} else if (!r.exist_remote && r.exist_local && r.mtime_remote === undefined) {
|
||||||
r.decision = "upload_clearhist";
|
r.decision = "upload_clearhist";
|
||||||
r.decision_branch = 9;
|
r.decision_branch = 10;
|
||||||
} else if (
|
} else if (
|
||||||
!r.exist_remote &&
|
!r.exist_remote &&
|
||||||
!r.exist_local &&
|
!r.exist_local &&
|
||||||
@@ -266,95 +385,154 @@ export const getOperation = (
|
|||||||
r.mtime_local === undefined
|
r.mtime_local === undefined
|
||||||
) {
|
) {
|
||||||
r.decision = "clearhist";
|
r.decision = "clearhist";
|
||||||
r.decision_branch = 10;
|
r.decision_branch = 11;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (r.decision === "unknown") {
|
||||||
|
throw Error(`unknown decision for ${r}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
return r;
|
return r;
|
||||||
};
|
};
|
||||||
|
|
||||||
export const doActualSync = async (
|
export const getSyncPlan = async (
|
||||||
s3Client: S3Client,
|
remote: RemoteItem[],
|
||||||
s3Config: S3Config,
|
local: TAbstractFile[],
|
||||||
db: lf.DatabaseConnection,
|
deleteHistory: FileFolderHistoryRecord[],
|
||||||
vault: Vault,
|
db: InternalDBs,
|
||||||
keyStates: Record<string, FileOrFolderMixedState>
|
remoteType: SUPPORTED_SERVICES_TYPE,
|
||||||
|
password: string = ""
|
||||||
) => {
|
) => {
|
||||||
Object.entries(keyStates)
|
const mixedStates = await ensembleMixedStates(
|
||||||
.sort((k, v) => -(k as string).length)
|
remote,
|
||||||
.map(async ([k, v]) => {
|
local,
|
||||||
const key = k as string;
|
deleteHistory,
|
||||||
const state = v as FileOrFolderMixedState;
|
db,
|
||||||
|
remoteType,
|
||||||
|
password
|
||||||
|
);
|
||||||
|
for (const [key, val] of Object.entries(mixedStates)) {
|
||||||
|
getOperation(val, true, password);
|
||||||
|
}
|
||||||
|
const plan = {
|
||||||
|
ts: Date.now(),
|
||||||
|
remoteType: remoteType,
|
||||||
|
mixedStates: mixedStates,
|
||||||
|
} as SyncPlanType;
|
||||||
|
return plan;
|
||||||
|
};
|
||||||
|
|
||||||
if (
|
const dispatchOperationToActual = async (
|
||||||
state.decision === undefined ||
|
key: string,
|
||||||
state.decision === "unknown" ||
|
state: FileOrFolderMixedState,
|
||||||
state.decision === "undecided"
|
client: RemoteClient,
|
||||||
) {
|
db: InternalDBs,
|
||||||
throw Error(`unknown decision in ${JSON.stringify(state)}`);
|
vault: Vault,
|
||||||
} else if (state.decision === "skip") {
|
password: string = ""
|
||||||
// do nothing
|
) => {
|
||||||
} else if (state.decision === "download_clearhist") {
|
let remoteEncryptedKey = key;
|
||||||
await downloadFromRemote(
|
if (password !== "") {
|
||||||
s3Client,
|
remoteEncryptedKey = state.remote_encrypted_key;
|
||||||
s3Config,
|
if (remoteEncryptedKey === undefined || remoteEncryptedKey === "") {
|
||||||
state.key,
|
remoteEncryptedKey = await encryptStringToBase32(key, password);
|
||||||
vault,
|
}
|
||||||
state.mtime_remote
|
}
|
||||||
);
|
|
||||||
await clearDeleteRenameHistoryOfKey(db, state.key);
|
if (
|
||||||
} else if (state.decision === "upload_clearhist") {
|
state.decision === undefined ||
|
||||||
const remoteObjMeta = await uploadToRemote(
|
state.decision === "unknown" ||
|
||||||
s3Client,
|
state.decision === "undecided"
|
||||||
s3Config,
|
) {
|
||||||
state.key,
|
throw Error(`unknown decision in ${JSON.stringify(state)}`);
|
||||||
vault,
|
} else if (state.decision === "skip") {
|
||||||
false
|
// do nothing
|
||||||
);
|
} else if (state.decision === "download_clearhist") {
|
||||||
await upsertSyncMetaMappingDataS3(
|
await client.downloadFromRemote(
|
||||||
|
state.key,
|
||||||
|
vault,
|
||||||
|
state.mtime_remote,
|
||||||
|
password,
|
||||||
|
remoteEncryptedKey
|
||||||
|
);
|
||||||
|
await clearDeleteRenameHistoryOfKey(db, state.key);
|
||||||
|
} else if (state.decision === "upload_clearhist") {
|
||||||
|
const remoteObjMeta = await client.uploadToRemote(
|
||||||
|
state.key,
|
||||||
|
vault,
|
||||||
|
false,
|
||||||
|
password,
|
||||||
|
remoteEncryptedKey
|
||||||
|
);
|
||||||
|
await upsertSyncMetaMappingData(
|
||||||
|
client.serviceType,
|
||||||
|
db,
|
||||||
|
state.key,
|
||||||
|
state.mtime_local,
|
||||||
|
state.size_local,
|
||||||
|
state.key,
|
||||||
|
remoteObjMeta.lastModified,
|
||||||
|
remoteObjMeta.size,
|
||||||
|
remoteObjMeta.etag
|
||||||
|
);
|
||||||
|
await clearDeleteRenameHistoryOfKey(db, state.key);
|
||||||
|
} else if (state.decision === "download") {
|
||||||
|
await mkdirpInVault(state.key, vault);
|
||||||
|
await client.downloadFromRemote(
|
||||||
|
state.key,
|
||||||
|
vault,
|
||||||
|
state.mtime_remote,
|
||||||
|
password,
|
||||||
|
remoteEncryptedKey
|
||||||
|
);
|
||||||
|
} else if (state.decision === "delremote_clearhist") {
|
||||||
|
await client.deleteFromRemote(state.key, password, remoteEncryptedKey);
|
||||||
|
await clearDeleteRenameHistoryOfKey(db, state.key);
|
||||||
|
} else if (state.decision === "upload") {
|
||||||
|
const remoteObjMeta = await client.uploadToRemote(
|
||||||
|
state.key,
|
||||||
|
vault,
|
||||||
|
false,
|
||||||
|
password,
|
||||||
|
remoteEncryptedKey
|
||||||
|
);
|
||||||
|
await upsertSyncMetaMappingData(
|
||||||
|
client.serviceType,
|
||||||
|
db,
|
||||||
|
state.key,
|
||||||
|
state.mtime_local,
|
||||||
|
state.size_local,
|
||||||
|
state.key,
|
||||||
|
remoteObjMeta.lastModified,
|
||||||
|
remoteObjMeta.size,
|
||||||
|
remoteObjMeta.etag
|
||||||
|
);
|
||||||
|
} else if (state.decision === "clearhist") {
|
||||||
|
await clearDeleteRenameHistoryOfKey(db, state.key);
|
||||||
|
} else {
|
||||||
|
throw Error("this should never happen!");
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
export const doActualSync = async (
|
||||||
|
client: RemoteClient,
|
||||||
|
db: InternalDBs,
|
||||||
|
vault: Vault,
|
||||||
|
syncPlan: SyncPlanType,
|
||||||
|
password: string = ""
|
||||||
|
) => {
|
||||||
|
const keyStates = syncPlan.mixedStates;
|
||||||
|
await Promise.all(
|
||||||
|
Object.entries(keyStates)
|
||||||
|
.sort((k, v) => -(k as string).length)
|
||||||
|
.map(async ([k, v]) =>
|
||||||
|
dispatchOperationToActual(
|
||||||
|
k as string,
|
||||||
|
v as FileOrFolderMixedState,
|
||||||
|
client,
|
||||||
db,
|
db,
|
||||||
state.key,
|
|
||||||
state.mtime_local,
|
|
||||||
state.size_local,
|
|
||||||
state.key,
|
|
||||||
remoteObjMeta.LastModified.valueOf(),
|
|
||||||
remoteObjMeta.ContentLength,
|
|
||||||
remoteObjMeta.ETag
|
|
||||||
);
|
|
||||||
await clearDeleteRenameHistoryOfKey(db, state.key);
|
|
||||||
} else if (state.decision === "download") {
|
|
||||||
await mkdirpInVault(state.key, vault);
|
|
||||||
await downloadFromRemote(
|
|
||||||
s3Client,
|
|
||||||
s3Config,
|
|
||||||
state.key,
|
|
||||||
vault,
|
|
||||||
state.mtime_remote
|
|
||||||
);
|
|
||||||
} else if (state.decision === "delremote_clearhist") {
|
|
||||||
await deleteFromRemote(s3Client, s3Config, state.key);
|
|
||||||
await clearDeleteRenameHistoryOfKey(db, state.key);
|
|
||||||
} else if (state.decision === "upload") {
|
|
||||||
const remoteObjMeta = await uploadToRemote(
|
|
||||||
s3Client,
|
|
||||||
s3Config,
|
|
||||||
state.key,
|
|
||||||
vault,
|
vault,
|
||||||
false
|
password
|
||||||
);
|
)
|
||||||
await upsertSyncMetaMappingDataS3(
|
)
|
||||||
db,
|
);
|
||||||
state.key,
|
|
||||||
state.mtime_local,
|
|
||||||
state.size_local,
|
|
||||||
state.key,
|
|
||||||
remoteObjMeta.LastModified.valueOf(),
|
|
||||||
remoteObjMeta.ContentLength,
|
|
||||||
remoteObjMeta.ETag
|
|
||||||
);
|
|
||||||
} else if (state.decision === "clearhist") {
|
|
||||||
await clearDeleteRenameHistoryOfKey(db, state.key);
|
|
||||||
} else {
|
|
||||||
throw Error("this should never happen!");
|
|
||||||
}
|
|
||||||
});
|
|
||||||
};
|
};
|
||||||
|
|||||||
+246
@@ -0,0 +1,246 @@
|
|||||||
|
import { Buffer } from "buffer";
|
||||||
|
import { FileStats, Vault } from "obsidian";
|
||||||
|
import { AuthType, BufferLike, createClient } from "webdav/web";
|
||||||
|
import type { WebDAVClient, ResponseDataDetailed, FileStat } from "webdav/web";
|
||||||
|
export type { WebDAVClient } from "webdav/web";
|
||||||
|
|
||||||
|
import type { RemoteItem } from "./baseTypes";
|
||||||
|
|
||||||
|
import {
|
||||||
|
arrayBufferToBuffer,
|
||||||
|
bufferToArrayBuffer,
|
||||||
|
mkdirpInVault,
|
||||||
|
getPathFolder,
|
||||||
|
} from "./misc";
|
||||||
|
import { decryptArrayBuffer, encryptArrayBuffer } from "./encrypt";
|
||||||
|
|
||||||
|
export type WebdavAuthType = "digest" | "basic";
|
||||||
|
|
||||||
|
export interface WebdavConfig {
|
||||||
|
address: string;
|
||||||
|
username: string;
|
||||||
|
password: string;
|
||||||
|
authType: WebdavAuthType;
|
||||||
|
}
|
||||||
|
|
||||||
|
export const DEFAULT_WEBDAV_CONFIG = {
|
||||||
|
address: "",
|
||||||
|
username: "",
|
||||||
|
password: "",
|
||||||
|
authType: "basic",
|
||||||
|
} as WebdavConfig;
|
||||||
|
|
||||||
|
const getWebdavPath = (fileOrFolderPath: string) => {
|
||||||
|
if (!fileOrFolderPath.startsWith("/")) {
|
||||||
|
return `/${fileOrFolderPath}`;
|
||||||
|
}
|
||||||
|
return fileOrFolderPath;
|
||||||
|
};
|
||||||
|
|
||||||
|
const getNormPath = (fileOrFolderPath: string) => {
|
||||||
|
if (fileOrFolderPath.startsWith("/")) {
|
||||||
|
return fileOrFolderPath.slice(1);
|
||||||
|
}
|
||||||
|
return fileOrFolderPath;
|
||||||
|
};
|
||||||
|
|
||||||
|
const fromWebdavItemToRemoteItem = (x: FileStat) => {
|
||||||
|
let key = getNormPath(x.filename);
|
||||||
|
if (x.type === "directory" && !key.endsWith("/")) {
|
||||||
|
key = `${key}/`;
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
key: key,
|
||||||
|
lastModified: Date.parse(x.lastmod).valueOf(),
|
||||||
|
size: x.size,
|
||||||
|
remoteType: "webdav",
|
||||||
|
etag: x.etag || undefined,
|
||||||
|
} as RemoteItem;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const getWebdavClient = (webdavConfig: WebdavConfig) => {
|
||||||
|
if (webdavConfig.username !== "" && webdavConfig.password !== "") {
|
||||||
|
return createClient(webdavConfig.address, {
|
||||||
|
username: webdavConfig.username,
|
||||||
|
password: webdavConfig.password,
|
||||||
|
authType:
|
||||||
|
webdavConfig.authType === "digest"
|
||||||
|
? AuthType.Digest
|
||||||
|
: AuthType.Password,
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
console.log("no password");
|
||||||
|
return createClient(webdavConfig.address);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
export const getRemoteMeta = async (
|
||||||
|
client: WebDAVClient,
|
||||||
|
fileOrFolderPath: string
|
||||||
|
) => {
|
||||||
|
const res = (await client.stat(getWebdavPath(fileOrFolderPath), {
|
||||||
|
details: false,
|
||||||
|
})) as FileStat;
|
||||||
|
return fromWebdavItemToRemoteItem(res);
|
||||||
|
};
|
||||||
|
|
||||||
|
export const uploadToRemote = async (
|
||||||
|
client: WebDAVClient,
|
||||||
|
fileOrFolderPath: string,
|
||||||
|
vault: Vault,
|
||||||
|
isRecursively: boolean = false,
|
||||||
|
password: string = "",
|
||||||
|
remoteEncryptedKey: string = ""
|
||||||
|
) => {
|
||||||
|
let uploadFile = fileOrFolderPath;
|
||||||
|
if (password !== "") {
|
||||||
|
uploadFile = remoteEncryptedKey;
|
||||||
|
}
|
||||||
|
uploadFile = getWebdavPath(uploadFile);
|
||||||
|
|
||||||
|
const isFolder = fileOrFolderPath.endsWith("/");
|
||||||
|
|
||||||
|
if (isFolder && isRecursively) {
|
||||||
|
throw Error("upload function doesn't implement recursive function yet!");
|
||||||
|
} else if (isFolder && !isRecursively) {
|
||||||
|
// folder
|
||||||
|
if (password === "") {
|
||||||
|
// if not encrypted, mkdir a remote folder
|
||||||
|
await client.createDirectory(uploadFile, {
|
||||||
|
recursive: true,
|
||||||
|
});
|
||||||
|
const res = await getRemoteMeta(client, uploadFile);
|
||||||
|
return res;
|
||||||
|
} else {
|
||||||
|
// if encrypted, upload a fake file with the encrypted file name
|
||||||
|
await client.putFileContents(uploadFile, "", {
|
||||||
|
overwrite: true,
|
||||||
|
onUploadProgress: (progress) => {
|
||||||
|
console.log(`Uploaded ${progress.loaded} bytes of ${progress.total}`);
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
return await getRemoteMeta(client, uploadFile);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// file
|
||||||
|
// we ignore isRecursively parameter here
|
||||||
|
const localContent = await vault.adapter.readBinary(fileOrFolderPath);
|
||||||
|
let remoteContent = localContent;
|
||||||
|
if (password !== "") {
|
||||||
|
remoteContent = await encryptArrayBuffer(localContent, password);
|
||||||
|
}
|
||||||
|
// we need to create folders before uploading
|
||||||
|
const dir = getPathFolder(uploadFile);
|
||||||
|
if (dir !== "/" && dir !== "") {
|
||||||
|
await client.createDirectory(dir, { recursive: true });
|
||||||
|
}
|
||||||
|
await client.putFileContents(uploadFile, remoteContent, {
|
||||||
|
overwrite: true,
|
||||||
|
onUploadProgress: (progress) => {
|
||||||
|
console.log(`Uploaded ${progress.loaded} bytes of ${progress.total}`);
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
return await getRemoteMeta(client, uploadFile);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
export const listFromRemote = async (client: WebDAVClient, prefix?: string) => {
|
||||||
|
if (prefix !== undefined) {
|
||||||
|
throw Error("prefix not supported");
|
||||||
|
}
|
||||||
|
const contents = (await client.getDirectoryContents("/", {
|
||||||
|
deep: true,
|
||||||
|
details: false /* no need for verbose details here */,
|
||||||
|
glob: "/**" /* avoid dot files by using glob */,
|
||||||
|
})) as FileStat[];
|
||||||
|
return {
|
||||||
|
Contents: contents.map((x) => fromWebdavItemToRemoteItem(x)),
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
const downloadFromRemoteRaw = async (
|
||||||
|
client: WebDAVClient,
|
||||||
|
fileOrFolderPath: string
|
||||||
|
) => {
|
||||||
|
const buff = (await client.getFileContents(
|
||||||
|
getWebdavPath(fileOrFolderPath)
|
||||||
|
)) as BufferLike;
|
||||||
|
if (buff instanceof ArrayBuffer) {
|
||||||
|
return buff;
|
||||||
|
} else if (buff instanceof Buffer) {
|
||||||
|
return bufferToArrayBuffer(buff);
|
||||||
|
}
|
||||||
|
throw Error(`unexpected file content result with type ${typeof buff}`);
|
||||||
|
};
|
||||||
|
|
||||||
|
export const downloadFromRemote = async (
|
||||||
|
client: WebDAVClient,
|
||||||
|
fileOrFolderPath: string,
|
||||||
|
vault: Vault,
|
||||||
|
mtime: number,
|
||||||
|
password: string = "",
|
||||||
|
remoteEncryptedKey: string = ""
|
||||||
|
) => {
|
||||||
|
const isFolder = fileOrFolderPath.endsWith("/");
|
||||||
|
|
||||||
|
await mkdirpInVault(fileOrFolderPath, vault);
|
||||||
|
|
||||||
|
// the file is always local file
|
||||||
|
// we need to encrypt it
|
||||||
|
|
||||||
|
if (isFolder) {
|
||||||
|
// mkdirp locally is enough
|
||||||
|
// do nothing here
|
||||||
|
} else {
|
||||||
|
let downloadFile = fileOrFolderPath;
|
||||||
|
if (password !== "") {
|
||||||
|
downloadFile = remoteEncryptedKey;
|
||||||
|
}
|
||||||
|
downloadFile = getWebdavPath(downloadFile);
|
||||||
|
const remoteContent = await downloadFromRemoteRaw(client, downloadFile);
|
||||||
|
let localContent = remoteContent;
|
||||||
|
if (password !== "") {
|
||||||
|
localContent = await decryptArrayBuffer(remoteContent, password);
|
||||||
|
}
|
||||||
|
await vault.adapter.writeBinary(fileOrFolderPath, localContent, {
|
||||||
|
mtime: mtime,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
export const deleteFromRemote = async (
|
||||||
|
client: WebDAVClient,
|
||||||
|
fileOrFolderPath: string,
|
||||||
|
password: string = "",
|
||||||
|
remoteEncryptedKey: string = ""
|
||||||
|
) => {
|
||||||
|
if (fileOrFolderPath === "/") {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
let remoteFileName = fileOrFolderPath;
|
||||||
|
if (password !== "") {
|
||||||
|
remoteFileName = remoteEncryptedKey;
|
||||||
|
}
|
||||||
|
remoteFileName = getWebdavPath(remoteFileName);
|
||||||
|
try {
|
||||||
|
await client.deleteFile(remoteFileName);
|
||||||
|
console.log(`delete ${remoteFileName} succeeded`);
|
||||||
|
} catch (err) {
|
||||||
|
console.error("some error while deleting");
|
||||||
|
console.log(err);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
export const checkConnectivity = async (client: WebDAVClient) => {
|
||||||
|
try {
|
||||||
|
const results = await getRemoteMeta(client, "/");
|
||||||
|
if (results === undefined) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
} catch (err) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
};
|
||||||
+19
@@ -1 +1,20 @@
|
|||||||
/* set the styles */
|
/* set the styles */
|
||||||
|
|
||||||
|
.password_second_confirm {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.s3-disclaimer {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
.s3-hide {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.webdav-disclaimer {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.webdav-hide {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|||||||
@@ -0,0 +1,112 @@
|
|||||||
|
import * as fs from "fs";
|
||||||
|
import * as path from "path";
|
||||||
|
import * as chai from "chai";
|
||||||
|
import chaiAsPromised from "chai-as-promised";
|
||||||
|
import { base64ToBase32, bufferToArrayBuffer } from "../src/misc";
|
||||||
|
import {
|
||||||
|
decryptArrayBuffer,
|
||||||
|
decryptBase32ToString,
|
||||||
|
encryptArrayBuffer,
|
||||||
|
encryptStringToBase32,
|
||||||
|
} from "../src/encrypt";
|
||||||
|
|
||||||
|
chai.use(chaiAsPromised);
|
||||||
|
const expect = chai.expect;
|
||||||
|
|
||||||
|
describe("Encryption tests", () => {
|
||||||
|
beforeEach(function () {
|
||||||
|
global.window = {
|
||||||
|
crypto: require("crypto").webcrypto,
|
||||||
|
} as any;
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should encrypt string", async () => {
|
||||||
|
const k = "dkjdhkfhdkjgsdklxxd";
|
||||||
|
const password = "hey";
|
||||||
|
expect(await encryptStringToBase32(k, password)).to.not.equal(k);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should raise error using different password", async () => {
|
||||||
|
const k = "secret text";
|
||||||
|
const password = "hey";
|
||||||
|
const password2 = "hey2";
|
||||||
|
const enc = await encryptStringToBase32(k, password);
|
||||||
|
await expect(decryptBase32ToString(enc, password2)).to.be.rejected;
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should encrypt and decrypt string and get the same result returned", async () => {
|
||||||
|
const k = "jfkkjkjbce7983ycdeknkkjckooAIUHIDIBIE((*BII)njD/d/dd/d/sjxhux";
|
||||||
|
const password = "hfiuibec989###oiu982bj1`";
|
||||||
|
const enc = await encryptStringToBase32(k, password);
|
||||||
|
// console.log(enc);
|
||||||
|
const dec = await decryptBase32ToString(enc, password);
|
||||||
|
// console.log(dec);
|
||||||
|
expect(dec).equal(k);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should encrypt text file and get the same result as openssl", async () => {
|
||||||
|
const fileContent = (
|
||||||
|
await fs.readFileSync(
|
||||||
|
path.join(__dirname, "static_assets", "sometext.txt")
|
||||||
|
)
|
||||||
|
).toString("utf-8");
|
||||||
|
const password = "somepassword";
|
||||||
|
const saltHex = "8302F586FAB491EC";
|
||||||
|
const enc = await encryptStringToBase32(
|
||||||
|
fileContent,
|
||||||
|
password,
|
||||||
|
undefined,
|
||||||
|
saltHex
|
||||||
|
);
|
||||||
|
|
||||||
|
// two command returns same result:
|
||||||
|
// cat ./sometext.txt | openssl enc -p -aes-256-cbc -S 8302F586FAB491EC -pbkdf2 -iter 20000 -base64 -pass pass:somepassword
|
||||||
|
// openssl enc -p -aes-256-cbc -S 8302F586FAB491EC -pbkdf2 -iter 20000 -base64 -pass pass:somepassword -in ./sometext.txt
|
||||||
|
const opensslBase64Res =
|
||||||
|
"U2FsdGVkX1+DAvWG+rSR7BPXMnlvSSVGMdjsx7kE1CTH+28P+yAZRdDGgFWMGkMd";
|
||||||
|
// we output base32, so we need some transformation
|
||||||
|
const opensslBase32Res = base64ToBase32(opensslBase64Res);
|
||||||
|
|
||||||
|
expect(enc).equal(opensslBase32Res);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should encrypt binary file and get the same result as openssl", async () => {
|
||||||
|
const testFolder = path.join(__dirname, "static_assets", "mona_lisa");
|
||||||
|
const testFileName =
|
||||||
|
"1374px-Mona_Lisa,_by_Leonardo_da_Vinci,_from_C2RMF_retouched.jpg";
|
||||||
|
const fileArrBuf = bufferToArrayBuffer(
|
||||||
|
await fs.readFileSync(path.join(testFolder, testFileName))
|
||||||
|
);
|
||||||
|
const password = "somepassword";
|
||||||
|
const saltHex = "8302F586FAB491EC";
|
||||||
|
const enc = await encryptArrayBuffer(
|
||||||
|
fileArrBuf,
|
||||||
|
password,
|
||||||
|
undefined,
|
||||||
|
saltHex
|
||||||
|
);
|
||||||
|
const opensslArrBuf = bufferToArrayBuffer(
|
||||||
|
await fs.readFileSync(path.join(testFolder, testFileName + ".enc"))
|
||||||
|
);
|
||||||
|
|
||||||
|
// openssl enc -p -aes-256-cbc -S 8302F586FAB491EC -pbkdf2 -iter 20000 -pass pass:somepassword -in mona_lisa/1374px-Mona_Lisa,_by_Leonardo_da_Vinci,_from_C2RMF_retouched.jpg -out mona_lisa/1374px-Mona_Lisa,_by_Leonardo_da_Vinci,_from_C2RMF_retouched.jpg.enc
|
||||||
|
|
||||||
|
expect(Buffer.from(enc).equals(Buffer.from(opensslArrBuf))).to.be.true;
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should descypt binary file and get the same result as openssl", async () => {
|
||||||
|
const testFolder = path.join(__dirname, "static_assets", "mona_lisa");
|
||||||
|
const testFileName =
|
||||||
|
"1374px-Mona_Lisa,_by_Leonardo_da_Vinci,_from_C2RMF_retouched.jpg";
|
||||||
|
const fileArrBuf = bufferToArrayBuffer(
|
||||||
|
await fs.readFileSync(path.join(testFolder, testFileName + ".enc"))
|
||||||
|
);
|
||||||
|
const password = "somepassword";
|
||||||
|
const dec = await decryptArrayBuffer(fileArrBuf, password);
|
||||||
|
const opensslArrBuf = bufferToArrayBuffer(
|
||||||
|
await fs.readFileSync(path.join(testFolder, testFileName))
|
||||||
|
);
|
||||||
|
|
||||||
|
expect(Buffer.from(dec).equals(Buffer.from(opensslArrBuf))).to.be.true;
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -0,0 +1,113 @@
|
|||||||
|
import * as fs from "fs";
|
||||||
|
import * as path from "path";
|
||||||
|
import { expect } from "chai";
|
||||||
|
|
||||||
|
import * as misc from "../src/misc";
|
||||||
|
|
||||||
|
describe("Misc: hidden file", () => {
|
||||||
|
it("should find hidden file correctly", () => {
|
||||||
|
let item = "";
|
||||||
|
expect(misc.isHiddenPath(item)).to.be.false;
|
||||||
|
|
||||||
|
item = ".";
|
||||||
|
expect(misc.isHiddenPath(item)).to.be.false;
|
||||||
|
|
||||||
|
item = "..";
|
||||||
|
expect(misc.isHiddenPath(item)).to.be.false;
|
||||||
|
|
||||||
|
item = "/x/y/z/../././../a/b/c";
|
||||||
|
expect(misc.isHiddenPath(item)).to.be.false;
|
||||||
|
|
||||||
|
item = ".hidden";
|
||||||
|
expect(misc.isHiddenPath(item)).to.be.true;
|
||||||
|
|
||||||
|
item = "_hidden_loose";
|
||||||
|
expect(misc.isHiddenPath(item)).to.be.true;
|
||||||
|
expect(misc.isHiddenPath(item, false)).to.be.false;
|
||||||
|
|
||||||
|
item = "/sdd/_hidden_loose";
|
||||||
|
expect(misc.isHiddenPath(item)).to.be.true;
|
||||||
|
|
||||||
|
item = "what/../_hidden_loose/what/what/what";
|
||||||
|
expect(misc.isHiddenPath(item)).to.be.true;
|
||||||
|
|
||||||
|
item = "what/../_hidden_loose/what/what/what";
|
||||||
|
expect(misc.isHiddenPath(item, false)).to.be.false;
|
||||||
|
|
||||||
|
item = "what/../_hidden_loose/../.hidden/what/what/what";
|
||||||
|
expect(misc.isHiddenPath(item, false)).to.be.true;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("Misc: get folder levels", () => {
|
||||||
|
it("should ignore empty path", () => {
|
||||||
|
const item = "";
|
||||||
|
expect(misc.getFolderLevels(item)).to.be.empty;
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should ignore single file", () => {
|
||||||
|
const item = "xxx";
|
||||||
|
expect(misc.getFolderLevels(item)).to.be.empty;
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should detect path ending with /", () => {
|
||||||
|
const item = "xxx/";
|
||||||
|
const res = ["xxx"];
|
||||||
|
expect(misc.getFolderLevels(item)).to.deep.equal(res);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should correctly split folders and files", () => {
|
||||||
|
const item = "xxx/yyy/zzz.md";
|
||||||
|
const res = ["xxx", "xxx/yyy"];
|
||||||
|
expect(misc.getFolderLevels(item)).to.deep.equal(res);
|
||||||
|
|
||||||
|
const item2 = "xxx/yyy/zzz";
|
||||||
|
const res2 = ["xxx", "xxx/yyy"];
|
||||||
|
expect(misc.getFolderLevels(item2)).to.deep.equal(res2);
|
||||||
|
|
||||||
|
const item3 = "xxx/yyy/zzz/";
|
||||||
|
const res3 = ["xxx", "xxx/yyy", "xxx/yyy/zzz"];
|
||||||
|
expect(misc.getFolderLevels(item3)).to.deep.equal(res3);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("Misc: vaild file name tests", () => {
|
||||||
|
it("should treat no ascii correctly", async () => {
|
||||||
|
const x = misc.isVaildText("😄🍎 apple 苹果");
|
||||||
|
// console.log(x)
|
||||||
|
expect(x).to.be.true;
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should find not-printable chars correctly", async () => {
|
||||||
|
const x = misc.isVaildText("😄🍎 apple 苹果\u0000");
|
||||||
|
// console.log(x)
|
||||||
|
expect(x).to.be.false;
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should allow spaces/slashes/...", async () => {
|
||||||
|
const x = misc.isVaildText("😄🍎 apple 苹果/-_=/\\*%^&@#$`");
|
||||||
|
expect(x).to.be.true;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe("Misc: get dirname", () => {
|
||||||
|
it("should return itself for folder", async () => {
|
||||||
|
const x = misc.getPathFolder("ssss/");
|
||||||
|
// console.log(x)
|
||||||
|
expect(x).to.equal("ssss/");
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should return folder for file", async () => {
|
||||||
|
const x = misc.getPathFolder("sss/yyy");
|
||||||
|
// console.log(x)
|
||||||
|
expect(x).to.equal("sss/");
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should treat / specially", async () => {
|
||||||
|
const x = misc.getPathFolder("/");
|
||||||
|
expect(x).to.equal("/");
|
||||||
|
|
||||||
|
const y = misc.getPathFolder("/abc");
|
||||||
|
expect(y).to.equal("/");
|
||||||
|
});
|
||||||
|
});
|
||||||
+3
@@ -0,0 +1,3 @@
|
|||||||
|
The file 1374px-Mona_Lisa,_by_Leonardo_da_Vinci,_from_C2RMF_retouched.jpg is downloaded from Wikimedia Commons: https://commons.wikimedia.org/wiki/File:Mona_Lisa,_by_Leonardo_da_Vinci,_from_C2RMF_retouched.jpg .
|
||||||
|
|
||||||
|
Quoted from the web address: ... This photographic reproduction is therefore also considered to be in the public domain in the United States. In other jurisdictions, re-use of this content may be restricted ...
|
||||||
+3
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:b332c298be98be9968715952822431a051f9d07e67460cdcf91a5a3a305b5df1
|
||||||
|
size 1141550
|
||||||
+3
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:7687eaf60ed93f754b107dc86a437aa97fad7bedd40432171b08c22cded7b559
|
||||||
|
size 1141568
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
# The encryption file is produced by the following command.
|
||||||
|
# A salt is explictly provided because we need reproducible output in tests.
|
||||||
|
openssl enc -p -aes-256-cbc -S 8302F586FAB491EC -pbkdf2 -iter 10000 -pass pass:somepassword -in '1374px-Mona_Lisa,_by_Leonardo_da_Vinci,_from_C2RMF_retouched.jpg' -out 1374px-Mona_Lisa,_by_Leonardo_da_Vinci,_from_C2RMF_retouched.jpg.enc
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
A secret text 你好世界
|
||||||
+1
-1
@@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"0.0.2": "0.12.15"
|
"0.1.5": "0.12.15"
|
||||||
}
|
}
|
||||||
|
|||||||
+32
-21
@@ -1,4 +1,5 @@
|
|||||||
const path = require("path");
|
const path = require("path");
|
||||||
|
const webpack = require("webpack");
|
||||||
const TerserPlugin = require("terser-webpack-plugin");
|
const TerserPlugin = require("terser-webpack-plugin");
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
@@ -9,6 +10,16 @@ module.exports = {
|
|||||||
path: __dirname,
|
path: __dirname,
|
||||||
libraryTarget: "commonjs",
|
libraryTarget: "commonjs",
|
||||||
},
|
},
|
||||||
|
plugins: [
|
||||||
|
// Work around for Buffer is undefined:
|
||||||
|
// https://github.com/webpack/changelog-v5/issues/10
|
||||||
|
new webpack.ProvidePlugin({
|
||||||
|
Buffer: ["buffer", "Buffer"],
|
||||||
|
}),
|
||||||
|
new webpack.ProvidePlugin({
|
||||||
|
process: "process/browser",
|
||||||
|
}),
|
||||||
|
],
|
||||||
module: {
|
module: {
|
||||||
rules: [
|
rules: [
|
||||||
{
|
{
|
||||||
@@ -20,31 +31,31 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
resolve: {
|
resolve: {
|
||||||
extensions: [".tsx", ".ts", ".js"],
|
extensions: [".tsx", ".ts", ".js"],
|
||||||
mainFields: ["module", "main"],
|
mainFields: ["browser", "module", "main"],
|
||||||
fallback: {
|
fallback: {
|
||||||
assert: require.resolve("assert"),
|
// assert: require.resolve("assert"),
|
||||||
buffer: require.resolve("buffer/"),
|
// buffer: require.resolve("buffer/"),
|
||||||
console: require.resolve("console-browserify"),
|
// console: require.resolve("console-browserify"),
|
||||||
constants: require.resolve("constants-browserify"),
|
// constants: require.resolve("constants-browserify"),
|
||||||
crypto: require.resolve("crypto-browserify"),
|
// crypto: require.resolve("crypto-browserify"),
|
||||||
domain: require.resolve("domain-browser"),
|
// domain: require.resolve("domain-browser"),
|
||||||
events: require.resolve("events"),
|
// events: require.resolve("events"),
|
||||||
http: require.resolve("stream-http"),
|
// http: require.resolve("stream-http"),
|
||||||
https: require.resolve("https-browserify"),
|
// https: require.resolve("https-browserify"),
|
||||||
os: require.resolve("os-browserify/browser"),
|
// os: require.resolve("os-browserify/browser"),
|
||||||
path: require.resolve("path-browserify"),
|
path: require.resolve("path-browserify"),
|
||||||
punycode: require.resolve("punycode"),
|
// punycode: require.resolve("punycode"),
|
||||||
process: require.resolve("process/browser"),
|
process: require.resolve("process/browser"),
|
||||||
querystring: require.resolve("querystring-es3"),
|
// querystring: require.resolve("querystring-es3"),
|
||||||
stream: require.resolve("stream-browserify"),
|
stream: require.resolve("stream-browserify"),
|
||||||
string_decoder: require.resolve("string_decoder"),
|
// string_decoder: require.resolve("string_decoder"),
|
||||||
sys: require.resolve("util"),
|
// sys: require.resolve("util"),
|
||||||
timers: require.resolve("timers-browserify"),
|
// timers: require.resolve("timers-browserify"),
|
||||||
tty: require.resolve("tty-browserify"),
|
// tty: require.resolve("tty-browserify"),
|
||||||
url: require.resolve("url"),
|
// url: require.resolve("url"),
|
||||||
util: require.resolve("util"),
|
// util: require.resolve("util"),
|
||||||
vm: require.resolve("vm-browserify"),
|
// vm: require.resolve("vm-browserify"),
|
||||||
zlib: require.resolve("browserify-zlib"),
|
// zlib: require.resolve("browserify-zlib"),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
externals: {
|
externals: {
|
||||||
|
|||||||
Reference in New Issue
Block a user