Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
aa3aecb074 | ||
|
|
9128f9ed5b | ||
|
|
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 |
@@ -38,3 +38,4 @@ jobs:
|
|||||||
path: |
|
path: |
|
||||||
main.js
|
main.js
|
||||||
manifest.json
|
manifest.json
|
||||||
|
styles.css
|
||||||
|
|||||||
@@ -13,5 +13,8 @@ main.js
|
|||||||
# obsidian
|
# obsidian
|
||||||
data.json
|
data.json
|
||||||
|
|
||||||
|
# debug
|
||||||
|
logs.txt
|
||||||
|
|
||||||
# hidden files
|
# hidden files
|
||||||
.*
|
.*
|
||||||
|
|||||||
@@ -1,26 +1,52 @@
|
|||||||
# Save Remote
|
# Remotely Save
|
||||||
|
|
||||||
This is yet another sync plugin for Obsidian.
|
This is yet another unofficial sync plugin for Obsidian.
|
||||||
|
|
||||||
## Download and Install
|
|
||||||
|
|
||||||
[](https://github.com/fyears/obsidian-save-remote/actions/workflows/auto-build.yml)
|
|
||||||
|
|
||||||
Every artifacts are placed in the "Summary" under every successful builds.
|
|
||||||
|
|
||||||
Besides manually download the files, you can also use [Obsidian42 - BRAT](https://github.com/TfTHacker/obsidian42-brat) to install this plugin.
|
|
||||||
|
|
||||||
## 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
|
||||||
|
|
||||||
- [x] 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.
|
||||||
|
|||||||
@@ -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.
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
# Algorithm
|
# Sync Algorithm
|
||||||
|
|
||||||
## Sources
|
## Sources
|
||||||
|
|
||||||
+4
-4
@@ -1,9 +1,9 @@
|
|||||||
{
|
{
|
||||||
"id": "obsdian-save-remote",
|
"id": "obsidian-remotely-save",
|
||||||
"name": "Save remote",
|
"name": "Remotely Save",
|
||||||
"version": "0.0.12",
|
"version": "0.1.6",
|
||||||
"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
|
||||||
|
|||||||
+6
-4
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "obsidian-save-remote",
|
"name": "obsidian-remotely-save",
|
||||||
"version": "0.0.12",
|
"version": "0.1.6",
|
||||||
"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",
|
||||||
@@ -35,12 +35,13 @@
|
|||||||
},
|
},
|
||||||
"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",
|
||||||
"acorn": "^8.5.0",
|
"acorn": "^8.5.0",
|
||||||
"aws-crt": "^1.10.1",
|
"aws-crt": "^1.10.1",
|
||||||
"buffer": "^6.0.3",
|
"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",
|
"path-browserify": "^1.0.1",
|
||||||
@@ -49,6 +50,7 @@
|
|||||||
"rimraf": "^3.0.2",
|
"rimraf": "^3.0.2",
|
||||||
"stream-browserify": "^3.0.0",
|
"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;
|
||||||
|
}
|
||||||
+4
-12
@@ -1,22 +1,14 @@
|
|||||||
import { TAbstractFile, TFolder, TFile, Vault } from "obsidian";
|
import { TAbstractFile, TFolder, TFile, Vault } from "obsidian";
|
||||||
|
|
||||||
import * as lf from "lovefield-ts/dist/es6/lf.js";
|
|
||||||
|
|
||||||
import type { SyncPlanType } from "./sync";
|
import type { SyncPlanType } from "./sync";
|
||||||
import {
|
import { readAllSyncPlanRecordTexts } from "./localdb";
|
||||||
insertSyncPlanRecord,
|
import type { InternalDBs } from "./localdb";
|
||||||
clearAllSyncPlanRecords,
|
|
||||||
readAllSyncPlanRecordTexts,
|
|
||||||
} from "./localdb";
|
|
||||||
import { mkdirpInVault } from "./misc";
|
import { mkdirpInVault } from "./misc";
|
||||||
|
|
||||||
const DEFAULT_DEBUG_FOLDER = "_debug_save_remote/";
|
const DEFAULT_DEBUG_FOLDER = "_debug_remotely_save/";
|
||||||
const DEFAULT_SYNC_PLANS_HISTORY_FILE_PREFIX = "sync_plans_hist_exported_on_";
|
const DEFAULT_SYNC_PLANS_HISTORY_FILE_PREFIX = "sync_plans_hist_exported_on_";
|
||||||
|
|
||||||
export const exportSyncPlansToFiles = async (
|
export const exportSyncPlansToFiles = async (db: InternalDBs, vault: Vault) => {
|
||||||
db: lf.DatabaseConnection,
|
|
||||||
vault: Vault
|
|
||||||
) => {
|
|
||||||
console.log("exporting");
|
console.log("exporting");
|
||||||
await mkdirpInVault(DEFAULT_DEBUG_FOLDER, vault);
|
await mkdirpInVault(DEFAULT_DEBUG_FOLDER, vault);
|
||||||
const records = await readAllSyncPlanRecordTexts(db);
|
const records = await readAllSyncPlanRecordTexts(db);
|
||||||
|
|||||||
+1
-1
@@ -6,7 +6,7 @@ import {
|
|||||||
arrayBufferToHex,
|
arrayBufferToHex,
|
||||||
} from "./misc";
|
} from "./misc";
|
||||||
|
|
||||||
const DEFAULT_ITER = 10000;
|
const DEFAULT_ITER = 20000;
|
||||||
|
|
||||||
// base32.stringify(Buffer.from('Salted__'))
|
// base32.stringify(Buffer.from('Salted__'))
|
||||||
export const MAGIC_ENCRYPTED_PREFIX_BASE32 = "KNQWY5DFMRPV";
|
export const MAGIC_ENCRYPTED_PREFIX_BASE32 = "KNQWY5DFMRPV";
|
||||||
|
|||||||
+145
-175
@@ -1,12 +1,14 @@
|
|||||||
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";
|
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 const DEFAULT_SYNC_PLANS_HISTORY = "syncplanshistory";
|
||||||
@@ -16,84 +18,75 @@ export interface FileFolderHistoryRecord {
|
|||||||
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 {
|
interface SyncPlanRecord {
|
||||||
ts: number;
|
ts: number;
|
||||||
remote_type: string;
|
remoteType: string;
|
||||||
sync_plan: 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"]);
|
|
||||||
|
|
||||||
schemaBuilder
|
|
||||||
.createTable(DEFAULT_SYNC_PLANS_HISTORY)
|
|
||||||
.addColumn("id", lf.Type.INTEGER)
|
|
||||||
.addColumn("ts", lf.Type.INTEGER)
|
|
||||||
.addColumn("remote_type", lf.Type.STRING)
|
|
||||||
.addColumn("sync_plan", lf.Type.STRING)
|
|
||||||
.addPrimaryKey(["id"], true)
|
|
||||||
.addIndex("tskey", ["ts"]);
|
|
||||||
|
|
||||||
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");
|
||||||
@@ -107,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) {
|
||||||
@@ -146,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 "/"
|
||||||
@@ -161,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) {
|
||||||
@@ -186,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}/`;
|
||||||
@@ -201,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,
|
||||||
@@ -228,89 +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: lf.DatabaseConnection) => {
|
export const clearAllSyncMetaMapping = async (db: InternalDBs) => {
|
||||||
const tbl = db.getSchema().table(DEFAULT_TBL_SYNC_MAPPING);
|
await db.syncMappingTbl.clear();
|
||||||
await db.delete().from(tbl).exec();
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export const insertSyncPlanRecord = async (
|
export const insertSyncPlanRecord = async (
|
||||||
db: lf.DatabaseConnection,
|
db: InternalDBs,
|
||||||
syncPlan: SyncPlanType
|
syncPlan: SyncPlanType
|
||||||
) => {
|
) => {
|
||||||
const schema = db.getSchema().table(DEFAULT_SYNC_PLANS_HISTORY);
|
const record = {
|
||||||
const row = schema.createRow({
|
|
||||||
ts: syncPlan.ts,
|
ts: syncPlan.ts,
|
||||||
remote_type: syncPlan.remoteType,
|
remoteType: syncPlan.remoteType,
|
||||||
sync_plan: JSON.stringify(syncPlan, null, 2),
|
syncPlan: JSON.stringify(syncPlan /* directly stringify */, null, 2),
|
||||||
} as SyncPlanRecord);
|
} as SyncPlanRecord;
|
||||||
await db.insertOrReplace().into(schema).values([row]).exec();
|
await db.syncPlansTbl.setItem(`${syncPlan.ts}`, record);
|
||||||
};
|
};
|
||||||
|
|
||||||
export const clearAllSyncPlanRecords = async (db: lf.DatabaseConnection) => {
|
export const clearAllSyncPlanRecords = async (db: InternalDBs) => {
|
||||||
const tbl = db.getSchema().table(DEFAULT_SYNC_PLANS_HISTORY);
|
await db.syncPlansTbl.clear();
|
||||||
await db.delete().from(tbl).exec();
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export const readAllSyncPlanRecordTexts = async (db: lf.DatabaseConnection) => {
|
export const readAllSyncPlanRecordTexts = async (db: InternalDBs) => {
|
||||||
const schema = db.getSchema().table(DEFAULT_SYNC_PLANS_HISTORY);
|
const records = [] as SyncPlanRecord[];
|
||||||
|
await db.syncPlansTbl.iterate((value, key, iterationNumber) => {
|
||||||
const records = (await db
|
records.push(value as SyncPlanRecord);
|
||||||
.select()
|
});
|
||||||
.from(schema)
|
records.sort((a, b) => -(a.ts - b.ts)); // descending
|
||||||
.orderBy(schema.col("ts"), lf.Order.DESC)
|
|
||||||
.exec()) as SyncPlanRecord[];
|
|
||||||
|
|
||||||
if (records === undefined) {
|
if (records === undefined) {
|
||||||
return [] as string[];
|
return [] as string[];
|
||||||
} else {
|
} else {
|
||||||
return records.map((x) => x.sync_plan);
|
return records.map((x) => x.syncPlan);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
+383
-154
@@ -11,50 +11,50 @@ import {
|
|||||||
TFolder,
|
TFolder,
|
||||||
} from "obsidian";
|
} from "obsidian";
|
||||||
import * as CodeMirror from "codemirror";
|
import * as CodeMirror from "codemirror";
|
||||||
import {
|
|
||||||
clearAllSyncPlanRecords,
|
|
||||||
clearAllSyncMetaMapping,
|
|
||||||
DatabaseConnection,
|
|
||||||
} from "./localdb";
|
|
||||||
import {
|
import {
|
||||||
prepareDBs,
|
prepareDBs,
|
||||||
destroyDBs,
|
destroyDBs,
|
||||||
loadDeleteRenameHistoryTable,
|
loadDeleteRenameHistoryTable,
|
||||||
|
clearAllSyncPlanRecords,
|
||||||
|
clearAllSyncMetaMapping,
|
||||||
insertDeleteRecord,
|
insertDeleteRecord,
|
||||||
insertRenameRecord,
|
insertRenameRecord,
|
||||||
getAllDeleteRenameRecords,
|
|
||||||
insertSyncPlanRecord,
|
insertSyncPlanRecord,
|
||||||
} from "./localdb";
|
} from "./localdb";
|
||||||
|
import type { InternalDBs } from "./localdb";
|
||||||
|
|
||||||
import type { SyncStatusType, PasswordCheckType } from "./sync";
|
import type { SyncStatusType, PasswordCheckType } from "./sync";
|
||||||
import { isPasswordOk, getSyncPlan, doActualSync } from "./sync";
|
import { isPasswordOk, getSyncPlan, doActualSync } from "./sync";
|
||||||
import {
|
import { S3Config, DEFAULT_S3_CONFIG } from "./s3";
|
||||||
DEFAULT_S3_CONFIG,
|
import { WebdavConfig, DEFAULT_WEBDAV_CONFIG, WebdavAuthType } from "./webdav";
|
||||||
getS3Client,
|
import { RemoteClient } from "./remote";
|
||||||
listFromRemote,
|
|
||||||
S3Config,
|
|
||||||
checkS3Connectivity,
|
|
||||||
} from "./s3";
|
|
||||||
import { exportSyncPlansToFiles } from "./debugMode";
|
import { exportSyncPlansToFiles } from "./debugMode";
|
||||||
|
import { SUPPORTED_SERVICES_TYPE } from "./baseTypes";
|
||||||
|
|
||||||
interface SaveRemotePluginSettings {
|
interface RemotelySavePluginSettings {
|
||||||
s3?: S3Config;
|
s3: S3Config;
|
||||||
password?: string;
|
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: "",
|
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();
|
||||||
|
|
||||||
@@ -74,21 +74,29 @@ export default class SaveRemotePlugin extends Plugin {
|
|||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
|
||||||
this.addRibbonIcon("switch", "Save Remote", async () => {
|
this.addRibbonIcon("switch", "Remotely Save", async () => {
|
||||||
if (this.syncStatus !== "idle") {
|
if (this.syncStatus !== "idle") {
|
||||||
new Notice(`Save Remote already running in stage ${this.syncStatus}!`);
|
new Notice(
|
||||||
|
`Remotely Save already running in stage ${this.syncStatus}!`
|
||||||
|
);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
//console.log(`huh ${this.settings.password}`)
|
//console.log(`huh ${this.settings.password}`)
|
||||||
new Notice("1/6 Save Remote Sync Preparing");
|
new Notice(
|
||||||
|
`1/6 Remotely Save Sync Preparing (${this.settings.serviceType})`
|
||||||
|
);
|
||||||
this.syncStatus = "preparing";
|
this.syncStatus = "preparing";
|
||||||
|
|
||||||
new Notice("2/6 Starting to fetch remote meta data.");
|
new Notice("2/6 Starting to fetch remote meta data.");
|
||||||
this.syncStatus = "getting_remote_meta";
|
this.syncStatus = "getting_remote_meta";
|
||||||
const s3Client = getS3Client(this.settings.s3);
|
const client = new RemoteClient(
|
||||||
const remoteRsp = await listFromRemote(s3Client, this.settings.s3);
|
this.settings.serviceType,
|
||||||
|
this.settings.s3,
|
||||||
|
this.settings.webdav
|
||||||
|
);
|
||||||
|
const remoteRsp = await client.listFromRemote();
|
||||||
|
|
||||||
new Notice("3/6 Starting to fetch local meta data.");
|
new Notice("3/6 Starting to fetch local meta data.");
|
||||||
this.syncStatus = "getting_local_meta";
|
this.syncStatus = "getting_local_meta";
|
||||||
@@ -105,6 +113,7 @@ export default class SaveRemotePlugin extends Plugin {
|
|||||||
this.settings.password
|
this.settings.password
|
||||||
);
|
);
|
||||||
if (!passwordCheckResult.ok) {
|
if (!passwordCheckResult.ok) {
|
||||||
|
new Notice("something goes wrong while checking password");
|
||||||
throw Error(passwordCheckResult.reason);
|
throw Error(passwordCheckResult.reason);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -115,6 +124,7 @@ export default class SaveRemotePlugin extends Plugin {
|
|||||||
local,
|
local,
|
||||||
localHistory,
|
localHistory,
|
||||||
this.db,
|
this.db,
|
||||||
|
client.serviceType,
|
||||||
this.settings.password
|
this.settings.password
|
||||||
);
|
);
|
||||||
console.log(syncPlan.mixedStates); // for debugging
|
console.log(syncPlan.mixedStates); // for debugging
|
||||||
@@ -123,23 +133,22 @@ export default class SaveRemotePlugin extends Plugin {
|
|||||||
// The operations above are read only and kind of safe.
|
// The operations above are read only and kind of safe.
|
||||||
// The operations below begins to write or delete (!!!) something.
|
// The operations below begins to write or delete (!!!) something.
|
||||||
|
|
||||||
new Notice("6/7 Save Remote Sync data exchanging!");
|
new Notice("6/7 Remotely Save Sync data exchanging!");
|
||||||
|
|
||||||
this.syncStatus = "syncing";
|
this.syncStatus = "syncing";
|
||||||
await doActualSync(
|
await doActualSync(
|
||||||
s3Client,
|
client,
|
||||||
this.settings.s3,
|
|
||||||
this.db,
|
this.db,
|
||||||
this.app.vault,
|
this.app.vault,
|
||||||
syncPlan,
|
syncPlan,
|
||||||
this.settings.password
|
this.settings.password
|
||||||
);
|
);
|
||||||
|
|
||||||
new Notice("7/7 Save Remote finish!");
|
new Notice("7/7 Remotely Save finish!");
|
||||||
this.syncStatus = "finish";
|
this.syncStatus = "finish";
|
||||||
this.syncStatus = "idle";
|
this.syncStatus = "idle";
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
const msg = `Save Remote error while ${this.syncStatus}`;
|
const msg = `Remotely Save error while ${this.syncStatus}`;
|
||||||
console.log(msg);
|
console.log(msg);
|
||||||
console.log(error);
|
console.log(error);
|
||||||
new Notice(msg);
|
new Notice(msg);
|
||||||
@@ -148,12 +157,12 @@ export default class SaveRemotePlugin extends Plugin {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
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);
|
||||||
@@ -165,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();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -187,9 +196,9 @@ export default class SaveRemotePlugin extends Plugin {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export class PasswordModal extends Modal {
|
export class PasswordModal extends Modal {
|
||||||
plugin: SaveRemotePlugin;
|
plugin: RemotelySavePlugin;
|
||||||
newPassword: string;
|
newPassword: string;
|
||||||
constructor(app: App, plugin: SaveRemotePlugin, newPassword: string) {
|
constructor(app: App, plugin: RemotelySavePlugin, newPassword: string) {
|
||||||
super(app);
|
super(app);
|
||||||
this.plugin = plugin;
|
this.plugin = plugin;
|
||||||
this.newPassword = newPassword;
|
this.newPassword = newPassword;
|
||||||
@@ -200,18 +209,20 @@ export class PasswordModal extends Modal {
|
|||||||
// contentEl.setText("Add Or change password.");
|
// contentEl.setText("Add Or change password.");
|
||||||
contentEl.createEl("h2", { text: "Hold on and PLEASE READ ON..." });
|
contentEl.createEl("h2", { text: "Hold on and PLEASE READ ON..." });
|
||||||
contentEl.createEl("p", {
|
contentEl.createEl("p", {
|
||||||
text: "This password allows you encrypt your files before sending to remote services.",
|
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: "Empty means no password." });
|
|
||||||
|
|
||||||
contentEl.createEl("p", {
|
contentEl.createEl("p", {
|
||||||
text: "Attention 1/4: The password setting itself is stored in PLAIN TEXT LOCALLY (because the plugin needs to use the password to encrypt the files) (and the password would not be sent to remote by this plugin).",
|
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", {
|
contentEl.createEl("p", {
|
||||||
text: "Attention 2/4: The file contents are encrypted using openssl format. BUT, some metadata such as file sizes and directory structures are not encrypted or can be easily guessed.",
|
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", {
|
contentEl.createEl("p", {
|
||||||
text: "Attention 3/4: If you change the password. You should make sure the remote service (s3/webdav/...) IS EMPTY, or REMOTE FILES WERE ENCRYPTED BY THAT NEW PASSWORD. OTHERWISE SOMETHING BAD WOULD HAPPEN!",
|
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", {
|
contentEl.createEl("p", {
|
||||||
text: "Attention 4/4: The longer the password, the better.",
|
text: "Attention 4/4: The longer the password, the better.",
|
||||||
@@ -229,7 +240,7 @@ export class PasswordModal extends Modal {
|
|||||||
button.setClass("password_second_confirm");
|
button.setClass("password_second_confirm");
|
||||||
})
|
})
|
||||||
.addButton((button) => {
|
.addButton((button) => {
|
||||||
button.setButtonText("Cancel (password not changed.)");
|
button.setButtonText("Go Back");
|
||||||
button.onClick(() => {
|
button.onClick(() => {
|
||||||
this.close();
|
this.close();
|
||||||
});
|
});
|
||||||
@@ -242,10 +253,10 @@ export class PasswordModal extends Modal {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class SaveRemoteSettingTab extends PluginSettingTab {
|
class RemotelySaveSettingTab extends PluginSettingTab {
|
||||||
plugin: SaveRemotePlugin;
|
plugin: RemotelySavePlugin;
|
||||||
|
|
||||||
constructor(app: App, plugin: SaveRemotePlugin) {
|
constructor(app: App, plugin: RemotelySavePlugin) {
|
||||||
super(app, plugin);
|
super(app, plugin);
|
||||||
this.plugin = plugin;
|
this.plugin = plugin;
|
||||||
}
|
}
|
||||||
@@ -255,99 +266,14 @@ class SaveRemoteSettingTab extends PluginSettingTab {
|
|||||||
|
|
||||||
containerEl.empty();
|
containerEl.empty();
|
||||||
|
|
||||||
containerEl.createEl("h1", { text: "Save Remote" });
|
containerEl.createEl("h1", { text: "Remotely Save" });
|
||||||
|
|
||||||
containerEl.createEl("h2", { text: "S3" });
|
const generalDiv = containerEl.createEl("div");
|
||||||
|
generalDiv.createEl("h2", { text: "General" });
|
||||||
new Setting(containerEl)
|
|
||||||
.setName("s3Endpoint")
|
|
||||||
.setDesc("s3Endpoint")
|
|
||||||
.addText((text) =>
|
|
||||||
text
|
|
||||||
.setPlaceholder("")
|
|
||||||
.setValue(this.plugin.settings.s3.s3Endpoint)
|
|
||||||
.onChange(async (value) => {
|
|
||||||
this.plugin.settings.s3.s3Endpoint = value.trim();
|
|
||||||
await this.plugin.saveSettings();
|
|
||||||
})
|
|
||||||
);
|
|
||||||
|
|
||||||
new Setting(containerEl)
|
|
||||||
.setName("s3Region")
|
|
||||||
.setDesc("s3Region")
|
|
||||||
.addText((text) =>
|
|
||||||
text
|
|
||||||
.setPlaceholder("")
|
|
||||||
.setValue(`${this.plugin.settings.s3.s3Region}`)
|
|
||||||
.onChange(async (value) => {
|
|
||||||
this.plugin.settings.s3.s3Region = value.trim();
|
|
||||||
await this.plugin.saveSettings();
|
|
||||||
})
|
|
||||||
);
|
|
||||||
|
|
||||||
new Setting(containerEl)
|
|
||||||
.setName("s3AccessKeyID")
|
|
||||||
.setDesc("s3AccessKeyID")
|
|
||||||
.addText((text) =>
|
|
||||||
text
|
|
||||||
.setPlaceholder("")
|
|
||||||
.setValue(`${this.plugin.settings.s3.s3AccessKeyID}`)
|
|
||||||
.onChange(async (value) => {
|
|
||||||
this.plugin.settings.s3.s3AccessKeyID = value.trim();
|
|
||||||
await this.plugin.saveSettings();
|
|
||||||
})
|
|
||||||
);
|
|
||||||
|
|
||||||
new Setting(containerEl)
|
|
||||||
.setName("s3SecretAccessKey")
|
|
||||||
.setDesc("s3SecretAccessKey")
|
|
||||||
.addText((text) =>
|
|
||||||
text
|
|
||||||
.setPlaceholder("")
|
|
||||||
.setValue(`${this.plugin.settings.s3.s3SecretAccessKey}`)
|
|
||||||
.onChange(async (value) => {
|
|
||||||
this.plugin.settings.s3.s3SecretAccessKey = value.trim();
|
|
||||||
await this.plugin.saveSettings();
|
|
||||||
})
|
|
||||||
);
|
|
||||||
|
|
||||||
new Setting(containerEl)
|
|
||||||
.setName("s3BucketName")
|
|
||||||
.setDesc("s3BucketName")
|
|
||||||
.addText((text) =>
|
|
||||||
text
|
|
||||||
.setPlaceholder("")
|
|
||||||
.setValue(`${this.plugin.settings.s3.s3BucketName}`)
|
|
||||||
.onChange(async (value) => {
|
|
||||||
this.plugin.settings.s3.s3BucketName = value.trim();
|
|
||||||
await this.plugin.saveSettings();
|
|
||||||
})
|
|
||||||
);
|
|
||||||
|
|
||||||
new Setting(containerEl)
|
|
||||||
.setName("check connectivity")
|
|
||||||
.setDesc("check connectivity")
|
|
||||||
.addButton(async (button) => {
|
|
||||||
button.setButtonText("Check");
|
|
||||||
button.onClick(async () => {
|
|
||||||
new Notice("Checking...");
|
|
||||||
const s3Client = getS3Client(this.plugin.settings.s3);
|
|
||||||
const res = await checkS3Connectivity(
|
|
||||||
s3Client,
|
|
||||||
this.plugin.settings.s3
|
|
||||||
);
|
|
||||||
if (res) {
|
|
||||||
new Notice("Great! The bucket can be accessed.");
|
|
||||||
} else {
|
|
||||||
new Notice("The S3 bucket cannot be reached.");
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
containerEl.createEl("h2", { text: "General" });
|
|
||||||
|
|
||||||
|
const passwordDiv = generalDiv.createEl("div");
|
||||||
let newPassword = `${this.plugin.settings.password}`;
|
let newPassword = `${this.plugin.settings.password}`;
|
||||||
new Setting(containerEl)
|
new Setting(passwordDiv)
|
||||||
.setName("encryption password")
|
.setName("encryption password")
|
||||||
.setDesc(
|
.setDesc(
|
||||||
'Password for E2E encryption. Empty for no password. You need to click "Confirm".'
|
'Password for E2E encryption. Empty for no password. You need to click "Confirm".'
|
||||||
@@ -367,17 +293,307 @@ class SaveRemoteSettingTab extends PluginSettingTab {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
containerEl.createEl("h2", { text: "Debug" });
|
// we need to create the div in advance of s3Div and webdavDiv
|
||||||
|
const serviceChooserDiv = generalDiv.createEl("div");
|
||||||
|
|
||||||
const syncPlanDiv = containerEl.createEl("div");
|
let clickChooserTimes = 0;
|
||||||
syncPlanDiv.createEl("p", {
|
serviceChooserDiv.onClickEvent((x) => {
|
||||||
text: "Sync plans are created every time after you trigger sync and before the actual sync.",
|
if (Platform.isIosApp) {
|
||||||
});
|
// downgrade the experiment
|
||||||
syncPlanDiv.createEl("p", {
|
// because iOS doesn't support x.detail
|
||||||
text: "They are useful to know what would actually happen in those sync.",
|
clickChooserTimes += 1;
|
||||||
|
setTimeout(function () {
|
||||||
|
clickChooserTimes = 0;
|
||||||
|
}, 2000);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((Platform.isIosApp && clickChooserTimes === 5) || 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."
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
x.preventDefault();
|
||||||
});
|
});
|
||||||
|
|
||||||
new Setting(containerEl)
|
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")
|
||||||
|
.setDesc("s3Endpoint")
|
||||||
|
.addText((text) =>
|
||||||
|
text
|
||||||
|
.setPlaceholder("")
|
||||||
|
.setValue(this.plugin.settings.s3.s3Endpoint)
|
||||||
|
.onChange(async (value) => {
|
||||||
|
this.plugin.settings.s3.s3Endpoint = value.trim();
|
||||||
|
await this.plugin.saveSettings();
|
||||||
|
})
|
||||||
|
);
|
||||||
|
|
||||||
|
new Setting(s3Div)
|
||||||
|
.setName("s3Region")
|
||||||
|
.setDesc("s3Region")
|
||||||
|
.addText((text) =>
|
||||||
|
text
|
||||||
|
.setPlaceholder("")
|
||||||
|
.setValue(`${this.plugin.settings.s3.s3Region}`)
|
||||||
|
.onChange(async (value) => {
|
||||||
|
this.plugin.settings.s3.s3Region = value.trim();
|
||||||
|
await this.plugin.saveSettings();
|
||||||
|
})
|
||||||
|
);
|
||||||
|
|
||||||
|
new Setting(s3Div)
|
||||||
|
.setName("s3AccessKeyID")
|
||||||
|
.setDesc("s3AccessKeyID")
|
||||||
|
.addText((text) =>
|
||||||
|
text
|
||||||
|
.setPlaceholder("")
|
||||||
|
.setValue(`${this.plugin.settings.s3.s3AccessKeyID}`)
|
||||||
|
.onChange(async (value) => {
|
||||||
|
this.plugin.settings.s3.s3AccessKeyID = value.trim();
|
||||||
|
await this.plugin.saveSettings();
|
||||||
|
})
|
||||||
|
);
|
||||||
|
|
||||||
|
new Setting(s3Div)
|
||||||
|
.setName("s3SecretAccessKey")
|
||||||
|
.setDesc("s3SecretAccessKey")
|
||||||
|
.addText((text) =>
|
||||||
|
text
|
||||||
|
.setPlaceholder("")
|
||||||
|
.setValue(`${this.plugin.settings.s3.s3SecretAccessKey}`)
|
||||||
|
.onChange(async (value) => {
|
||||||
|
this.plugin.settings.s3.s3SecretAccessKey = value.trim();
|
||||||
|
await this.plugin.saveSettings();
|
||||||
|
})
|
||||||
|
);
|
||||||
|
|
||||||
|
new Setting(s3Div)
|
||||||
|
.setName("s3BucketName")
|
||||||
|
.setDesc("s3BucketName")
|
||||||
|
.addText((text) =>
|
||||||
|
text
|
||||||
|
.setPlaceholder("")
|
||||||
|
.setValue(`${this.plugin.settings.s3.s3BucketName}`)
|
||||||
|
.onChange(async (value) => {
|
||||||
|
this.plugin.settings.s3.s3BucketName = value.trim();
|
||||||
|
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")
|
.setName("export sync plans")
|
||||||
.setDesc("export sync plans")
|
.setDesc("export sync plans")
|
||||||
.addButton(async (button) => {
|
.addButton(async (button) => {
|
||||||
@@ -388,7 +604,7 @@ class SaveRemoteSettingTab extends PluginSettingTab {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
new Setting(containerEl)
|
new Setting(syncPlanDiv)
|
||||||
.setName("delete sync plans history in db")
|
.setName("delete sync plans history in db")
|
||||||
.setDesc("delete sync plans history in db")
|
.setDesc("delete sync plans history in db")
|
||||||
.addButton(async (button) => {
|
.addButton(async (button) => {
|
||||||
@@ -399,16 +615,12 @@ class SaveRemoteSettingTab extends PluginSettingTab {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
const syncMappingDiv = containerEl.createEl("div");
|
const syncMappingDiv = debugDiv.createEl("div");
|
||||||
syncMappingDiv.createEl("p", {
|
syncMappingDiv.createEl("p", {
|
||||||
text: "Sync mappings history stores the actual LOCAL last modified time of the REMOTE objects.",
|
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.",
|
||||||
});
|
});
|
||||||
|
|
||||||
syncMappingDiv.createEl("p", {
|
new Setting(syncMappingDiv)
|
||||||
text: "If the sync mappings history are deleted, unnecessary data exchanges may occur in next-time syncing, because whether a remote object and local object with same name are equivalent or not could not be determined correctly by comparing last modified times.",
|
|
||||||
});
|
|
||||||
|
|
||||||
new Setting(containerEl)
|
|
||||||
.setName("delete sync mappings history in db")
|
.setName("delete sync mappings history in db")
|
||||||
.setDesc("delete sync mappings history in db")
|
.setDesc("delete sync mappings history in db")
|
||||||
.addButton(async (button) => {
|
.addButton(async (button) => {
|
||||||
@@ -418,5 +630,22 @@ class SaveRemoteSettingTab extends PluginSettingTab {
|
|||||||
new Notice("sync mappings history (in local db) deleted");
|
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."
|
||||||
|
);
|
||||||
|
});
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+33
-2
@@ -2,8 +2,7 @@ import { Vault } from "obsidian";
|
|||||||
import * as path from "path";
|
import * as path from "path";
|
||||||
|
|
||||||
import { base32 } from "rfc4648";
|
import { base32 } from "rfc4648";
|
||||||
|
import XRegExp from "xregexp";
|
||||||
export type SUPPORTED_SERVICES_TYPE = "s3" | "webdav" | "ftp";
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* If any part of the file starts with '.' or '_' then it's a hidden file.
|
* If any part of the file starts with '.' or '_' then it's a hidden file.
|
||||||
@@ -111,3 +110,35 @@ export const hexStringToTypedArray = (hex: string) => {
|
|||||||
export const base64ToBase32 = (a: string) => {
|
export const base64ToBase32 = (a: string) => {
|
||||||
return base32.stringify(Buffer.from(a, "base64"));
|
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,
|
||||||
@@ -13,7 +14,9 @@ import {
|
|||||||
HeadBucketCommand,
|
HeadBucketCommand,
|
||||||
ListObjectsV2CommandInput,
|
ListObjectsV2CommandInput,
|
||||||
ListObjectsV2CommandOutput,
|
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";
|
||||||
|
|
||||||
@@ -23,6 +26,8 @@ import {
|
|||||||
mkdirpInVault,
|
mkdirpInVault,
|
||||||
} from "./misc";
|
} from "./misc";
|
||||||
import * as mime from "mime-types";
|
import * as mime from "mime-types";
|
||||||
|
|
||||||
|
import { RemoteItem } from "./baseTypes";
|
||||||
import { decryptArrayBuffer, encryptArrayBuffer } from "./encrypt";
|
import { decryptArrayBuffer, encryptArrayBuffer } from "./encrypt";
|
||||||
|
|
||||||
export interface S3Config {
|
export interface S3Config {
|
||||||
@@ -43,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,
|
||||||
@@ -60,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 (
|
||||||
@@ -115,14 +149,24 @@ export const uploadToRemote = async (
|
|||||||
remoteContent = await encryptArrayBuffer(localContent, password);
|
remoteContent = await encryptArrayBuffer(localContent, password);
|
||||||
}
|
}
|
||||||
const body = arrayBufferToBuffer(remoteContent);
|
const body = arrayBufferToBuffer(remoteContent);
|
||||||
await s3Client.send(
|
|
||||||
new PutObjectCommand({
|
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: uploadFile,
|
Key: uploadFile,
|
||||||
Body: body,
|
Body: body,
|
||||||
ContentType: contentType,
|
ContentType: contentType,
|
||||||
})
|
},
|
||||||
);
|
});
|
||||||
|
upload.on("httpUploadProgress", (progress) => {
|
||||||
|
// console.log(progress);
|
||||||
|
});
|
||||||
|
await upload.done();
|
||||||
|
|
||||||
return await getRemoteMeta(s3Client, s3Config, uploadFile);
|
return await getRemoteMeta(s3Client, s3Config, uploadFile);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@@ -166,10 +210,7 @@ export const listFromRemote = async (
|
|||||||
|
|
||||||
// ensemble fake rsp
|
// ensemble fake rsp
|
||||||
return {
|
return {
|
||||||
"$.metadata": {
|
Contents: contents.map((x) => fromS3ObjectToRemoteItem(x)),
|
||||||
httpStatusCode: 200,
|
|
||||||
},
|
|
||||||
Contents: contents,
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -199,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
|
||||||
@@ -287,7 +328,7 @@ export const deleteFromRemote = async (
|
|||||||
await s3Client.send(
|
await s3Client.send(
|
||||||
new DeleteObjectCommand({
|
new DeleteObjectCommand({
|
||||||
Bucket: s3Config.s3BucketName,
|
Bucket: s3Config.s3BucketName,
|
||||||
Key: element.Key,
|
Key: element.key,
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
@@ -305,7 +346,7 @@ export const deleteFromRemote = async (
|
|||||||
* @param s3Config
|
* @param s3Config
|
||||||
* @returns
|
* @returns
|
||||||
*/
|
*/
|
||||||
export const checkS3Connectivity = async (
|
export const checkConnectivity = async (
|
||||||
s3Client: S3Client,
|
s3Client: S3Client,
|
||||||
s3Config: S3Config
|
s3Config: S3Config
|
||||||
) => {
|
) => {
|
||||||
|
|||||||
+88
-73
@@ -1,22 +1,15 @@
|
|||||||
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 {
|
import type { FileFolderHistoryRecord, InternalDBs } from "./localdb";
|
||||||
S3Config,
|
|
||||||
S3ObjectType,
|
import { RemoteClient } from "./remote";
|
||||||
uploadToRemote,
|
import type { SUPPORTED_SERVICES_TYPE, RemoteItem } from "./baseTypes";
|
||||||
deleteFromRemote,
|
import { mkdirpInVault, isHiddenPath, isVaildText } from "./misc";
|
||||||
downloadFromRemote,
|
|
||||||
} from "./s3";
|
|
||||||
import { mkdirpInVault, SUPPORTED_SERVICES_TYPE, isHiddenPath } from "./misc";
|
|
||||||
import {
|
import {
|
||||||
decryptBase32ToString,
|
decryptBase32ToString,
|
||||||
encryptStringToBase32,
|
encryptStringToBase32,
|
||||||
@@ -74,12 +67,13 @@ export interface PasswordCheckType {
|
|||||||
| "remote_encrypted_local_no_password"
|
| "remote_encrypted_local_no_password"
|
||||||
| "password_matched"
|
| "password_matched"
|
||||||
| "password_not_matched"
|
| "password_not_matched"
|
||||||
|
| "invalid_text_after_decryption"
|
||||||
| "remote_not_encrypted_local_has_password"
|
| "remote_not_encrypted_local_has_password"
|
||||||
| "no_password_both_sides";
|
| "no_password_both_sides";
|
||||||
}
|
}
|
||||||
|
|
||||||
export const isPasswordOk = async (
|
export const isPasswordOk = async (
|
||||||
remote: S3ObjectType[],
|
remote: RemoteItem[],
|
||||||
password: string = ""
|
password: string = ""
|
||||||
) => {
|
) => {
|
||||||
if (remote === undefined || remote.length === 0) {
|
if (remote === undefined || remote.length === 0) {
|
||||||
@@ -89,7 +83,7 @@ export const isPasswordOk = async (
|
|||||||
reason: "empty_remote",
|
reason: "empty_remote",
|
||||||
} as PasswordCheckType;
|
} as PasswordCheckType;
|
||||||
}
|
}
|
||||||
const santyCheckKey = remote[0].Key;
|
const santyCheckKey = remote[0].key;
|
||||||
if (santyCheckKey.startsWith(MAGIC_ENCRYPTED_PREFIX_BASE32)) {
|
if (santyCheckKey.startsWith(MAGIC_ENCRYPTED_PREFIX_BASE32)) {
|
||||||
// this is encrypted!
|
// this is encrypted!
|
||||||
// try to decrypt it using the provided password.
|
// try to decrypt it using the provided password.
|
||||||
@@ -101,10 +95,20 @@ export const isPasswordOk = async (
|
|||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
const res = await decryptBase32ToString(santyCheckKey, password);
|
const res = await decryptBase32ToString(santyCheckKey, password);
|
||||||
|
|
||||||
|
// additional test
|
||||||
|
// because iOS Safari bypasses decryption with wrong password!
|
||||||
|
if (isVaildText(res)) {
|
||||||
return {
|
return {
|
||||||
ok: true,
|
ok: true,
|
||||||
reason: "password_matched",
|
reason: "password_matched",
|
||||||
} as PasswordCheckType;
|
} as PasswordCheckType;
|
||||||
|
} else {
|
||||||
|
return {
|
||||||
|
ok: false,
|
||||||
|
reason: "invalid_text_after_decryption",
|
||||||
|
} as PasswordCheckType;
|
||||||
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
return {
|
return {
|
||||||
ok: false,
|
ok: false,
|
||||||
@@ -127,44 +131,46 @@ export const isPasswordOk = async (
|
|||||||
};
|
};
|
||||||
|
|
||||||
const ensembleMixedStates = async (
|
const ensembleMixedStates = async (
|
||||||
remote: S3ObjectType[],
|
remote: RemoteItem[],
|
||||||
local: TAbstractFile[],
|
local: TAbstractFile[],
|
||||||
deleteHistory: FileFolderHistoryRecord[],
|
deleteHistory: FileFolderHistoryRecord[],
|
||||||
db: lf.DatabaseConnection,
|
db: InternalDBs,
|
||||||
|
remoteType: SUPPORTED_SERVICES_TYPE,
|
||||||
password: string = ""
|
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 remoteEncryptedKey = entry.Key;
|
const remoteEncryptedKey = entry.key;
|
||||||
let key = remoteEncryptedKey;
|
let key = remoteEncryptedKey;
|
||||||
if (password !== "") {
|
if (password !== "") {
|
||||||
key = await decryptBase32ToString(remoteEncryptedKey, password);
|
key = await decryptBase32ToString(remoteEncryptedKey, password);
|
||||||
}
|
}
|
||||||
const backwardMapping = await getSyncMetaMappingByRemoteKeyS3(
|
const backwardMapping = await getSyncMetaMappingByRemoteKey(
|
||||||
|
remoteType,
|
||||||
db,
|
db,
|
||||||
key,
|
key,
|
||||||
entry.LastModified.valueOf(),
|
entry.lastModified,
|
||||||
entry.ETag
|
entry.etag
|
||||||
);
|
);
|
||||||
|
|
||||||
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,
|
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,
|
remote_encrypted_key: remoteEncryptedKey,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
@@ -224,11 +230,11 @@ 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}`);
|
||||||
@@ -236,7 +242,7 @@ 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)) {
|
if (isHiddenPath(key)) {
|
||||||
@@ -382,14 +388,19 @@ const getOperation = (
|
|||||||
r.decision_branch = 11;
|
r.decision_branch = 11;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (r.decision === "unknown") {
|
||||||
|
throw Error(`unknown decision for ${r}`);
|
||||||
|
}
|
||||||
|
|
||||||
return r;
|
return r;
|
||||||
};
|
};
|
||||||
|
|
||||||
export const getSyncPlan = async (
|
export const getSyncPlan = async (
|
||||||
remote: S3ObjectType[],
|
remote: RemoteItem[],
|
||||||
local: TAbstractFile[],
|
local: TAbstractFile[],
|
||||||
deleteHistory: FileFolderHistoryRecord[],
|
deleteHistory: FileFolderHistoryRecord[],
|
||||||
db: lf.DatabaseConnection,
|
db: InternalDBs,
|
||||||
|
remoteType: SUPPORTED_SERVICES_TYPE,
|
||||||
password: string = ""
|
password: string = ""
|
||||||
) => {
|
) => {
|
||||||
const mixedStates = await ensembleMixedStates(
|
const mixedStates = await ensembleMixedStates(
|
||||||
@@ -397,6 +408,7 @@ export const getSyncPlan = async (
|
|||||||
local,
|
local,
|
||||||
deleteHistory,
|
deleteHistory,
|
||||||
db,
|
db,
|
||||||
|
remoteType,
|
||||||
password
|
password
|
||||||
);
|
);
|
||||||
for (const [key, val] of Object.entries(mixedStates)) {
|
for (const [key, val] of Object.entries(mixedStates)) {
|
||||||
@@ -404,27 +416,20 @@ export const getSyncPlan = async (
|
|||||||
}
|
}
|
||||||
const plan = {
|
const plan = {
|
||||||
ts: Date.now(),
|
ts: Date.now(),
|
||||||
remoteType: "s3",
|
remoteType: remoteType,
|
||||||
mixedStates: mixedStates,
|
mixedStates: mixedStates,
|
||||||
} as SyncPlanType;
|
} as SyncPlanType;
|
||||||
return plan;
|
return plan;
|
||||||
};
|
};
|
||||||
|
|
||||||
export const doActualSync = async (
|
const dispatchOperationToActual = async (
|
||||||
s3Client: S3Client,
|
key: string,
|
||||||
s3Config: S3Config,
|
state: FileOrFolderMixedState,
|
||||||
db: lf.DatabaseConnection,
|
client: RemoteClient,
|
||||||
|
db: InternalDBs,
|
||||||
vault: Vault,
|
vault: Vault,
|
||||||
syncPlan: SyncPlanType,
|
|
||||||
password: string = ""
|
password: string = ""
|
||||||
) => {
|
) => {
|
||||||
const keyStates = syncPlan.mixedStates;
|
|
||||||
await Promise.all(
|
|
||||||
Object.entries(keyStates)
|
|
||||||
.sort((k, v) => -(k as string).length)
|
|
||||||
.map(async ([k, v]) => {
|
|
||||||
const key = k as string;
|
|
||||||
const state = v as FileOrFolderMixedState;
|
|
||||||
let remoteEncryptedKey = key;
|
let remoteEncryptedKey = key;
|
||||||
if (password !== "") {
|
if (password !== "") {
|
||||||
remoteEncryptedKey = state.remote_encrypted_key;
|
remoteEncryptedKey = state.remote_encrypted_key;
|
||||||
@@ -442,9 +447,7 @@ export const doActualSync = async (
|
|||||||
} else if (state.decision === "skip") {
|
} else if (state.decision === "skip") {
|
||||||
// do nothing
|
// do nothing
|
||||||
} else if (state.decision === "download_clearhist") {
|
} else if (state.decision === "download_clearhist") {
|
||||||
await downloadFromRemote(
|
await client.downloadFromRemote(
|
||||||
s3Client,
|
|
||||||
s3Config,
|
|
||||||
state.key,
|
state.key,
|
||||||
vault,
|
vault,
|
||||||
state.mtime_remote,
|
state.mtime_remote,
|
||||||
@@ -453,31 +456,28 @@ export const doActualSync = async (
|
|||||||
);
|
);
|
||||||
await clearDeleteRenameHistoryOfKey(db, state.key);
|
await clearDeleteRenameHistoryOfKey(db, state.key);
|
||||||
} else if (state.decision === "upload_clearhist") {
|
} else if (state.decision === "upload_clearhist") {
|
||||||
const remoteObjMeta = await uploadToRemote(
|
const remoteObjMeta = await client.uploadToRemote(
|
||||||
s3Client,
|
|
||||||
s3Config,
|
|
||||||
state.key,
|
state.key,
|
||||||
vault,
|
vault,
|
||||||
false,
|
false,
|
||||||
password,
|
password,
|
||||||
remoteEncryptedKey
|
remoteEncryptedKey
|
||||||
);
|
);
|
||||||
await upsertSyncMetaMappingDataS3(
|
await upsertSyncMetaMappingData(
|
||||||
|
client.serviceType,
|
||||||
db,
|
db,
|
||||||
state.key,
|
state.key,
|
||||||
state.mtime_local,
|
state.mtime_local,
|
||||||
state.size_local,
|
state.size_local,
|
||||||
state.key,
|
state.key,
|
||||||
remoteObjMeta.LastModified.valueOf(),
|
remoteObjMeta.lastModified,
|
||||||
remoteObjMeta.ContentLength,
|
remoteObjMeta.size,
|
||||||
remoteObjMeta.ETag
|
remoteObjMeta.etag
|
||||||
);
|
);
|
||||||
await clearDeleteRenameHistoryOfKey(db, state.key);
|
await clearDeleteRenameHistoryOfKey(db, state.key);
|
||||||
} else if (state.decision === "download") {
|
} else if (state.decision === "download") {
|
||||||
await mkdirpInVault(state.key, vault);
|
await mkdirpInVault(state.key, vault);
|
||||||
await downloadFromRemote(
|
await client.downloadFromRemote(
|
||||||
s3Client,
|
|
||||||
s3Config,
|
|
||||||
state.key,
|
state.key,
|
||||||
vault,
|
vault,
|
||||||
state.mtime_remote,
|
state.mtime_remote,
|
||||||
@@ -485,39 +485,54 @@ export const doActualSync = async (
|
|||||||
remoteEncryptedKey
|
remoteEncryptedKey
|
||||||
);
|
);
|
||||||
} else if (state.decision === "delremote_clearhist") {
|
} else if (state.decision === "delremote_clearhist") {
|
||||||
await deleteFromRemote(
|
await client.deleteFromRemote(state.key, password, remoteEncryptedKey);
|
||||||
s3Client,
|
|
||||||
s3Config,
|
|
||||||
state.key,
|
|
||||||
password,
|
|
||||||
remoteEncryptedKey
|
|
||||||
);
|
|
||||||
await clearDeleteRenameHistoryOfKey(db, state.key);
|
await clearDeleteRenameHistoryOfKey(db, state.key);
|
||||||
} else if (state.decision === "upload") {
|
} else if (state.decision === "upload") {
|
||||||
const remoteObjMeta = await uploadToRemote(
|
const remoteObjMeta = await client.uploadToRemote(
|
||||||
s3Client,
|
|
||||||
s3Config,
|
|
||||||
state.key,
|
state.key,
|
||||||
vault,
|
vault,
|
||||||
false,
|
false,
|
||||||
password,
|
password,
|
||||||
remoteEncryptedKey
|
remoteEncryptedKey
|
||||||
);
|
);
|
||||||
await upsertSyncMetaMappingDataS3(
|
await upsertSyncMetaMappingData(
|
||||||
|
client.serviceType,
|
||||||
db,
|
db,
|
||||||
state.key,
|
state.key,
|
||||||
state.mtime_local,
|
state.mtime_local,
|
||||||
state.size_local,
|
state.size_local,
|
||||||
state.key,
|
state.key,
|
||||||
remoteObjMeta.LastModified.valueOf(),
|
remoteObjMeta.lastModified,
|
||||||
remoteObjMeta.ContentLength,
|
remoteObjMeta.size,
|
||||||
remoteObjMeta.ETag
|
remoteObjMeta.etag
|
||||||
);
|
);
|
||||||
} else if (state.decision === "clearhist") {
|
} else if (state.decision === "clearhist") {
|
||||||
await clearDeleteRenameHistoryOfKey(db, state.key);
|
await clearDeleteRenameHistoryOfKey(db, state.key);
|
||||||
} else {
|
} else {
|
||||||
throw Error("this should never happen!");
|
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,
|
||||||
|
vault,
|
||||||
|
password
|
||||||
|
)
|
||||||
|
)
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
+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;
|
||||||
|
}
|
||||||
|
};
|
||||||
+15
@@ -3,3 +3,18 @@
|
|||||||
.password_second_confirm {
|
.password_second_confirm {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.s3-disclaimer {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
.s3-hide {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.webdav-disclaimer {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.webdav-hide {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|||||||
@@ -60,10 +60,10 @@ describe("Encryption tests", () => {
|
|||||||
);
|
);
|
||||||
|
|
||||||
// two command returns same result:
|
// two command returns same result:
|
||||||
// cat ./sometext.txt | openssl enc -p -aes-256-cbc -S 8302F586FAB491EC -pbkdf2 -iter 10000 -base64 -pass pass:somepassword
|
// 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 10000 -base64 -pass pass:somepassword -in ./sometext.txt
|
// openssl enc -p -aes-256-cbc -S 8302F586FAB491EC -pbkdf2 -iter 20000 -base64 -pass pass:somepassword -in ./sometext.txt
|
||||||
const opensslBase64Res =
|
const opensslBase64Res =
|
||||||
"U2FsdGVkX1+DAvWG+rSR7MSa+yJav1zCE7SSXiBooqwI5Q+LMpIthpk/pXkLj+25";
|
"U2FsdGVkX1+DAvWG+rSR7BPXMnlvSSVGMdjsx7kE1CTH+28P+yAZRdDGgFWMGkMd";
|
||||||
// we output base32, so we need some transformation
|
// we output base32, so we need some transformation
|
||||||
const opensslBase32Res = base64ToBase32(opensslBase64Res);
|
const opensslBase32Res = base64ToBase32(opensslBase64Res);
|
||||||
|
|
||||||
@@ -89,6 +89,8 @@ describe("Encryption tests", () => {
|
|||||||
await fs.readFileSync(path.join(testFolder, testFileName + ".enc"))
|
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;
|
expect(Buffer.from(enc).equals(Buffer.from(opensslArrBuf))).to.be.true;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -70,3 +70,44 @@ describe("Misc: get folder levels", () => {
|
|||||||
expect(misc.getFolderLevels(item3)).to.deep.equal(res3);
|
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("/");
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|||||||
+1
-1
@@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:cf67abd791f1e230bce57dd47150f262424247cbefb8be16efcd57d13955576a
|
oid sha256:7687eaf60ed93f754b107dc86a437aa97fad7bedd40432171b08c22cded7b559
|
||||||
size 1141568
|
size 1141568
|
||||||
|
|||||||
+1
-1
@@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"0.0.12": "0.12.15"
|
"0.1.6": "0.12.15"
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user