Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
26a426dda8 | ||
|
|
de64c3c53f | ||
|
|
0cefafa491 | ||
|
|
b769becb97 | ||
|
|
7b3600a46f | ||
|
|
69e72eae1d | ||
|
|
b0acde0ba6 | ||
|
|
11b7fee80b | ||
|
|
c4c39f6b79 | ||
|
|
45578a01dd | ||
|
|
0391c42999 | ||
|
|
807eec928e | ||
|
|
3d7c4d2a4a | ||
|
|
cb779fc7bf | ||
|
|
9d8e2af7b9 | ||
|
|
a48440e60b | ||
|
|
2a84fae368 | ||
|
|
3c3426a842 | ||
|
|
74de7da89a | ||
|
|
1f33ac5d7a | ||
|
|
63c54d1956 | ||
|
|
b584f89a95 | ||
|
|
fa17ea074b | ||
|
|
cb98bae79a |
+1
-1
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"id": "remotely-save",
|
"id": "remotely-save",
|
||||||
"name": "Remotely Save",
|
"name": "Remotely Save",
|
||||||
"version": "0.4.21",
|
"version": "0.4.23",
|
||||||
"minAppVersion": "0.13.21",
|
"minAppVersion": "0.13.21",
|
||||||
"description": "Yet another unofficial plugin allowing users to synchronize notes between local device and the cloud service.",
|
"description": "Yet another unofficial plugin allowing users to synchronize notes between local device and the cloud service.",
|
||||||
"author": "fyears",
|
"author": "fyears",
|
||||||
|
|||||||
+1
-1
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"id": "remotely-save",
|
"id": "remotely-save",
|
||||||
"name": "Remotely Save",
|
"name": "Remotely Save",
|
||||||
"version": "0.4.21",
|
"version": "0.4.23",
|
||||||
"minAppVersion": "0.13.21",
|
"minAppVersion": "0.13.21",
|
||||||
"description": "Yet another unofficial plugin allowing users to synchronize notes between local device and the cloud service.",
|
"description": "Yet another unofficial plugin allowing users to synchronize notes between local device and the cloud service.",
|
||||||
"author": "fyears",
|
"author": "fyears",
|
||||||
|
|||||||
+2
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "remotely-save",
|
"name": "remotely-save",
|
||||||
"version": "0.4.21",
|
"version": "0.4.23",
|
||||||
"description": "This is yet another sync plugin for Obsidian app.",
|
"description": "This is yet another sync plugin for Obsidian app.",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev2": "node esbuild.config.mjs --watch",
|
"dev2": "node esbuild.config.mjs --watch",
|
||||||
@@ -77,6 +77,7 @@
|
|||||||
"http-status-codes": "^2.3.0",
|
"http-status-codes": "^2.3.0",
|
||||||
"localforage": "^1.10.0",
|
"localforage": "^1.10.0",
|
||||||
"localforage-getitems": "^1.4.2",
|
"localforage-getitems": "^1.4.2",
|
||||||
|
"localforage-removeitems": "^1.4.0",
|
||||||
"lodash": "^4.17.21",
|
"lodash": "^4.17.21",
|
||||||
"lucide": "^0.376.1",
|
"lucide": "^0.376.1",
|
||||||
"mime-types": "^2.1.35",
|
"mime-types": "^2.1.35",
|
||||||
|
|||||||
@@ -89,6 +89,7 @@ export interface OnedriveConfig {
|
|||||||
username: string;
|
username: string;
|
||||||
credentialsShouldBeDeletedAtTime?: number;
|
credentialsShouldBeDeletedAtTime?: number;
|
||||||
remoteBaseDir?: string;
|
remoteBaseDir?: string;
|
||||||
|
emptyFile: "skip" | "error";
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface WebdisConfig {
|
export interface WebdisConfig {
|
||||||
@@ -230,6 +231,7 @@ export interface Entity {
|
|||||||
hash?: string;
|
hash?: string;
|
||||||
etag?: string;
|
etag?: string;
|
||||||
synthesizedFolder?: boolean;
|
synthesizedFolder?: boolean;
|
||||||
|
synthesizedFile?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface UploadedType {
|
export interface UploadedType {
|
||||||
@@ -250,6 +252,8 @@ export interface MixedEntity {
|
|||||||
decision?: DecisionTypeForMixedEntity;
|
decision?: DecisionTypeForMixedEntity;
|
||||||
conflictAction?: ConflictActionType;
|
conflictAction?: ConflictActionType;
|
||||||
|
|
||||||
|
change?: boolean;
|
||||||
|
|
||||||
sideNotes?: any;
|
sideNotes?: any;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+27
-3
@@ -11,12 +11,30 @@ import {
|
|||||||
} from "./localdb";
|
} from "./localdb";
|
||||||
import type { InternalDBs } from "./localdb";
|
import type { InternalDBs } from "./localdb";
|
||||||
import { mkdirpInVault } from "./misc";
|
import { mkdirpInVault } from "./misc";
|
||||||
|
import type { SyncPlanType } from "./sync";
|
||||||
|
|
||||||
|
const getSubsetOfSyncPlan = (x: string, onlyChange: boolean) => {
|
||||||
|
if (!onlyChange) {
|
||||||
|
return x;
|
||||||
|
}
|
||||||
|
const y: SyncPlanType = JSON.parse(x);
|
||||||
|
const z: SyncPlanType = Object.fromEntries(
|
||||||
|
Object.entries(y).filter(([key, val]) => {
|
||||||
|
if (key === "/$@meta") {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return val.change === undefined || val.change === true;
|
||||||
|
})
|
||||||
|
);
|
||||||
|
return JSON.stringify(z, null, 2);
|
||||||
|
};
|
||||||
|
|
||||||
export const exportVaultSyncPlansToFiles = async (
|
export const exportVaultSyncPlansToFiles = async (
|
||||||
db: InternalDBs,
|
db: InternalDBs,
|
||||||
vault: Vault,
|
vault: Vault,
|
||||||
vaultRandomID: string,
|
vaultRandomID: string,
|
||||||
howMany: number
|
howMany: number,
|
||||||
|
onlyChange: boolean
|
||||||
) => {
|
) => {
|
||||||
console.info("exporting sync plans");
|
console.info("exporting sync plans");
|
||||||
await mkdirpInVault(DEFAULT_DEBUG_FOLDER, vault);
|
await mkdirpInVault(DEFAULT_DEBUG_FOLDER, vault);
|
||||||
@@ -28,12 +46,18 @@ export const exportVaultSyncPlansToFiles = async (
|
|||||||
if (howMany <= 0) {
|
if (howMany <= 0) {
|
||||||
md =
|
md =
|
||||||
"Sync plans found:\n\n" +
|
"Sync plans found:\n\n" +
|
||||||
records.map((x) => "```json\n" + x + "\n```\n").join("\n");
|
records
|
||||||
|
.map(
|
||||||
|
(x) => "```json\n" + getSubsetOfSyncPlan(x, onlyChange) + "\n```\n"
|
||||||
|
)
|
||||||
|
.join("\n");
|
||||||
} else {
|
} else {
|
||||||
md =
|
md =
|
||||||
"Sync plans found:\n\n" +
|
"Sync plans found:\n\n" +
|
||||||
records
|
records
|
||||||
.map((x) => "```json\n" + x + "\n```\n")
|
.map(
|
||||||
|
(x) => "```json\n" + getSubsetOfSyncPlan(x, onlyChange) + "\n```\n"
|
||||||
|
)
|
||||||
.slice(0, howMany)
|
.slice(0, howMany)
|
||||||
.join("\n");
|
.join("\n");
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ import type { Entity } from "./baseTypes";
|
|||||||
export abstract class FakeFs {
|
export abstract class FakeFs {
|
||||||
abstract kind: string;
|
abstract kind: string;
|
||||||
abstract walk(): Promise<Entity[]>;
|
abstract walk(): Promise<Entity[]>;
|
||||||
|
abstract walkPartial(): Promise<Entity[]>;
|
||||||
abstract stat(key: string): Promise<Entity>;
|
abstract stat(key: string): Promise<Entity>;
|
||||||
abstract mkdir(key: string, mtime?: number, ctime?: number): Promise<Entity>;
|
abstract mkdir(key: string, mtime?: number, ctime?: number): Promise<Entity>;
|
||||||
abstract writeFile(
|
abstract writeFile(
|
||||||
|
|||||||
+12
-2
@@ -452,13 +452,21 @@ export class FakeFsDropbox extends FakeFs {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async walk(): Promise<Entity[]> {
|
async walk(): Promise<Entity[]> {
|
||||||
|
return await this._walk(false);
|
||||||
|
}
|
||||||
|
|
||||||
|
async walkPartial(): Promise<Entity[]> {
|
||||||
|
return await this._walk(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
async _walk(partial: boolean): Promise<Entity[]> {
|
||||||
await this._init();
|
await this._init();
|
||||||
|
|
||||||
let res = await this.dropbox.filesListFolder({
|
let res = await this.dropbox.filesListFolder({
|
||||||
path: `/${this.remoteBaseDir}`,
|
path: `/${this.remoteBaseDir}`,
|
||||||
recursive: true,
|
recursive: !partial,
|
||||||
include_deleted: false,
|
include_deleted: false,
|
||||||
limit: 1000,
|
limit: partial ? 10 : 1000,
|
||||||
});
|
});
|
||||||
if (res.status !== 200) {
|
if (res.status !== 200) {
|
||||||
throw Error(JSON.stringify(res));
|
throw Error(JSON.stringify(res));
|
||||||
@@ -471,6 +479,7 @@ export class FakeFsDropbox extends FakeFs {
|
|||||||
.filter((x) => x.path_display !== `/${this.remoteBaseDir}`)
|
.filter((x) => x.path_display !== `/${this.remoteBaseDir}`)
|
||||||
.map((x) => fromDropboxItemToEntity(x, this.remoteBaseDir));
|
.map((x) => fromDropboxItemToEntity(x, this.remoteBaseDir));
|
||||||
|
|
||||||
|
if (!partial) {
|
||||||
while (res.result.has_more) {
|
while (res.result.has_more) {
|
||||||
res = await this.dropbox.filesListFolderContinue({
|
res = await this.dropbox.filesListFolderContinue({
|
||||||
cursor: res.result.cursor,
|
cursor: res.result.cursor,
|
||||||
@@ -486,6 +495,7 @@ export class FakeFsDropbox extends FakeFs {
|
|||||||
.map((x) => fromDropboxItemToEntity(x, this.remoteBaseDir));
|
.map((x) => fromDropboxItemToEntity(x, this.remoteBaseDir));
|
||||||
unifiedContents.push(...unifiedContents2);
|
unifiedContents.push(...unifiedContents2);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
fixEntityListCasesInplace(unifiedContents);
|
fixEntityListCasesInplace(unifiedContents);
|
||||||
|
|
||||||
|
|||||||
+10
-22
@@ -78,8 +78,6 @@ export class FakeFsEncrypt extends FakeFs {
|
|||||||
cacheMapOrigToEnc: Record<string, string>;
|
cacheMapOrigToEnc: Record<string, string>;
|
||||||
hasCacheMap: boolean;
|
hasCacheMap: boolean;
|
||||||
kind: string;
|
kind: string;
|
||||||
innerWalkResultCache?: Entity[];
|
|
||||||
innerWalkResultCacheTime?: number;
|
|
||||||
|
|
||||||
constructor(innerFs: FakeFs, password: string, method: CipherMethodType) {
|
constructor(innerFs: FakeFs, password: string, method: CipherMethodType) {
|
||||||
super();
|
super();
|
||||||
@@ -110,26 +108,8 @@ export class FakeFsEncrypt extends FakeFs {
|
|||||||
throw Error(`no idea about isFolderAware for method=${this.method}`);
|
throw Error(`no idea about isFolderAware for method=${this.method}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* we want a little caching here.
|
|
||||||
*/
|
|
||||||
async _getInnerWalkResult(): Promise<Entity[]> {
|
|
||||||
let innerWalkResult: Entity[] | undefined = undefined;
|
|
||||||
if (
|
|
||||||
this.innerWalkResultCacheTime !== undefined &&
|
|
||||||
this.innerWalkResultCacheTime >= Date.now() - 1000
|
|
||||||
) {
|
|
||||||
innerWalkResult = this.innerWalkResultCache!;
|
|
||||||
} else {
|
|
||||||
innerWalkResult = await this.innerFs.walk();
|
|
||||||
this.innerWalkResultCache = innerWalkResult;
|
|
||||||
this.innerWalkResultCacheTime = Date.now();
|
|
||||||
}
|
|
||||||
return innerWalkResult;
|
|
||||||
}
|
|
||||||
|
|
||||||
async isPasswordOk(): Promise<PasswordCheckType> {
|
async isPasswordOk(): Promise<PasswordCheckType> {
|
||||||
const innerWalkResult = await this._getInnerWalkResult();
|
const innerWalkResult = await this.walkPartial();
|
||||||
|
|
||||||
if (innerWalkResult === undefined || innerWalkResult.length === 0) {
|
if (innerWalkResult === undefined || innerWalkResult.length === 0) {
|
||||||
// remote empty
|
// remote empty
|
||||||
@@ -186,8 +166,16 @@ export class FakeFsEncrypt extends FakeFs {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async walk(): Promise<Entity[]> {
|
async walk(): Promise<Entity[]> {
|
||||||
const innerWalkResult = await this._getInnerWalkResult();
|
const innerWalkResult = await this.innerFs.walk();
|
||||||
|
return await this._dealWithWalk(innerWalkResult);
|
||||||
|
}
|
||||||
|
|
||||||
|
async walkPartial(): Promise<Entity[]> {
|
||||||
|
const innerWalkResult = await this.innerFs.walkPartial();
|
||||||
|
return await this._dealWithWalk(innerWalkResult);
|
||||||
|
}
|
||||||
|
|
||||||
|
async _dealWithWalk(innerWalkResult: Entity[]): Promise<Entity[]> {
|
||||||
const res: Entity[] = [];
|
const res: Entity[] = [];
|
||||||
|
|
||||||
if (this.isPasswordEmpty()) {
|
if (this.isPasswordEmpty()) {
|
||||||
|
|||||||
@@ -109,6 +109,10 @@ export class FakeFsLocal extends FakeFs {
|
|||||||
return local;
|
return local;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async walkPartial(): Promise<Entity[]> {
|
||||||
|
return await this.walk();
|
||||||
|
}
|
||||||
|
|
||||||
async stat(key: string): Promise<Entity> {
|
async stat(key: string): Promise<Entity> {
|
||||||
const statRes = await statFix(this.vault, key);
|
const statRes = await statFix(this.vault, key);
|
||||||
if (statRes === undefined || statRes === null) {
|
if (statRes === undefined || statRes === null) {
|
||||||
|
|||||||
@@ -13,6 +13,10 @@ export class FakeFsMock extends FakeFs {
|
|||||||
throw new Error("Method not implemented.");
|
throw new Error("Method not implemented.");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async walkPartial(): Promise<Entity[]> {
|
||||||
|
return await this.walk();
|
||||||
|
}
|
||||||
|
|
||||||
async stat(key: string): Promise<Entity> {
|
async stat(key: string): Promise<Entity> {
|
||||||
throw new Error("Method not implemented.");
|
throw new Error("Method not implemented.");
|
||||||
}
|
}
|
||||||
|
|||||||
+44
-2
@@ -32,6 +32,7 @@ export const DEFAULT_ONEDRIVE_CONFIG: OnedriveConfig = {
|
|||||||
deltaLink: "",
|
deltaLink: "",
|
||||||
username: "",
|
username: "",
|
||||||
credentialsShouldBeDeletedAtTime: 0,
|
credentialsShouldBeDeletedAtTime: 0,
|
||||||
|
emptyFile: "skip",
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
@@ -344,6 +345,7 @@ const fromDriveItemToEntity = (x: DriveItem, remoteBaseDir: string): Entity => {
|
|||||||
mtimeCli: mtimeCli,
|
mtimeCli: mtimeCli,
|
||||||
size: isFolder ? 0 : x.size!,
|
size: isFolder ? 0 : x.size!,
|
||||||
sizeRaw: isFolder ? 0 : x.size!,
|
sizeRaw: isFolder ? 0 : x.size!,
|
||||||
|
synthesizedFile: false,
|
||||||
// hash: ?? // TODO
|
// hash: ?? // TODO
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
@@ -682,6 +684,31 @@ export class FakeFsOnedrive extends FakeFs {
|
|||||||
return unifiedContents;
|
return unifiedContents;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async walkPartial(): Promise<Entity[]> {
|
||||||
|
await this._init();
|
||||||
|
|
||||||
|
const DELTA_LINK_KEY = "@odata.deltaLink";
|
||||||
|
|
||||||
|
const res = await this._getJson(
|
||||||
|
`/drive/special/approot:/${this.remoteBaseDir}:/delta`
|
||||||
|
);
|
||||||
|
const driveItems = res.value as DriveItem[];
|
||||||
|
// console.debug(driveItems);
|
||||||
|
|
||||||
|
// lastly we should have delta link?
|
||||||
|
if (DELTA_LINK_KEY in res) {
|
||||||
|
this.onedriveConfig.deltaLink = res[DELTA_LINK_KEY];
|
||||||
|
await this.saveUpdatedConfigFunc();
|
||||||
|
}
|
||||||
|
|
||||||
|
// unify everything to Entity
|
||||||
|
const unifiedContents = driveItems
|
||||||
|
.map((x) => fromDriveItemToEntity(x, this.remoteBaseDir))
|
||||||
|
.filter((x) => x.key !== "/");
|
||||||
|
|
||||||
|
return unifiedContents;
|
||||||
|
}
|
||||||
|
|
||||||
async stat(key: string): Promise<Entity> {
|
async stat(key: string): Promise<Entity> {
|
||||||
await this._init();
|
await this._init();
|
||||||
return await this._statFromRoot(getOnedrivePath(key, this.remoteBaseDir));
|
return await this._statFromRoot(getOnedrivePath(key, this.remoteBaseDir));
|
||||||
@@ -760,7 +787,8 @@ export class FakeFsOnedrive extends FakeFs {
|
|||||||
content,
|
content,
|
||||||
mtime,
|
mtime,
|
||||||
ctime,
|
ctime,
|
||||||
key
|
key,
|
||||||
|
this.onedriveConfig.emptyFile
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -769,12 +797,26 @@ export class FakeFsOnedrive extends FakeFs {
|
|||||||
content: ArrayBuffer,
|
content: ArrayBuffer,
|
||||||
mtime: number,
|
mtime: number,
|
||||||
ctime: number,
|
ctime: number,
|
||||||
origKey: string
|
origKey: string,
|
||||||
|
emptyFile: "skip" | "error"
|
||||||
): Promise<Entity> {
|
): Promise<Entity> {
|
||||||
if (content.byteLength === 0) {
|
if (content.byteLength === 0) {
|
||||||
|
if (emptyFile === "error") {
|
||||||
throw Error(
|
throw Error(
|
||||||
`${origKey}: Empty file is not allowed in OneDrive, and please write something in it.`
|
`${origKey}: Empty file is not allowed in OneDrive, and please write something in it.`
|
||||||
);
|
);
|
||||||
|
} else {
|
||||||
|
return {
|
||||||
|
key: origKey,
|
||||||
|
keyRaw: origKey,
|
||||||
|
mtimeSvr: mtime,
|
||||||
|
mtimeCli: mtime,
|
||||||
|
size: 0,
|
||||||
|
sizeRaw: 0,
|
||||||
|
synthesizedFile: true,
|
||||||
|
// hash: ?? // TODO
|
||||||
|
};
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const ctimeStr = new Date(ctime).toISOString();
|
const ctimeStr = new Date(ctime).toISOString();
|
||||||
|
|||||||
+22
-5
@@ -399,9 +399,16 @@ export class FakeFsS3 extends FakeFs {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async walk(): Promise<Entity[]> {
|
async walk(): Promise<Entity[]> {
|
||||||
const res = (await this._walkFromRoot(this.s3Config.remotePrefix)).filter(
|
const res = (
|
||||||
(x) => x.key !== "" && x.key !== "/"
|
await this._walkFromRoot(this.s3Config.remotePrefix, false)
|
||||||
);
|
).filter((x) => x.key !== "" && x.key !== "/");
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
|
async walkPartial(): Promise<Entity[]> {
|
||||||
|
const res = (
|
||||||
|
await this._walkFromRoot(this.s3Config.remotePrefix, true)
|
||||||
|
).filter((x) => x.key !== "" && x.key !== "/");
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -409,19 +416,23 @@ export class FakeFsS3 extends FakeFs {
|
|||||||
* the input key contains basedir (prefix),
|
* the input key contains basedir (prefix),
|
||||||
* but the result doesn't contain it.
|
* but the result doesn't contain it.
|
||||||
*/
|
*/
|
||||||
async _walkFromRoot(prefixOfRawKeys: string | undefined) {
|
async _walkFromRoot(prefixOfRawKeys: string | undefined, partial: boolean) {
|
||||||
const confCmd = {
|
const confCmd = {
|
||||||
Bucket: this.s3Config.s3BucketName,
|
Bucket: this.s3Config.s3BucketName,
|
||||||
} as ListObjectsV2CommandInput;
|
} as ListObjectsV2CommandInput;
|
||||||
if (prefixOfRawKeys !== undefined && prefixOfRawKeys !== "") {
|
if (prefixOfRawKeys !== undefined && prefixOfRawKeys !== "") {
|
||||||
confCmd.Prefix = prefixOfRawKeys;
|
confCmd.Prefix = prefixOfRawKeys;
|
||||||
}
|
}
|
||||||
|
if (partial) {
|
||||||
|
confCmd.MaxKeys = 10; // no need to list more!
|
||||||
|
}
|
||||||
|
|
||||||
const contents = [] as _Object[];
|
const contents = [] as _Object[];
|
||||||
const mtimeRecords: Record<string, number> = {};
|
const mtimeRecords: Record<string, number> = {};
|
||||||
const ctimeRecords: Record<string, number> = {};
|
const ctimeRecords: Record<string, number> = {};
|
||||||
|
const partsConcurrency = partial ? 1 : this.s3Config.partsConcurrency;
|
||||||
const queueHead = new PQueue({
|
const queueHead = new PQueue({
|
||||||
concurrency: this.s3Config.partsConcurrency,
|
concurrency: partsConcurrency,
|
||||||
autoStart: true,
|
autoStart: true,
|
||||||
});
|
});
|
||||||
queueHead.on("error", (error) => {
|
queueHead.on("error", (error) => {
|
||||||
@@ -473,6 +484,11 @@ export class FakeFsS3 extends FakeFs {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (partial) {
|
||||||
|
// do not loop over
|
||||||
|
isTruncated = false;
|
||||||
|
} else {
|
||||||
|
// loop over
|
||||||
isTruncated = rsp.IsTruncated ?? false;
|
isTruncated = rsp.IsTruncated ?? false;
|
||||||
confCmd.ContinuationToken = rsp.NextContinuationToken;
|
confCmd.ContinuationToken = rsp.NextContinuationToken;
|
||||||
if (
|
if (
|
||||||
@@ -482,6 +498,7 @@ export class FakeFsS3 extends FakeFs {
|
|||||||
) {
|
) {
|
||||||
throw Error("isTruncated is true but no continuationToken provided");
|
throw Error("isTruncated is true but no continuationToken provided");
|
||||||
}
|
}
|
||||||
|
}
|
||||||
} while (isTruncated);
|
} while (isTruncated);
|
||||||
|
|
||||||
// wait for any head requests
|
// wait for any head requests
|
||||||
|
|||||||
+378
-28
@@ -4,7 +4,9 @@ import { getReasonPhrase } from "http-status-codes/build/cjs/utils-functions";
|
|||||||
import chunk from "lodash/chunk";
|
import chunk from "lodash/chunk";
|
||||||
import cloneDeep from "lodash/cloneDeep";
|
import cloneDeep from "lodash/cloneDeep";
|
||||||
import flatten from "lodash/flatten";
|
import flatten from "lodash/flatten";
|
||||||
import { Platform, requestUrl } from "obsidian";
|
import isString from "lodash/isString";
|
||||||
|
import { nanoid } from "nanoid";
|
||||||
|
import { Platform, type RequestUrlParam, requestUrl } from "obsidian";
|
||||||
import type {
|
import type {
|
||||||
FileStat,
|
FileStat,
|
||||||
RequestOptionsWithState,
|
RequestOptionsWithState,
|
||||||
@@ -15,7 +17,7 @@ import type {
|
|||||||
import type { Entity, WebdavConfig } from "./baseTypes";
|
import type { Entity, WebdavConfig } from "./baseTypes";
|
||||||
import { VALID_REQURL } from "./baseTypesObs";
|
import { VALID_REQURL } from "./baseTypesObs";
|
||||||
import { FakeFs } from "./fsAll";
|
import { FakeFs } from "./fsAll";
|
||||||
import { bufferToArrayBuffer } from "./misc";
|
import { bufferToArrayBuffer, delay, splitFileSizeToChunkRanges } from "./misc";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* https://stackoverflow.com/questions/32850898/how-to-check-if-a-string-has-any-non-iso-8859-1-characters-with-javascript
|
* https://stackoverflow.com/questions/32850898/how-to-check-if-a-string-has-any-non-iso-8859-1-characters-with-javascript
|
||||||
@@ -55,20 +57,35 @@ if (VALID_REQURL) {
|
|||||||
retractedHeaders["authorization"] = "<retracted>";
|
retractedHeaders["authorization"] = "<retracted>";
|
||||||
}
|
}
|
||||||
|
|
||||||
console.debug(`before request:`);
|
// console.debug(`before request:`);
|
||||||
console.debug(`url: ${options.url}`);
|
// console.debug(`url: ${options.url}`);
|
||||||
console.debug(`method: ${options.method}`);
|
// console.debug(`method: ${options.method}`);
|
||||||
console.debug(`headers: ${JSON.stringify(retractedHeaders, null, 2)}`);
|
// console.debug(`headers: ${JSON.stringify(retractedHeaders, null, 2)}`);
|
||||||
console.debug(`reqContentType: ${reqContentType}`);
|
// console.debug(`reqContentType: ${reqContentType}`);
|
||||||
|
|
||||||
let r = await requestUrl({
|
const p: RequestUrlParam = {
|
||||||
url: options.url,
|
url: options.url,
|
||||||
method: options.method,
|
method: options.method,
|
||||||
body: options.data as string | ArrayBuffer,
|
// body: options.data as string | ArrayBuffer,
|
||||||
headers: transformedHeaders,
|
headers: transformedHeaders,
|
||||||
contentType: reqContentType,
|
contentType: reqContentType,
|
||||||
throw: false,
|
throw: false,
|
||||||
});
|
};
|
||||||
|
if (
|
||||||
|
options.data === undefined ||
|
||||||
|
options.data === null ||
|
||||||
|
isString(options.data)
|
||||||
|
) {
|
||||||
|
p.body = options.data;
|
||||||
|
} else {
|
||||||
|
if (typeof (options.data as any).transfer === "function") {
|
||||||
|
p.body = (options.data as any).transfer();
|
||||||
|
} else {
|
||||||
|
p.body = options.data as ArrayBuffer;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
let r = await requestUrl(p);
|
||||||
|
|
||||||
if (
|
if (
|
||||||
r.status === 401 &&
|
r.status === 401 &&
|
||||||
@@ -82,19 +99,13 @@ if (VALID_REQURL) {
|
|||||||
// if a folder doesn't exist without slash, the servers return 401 instead of 404
|
// if a folder doesn't exist without slash, the servers return 401 instead of 404
|
||||||
// here is a dirty hack that works
|
// here is a dirty hack that works
|
||||||
console.debug(`so we have 401, try appending request url with slash`);
|
console.debug(`so we have 401, try appending request url with slash`);
|
||||||
r = await requestUrl({
|
p.url = `${options.url}/`;
|
||||||
url: `${options.url}/`,
|
r = await requestUrl(p);
|
||||||
method: options.method,
|
|
||||||
body: options.data as string | ArrayBuffer,
|
|
||||||
headers: transformedHeaders,
|
|
||||||
contentType: reqContentType,
|
|
||||||
throw: false,
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
console.debug(`after request:`);
|
// console.debug(`after request:`);
|
||||||
const rspHeaders = objKeyToLower({ ...r.headers });
|
const rspHeaders = objKeyToLower({ ...r.headers });
|
||||||
console.debug(`rspHeaders: ${JSON.stringify(rspHeaders, null, 2)}`);
|
// console.debug(`rspHeaders: ${JSON.stringify(rspHeaders, null, 2)}`);
|
||||||
for (const key in rspHeaders) {
|
for (const key in rspHeaders) {
|
||||||
if (rspHeaders.hasOwnProperty(key)) {
|
if (rspHeaders.hasOwnProperty(key)) {
|
||||||
// avoid the error:
|
// avoid the error:
|
||||||
@@ -111,7 +122,7 @@ if (VALID_REQURL) {
|
|||||||
// }
|
// }
|
||||||
// }
|
// }
|
||||||
if (!onlyAscii(rspHeaders[key])) {
|
if (!onlyAscii(rspHeaders[key])) {
|
||||||
console.debug(`rspHeaders[key] needs encode: ${key}`);
|
// console.debug(`rspHeaders[key] needs encode: ${key}`);
|
||||||
rspHeaders[key] = encodeURIComponent(rspHeaders[key]);
|
rspHeaders[key] = encodeURIComponent(rspHeaders[key]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -119,7 +130,7 @@ if (VALID_REQURL) {
|
|||||||
|
|
||||||
let r2: Response | undefined = undefined;
|
let r2: Response | undefined = undefined;
|
||||||
const statusText = getReasonPhrase(r.status);
|
const statusText = getReasonPhrase(r.status);
|
||||||
console.debug(`statusText: ${statusText}`);
|
// console.debug(`statusText: ${statusText}`);
|
||||||
if ([101, 103, 204, 205, 304].includes(r.status)) {
|
if ([101, 103, 204, 205, 304].includes(r.status)) {
|
||||||
// A null body status is a status that is 101, 103, 204, 205, or 304.
|
// A null body status is a status that is 101, 103, 204, 205, or 304.
|
||||||
// https://fetch.spec.whatwg.org/#statuses
|
// https://fetch.spec.whatwg.org/#statuses
|
||||||
@@ -203,6 +214,14 @@ const fromWebdavItemToEntity = (x: FileStat, remoteBaseDir: string): Entity => {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const tryEncodeURI = (x: string) => {
|
||||||
|
if (x.includes("%")) {
|
||||||
|
// likely encoded before!
|
||||||
|
return x;
|
||||||
|
}
|
||||||
|
return encodeURI(x);
|
||||||
|
};
|
||||||
|
|
||||||
export class FakeFsWebdav extends FakeFs {
|
export class FakeFsWebdav extends FakeFs {
|
||||||
kind: "webdav";
|
kind: "webdav";
|
||||||
|
|
||||||
@@ -212,6 +231,10 @@ export class FakeFsWebdav extends FakeFs {
|
|||||||
vaultFolderExists: boolean;
|
vaultFolderExists: boolean;
|
||||||
saveUpdatedConfigFunc: () => Promise<any>;
|
saveUpdatedConfigFunc: () => Promise<any>;
|
||||||
|
|
||||||
|
supportNativePartial: boolean;
|
||||||
|
isNextcloud: boolean;
|
||||||
|
nextcloudUploadServerAddress: string;
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
webdavConfig: WebdavConfig,
|
webdavConfig: WebdavConfig,
|
||||||
vaultName: string,
|
vaultName: string,
|
||||||
@@ -220,10 +243,14 @@ export class FakeFsWebdav extends FakeFs {
|
|||||||
super();
|
super();
|
||||||
this.kind = "webdav";
|
this.kind = "webdav";
|
||||||
this.webdavConfig = cloneDeep(webdavConfig);
|
this.webdavConfig = cloneDeep(webdavConfig);
|
||||||
this.webdavConfig.address = encodeURI(this.webdavConfig.address);
|
this.webdavConfig.address = tryEncodeURI(this.webdavConfig.address);
|
||||||
this.remoteBaseDir = this.webdavConfig.remoteBaseDir || vaultName || "";
|
this.remoteBaseDir = this.webdavConfig.remoteBaseDir || vaultName || "";
|
||||||
this.vaultFolderExists = false;
|
this.vaultFolderExists = false;
|
||||||
this.saveUpdatedConfigFunc = saveUpdatedConfigFunc;
|
this.saveUpdatedConfigFunc = saveUpdatedConfigFunc;
|
||||||
|
|
||||||
|
this.supportNativePartial = false;
|
||||||
|
this.isNextcloud = false;
|
||||||
|
this.nextcloudUploadServerAddress = "";
|
||||||
}
|
}
|
||||||
|
|
||||||
async _init() {
|
async _init() {
|
||||||
@@ -293,6 +320,72 @@ export class FakeFsWebdav extends FakeFs {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
await this._checkPartialSupport();
|
||||||
|
}
|
||||||
|
|
||||||
|
_getnextcloudUploadServerAddress = () => {
|
||||||
|
const s = this.webdavConfig.address.split("/");
|
||||||
|
if (
|
||||||
|
s.length > 3 &&
|
||||||
|
s[s.length - 3] === "dav" &&
|
||||||
|
s[s.length - 2] === "files" &&
|
||||||
|
s[s.length - 1] !== ""
|
||||||
|
) {
|
||||||
|
s[s.length - 2] = "uploads";
|
||||||
|
return s.join("/");
|
||||||
|
}
|
||||||
|
throw Error(`cannot construct upload address for ${s}`);
|
||||||
|
};
|
||||||
|
|
||||||
|
async _checkPartialSupport() {
|
||||||
|
const compliance = await this.client.getDAVCompliance(
|
||||||
|
`/${this.remoteBaseDir}/`
|
||||||
|
);
|
||||||
|
|
||||||
|
for (const c of compliance.compliance) {
|
||||||
|
// nextcloud AND with an account
|
||||||
|
if (
|
||||||
|
c.toLocaleLowerCase().includes("nextcloud") &&
|
||||||
|
this.webdavConfig.username !== "" &&
|
||||||
|
this.webdavConfig.password !== ""
|
||||||
|
) {
|
||||||
|
// the address is parsable
|
||||||
|
const s = this.webdavConfig.address.split("/");
|
||||||
|
if (
|
||||||
|
s.length > 3 &&
|
||||||
|
s[s.length - 3] === "dav" &&
|
||||||
|
s[s.length - 2] === "files" &&
|
||||||
|
s[s.length - 1] !== ""
|
||||||
|
) {
|
||||||
|
this.isNextcloud = true;
|
||||||
|
this.nextcloudUploadServerAddress =
|
||||||
|
this._getnextcloudUploadServerAddress();
|
||||||
|
console.debug(
|
||||||
|
`isNextcloud=${this.isNextcloud}, uploadFolder=${this.nextcloudUploadServerAddress}`
|
||||||
|
);
|
||||||
|
return true;
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// taken from https://github.com/perry-mitchell/webdav-client/blob/master/source/operations/partialUpdateFileContents.ts
|
||||||
|
// which is under MIT license
|
||||||
|
if (
|
||||||
|
(compliance.server.includes("Apache") &&
|
||||||
|
compliance.compliance.includes(
|
||||||
|
"<http://apache.org/dav/propset/fs/1>"
|
||||||
|
)) ||
|
||||||
|
compliance.compliance.includes("sabredav-partialupdate")
|
||||||
|
) {
|
||||||
|
this.supportNativePartial = true;
|
||||||
|
console.debug(`supportNativePartial=true`);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
async walk(): Promise<Entity[]> {
|
async walk(): Promise<Entity[]> {
|
||||||
@@ -329,7 +422,20 @@ export class FakeFsWebdav extends FakeFs {
|
|||||||
// glob: "/**" /* avoid dot files by using glob */,
|
// glob: "/**" /* avoid dot files by using glob */,
|
||||||
}) as Promise<FileStat[]>;
|
}) as Promise<FileStat[]>;
|
||||||
});
|
});
|
||||||
const r2 = flatten(await Promise.all(r));
|
const r3 = await Promise.all(r);
|
||||||
|
for (const r4 of r3) {
|
||||||
|
if (
|
||||||
|
this.webdavConfig.address.includes("jianguoyun.com") &&
|
||||||
|
r4.length >= 749
|
||||||
|
) {
|
||||||
|
// https://help.jianguoyun.com/?p=2064
|
||||||
|
// no more than 750 per request
|
||||||
|
throw Error(
|
||||||
|
`出错:坚果云 api 有限制,文件列表加载不全。终止同步!`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
const r2 = flatten(r3);
|
||||||
subContents.push(...r2);
|
subContents.push(...r2);
|
||||||
}
|
}
|
||||||
for (let i = 0; i < subContents.length; ++i) {
|
for (let i = 0; i < subContents.length; ++i) {
|
||||||
@@ -357,6 +463,19 @@ export class FakeFsWebdav extends FakeFs {
|
|||||||
return contents.map((x) => fromWebdavItemToEntity(x, this.remoteBaseDir));
|
return contents.map((x) => fromWebdavItemToEntity(x, this.remoteBaseDir));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async walkPartial(): Promise<Entity[]> {
|
||||||
|
await this._init();
|
||||||
|
|
||||||
|
const contents = (await this.client.getDirectoryContents(
|
||||||
|
`/${this.remoteBaseDir}`,
|
||||||
|
{
|
||||||
|
deep: false, // partial, no need to recursive here
|
||||||
|
details: false /* no need for verbose details here */,
|
||||||
|
}
|
||||||
|
)) as FileStat[];
|
||||||
|
return contents.map((x) => fromWebdavItemToEntity(x, this.remoteBaseDir));
|
||||||
|
}
|
||||||
|
|
||||||
async stat(key: string): Promise<Entity> {
|
async stat(key: string): Promise<Entity> {
|
||||||
await this._init();
|
await this._init();
|
||||||
const fullPath = getWebdavPath(key, this.remoteBaseDir);
|
const fullPath = getWebdavPath(key, this.remoteBaseDir);
|
||||||
@@ -384,8 +503,10 @@ export class FakeFsWebdav extends FakeFs {
|
|||||||
mtime?: number,
|
mtime?: number,
|
||||||
ctime?: number
|
ctime?: number
|
||||||
): Promise<Entity> {
|
): Promise<Entity> {
|
||||||
|
// the sync algorithm should do recursive manually already.
|
||||||
|
// if we set recursive: true here, Digest auth will return some error inside the PROPFIND
|
||||||
await this.client.createDirectory(key, {
|
await this.client.createDirectory(key, {
|
||||||
recursive: true,
|
recursive: false,
|
||||||
});
|
});
|
||||||
return await this._statFromRoot(key);
|
return await this._statFromRoot(key);
|
||||||
}
|
}
|
||||||
@@ -401,22 +522,251 @@ export class FakeFsWebdav extends FakeFs {
|
|||||||
}
|
}
|
||||||
await this._init();
|
await this._init();
|
||||||
const uploadFile = getWebdavPath(key, this.remoteBaseDir);
|
const uploadFile = getWebdavPath(key, this.remoteBaseDir);
|
||||||
return await this._writeFileFromRoot(uploadFile, content, mtime, ctime);
|
return await this._writeFileFromRoot(
|
||||||
|
uploadFile,
|
||||||
|
content,
|
||||||
|
mtime,
|
||||||
|
ctime,
|
||||||
|
key
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
async _writeFileFromRoot(
|
async _writeFileFromRoot(
|
||||||
key: string,
|
key: string,
|
||||||
content: ArrayBuffer,
|
content: ArrayBuffer,
|
||||||
mtime: number,
|
mtime: number,
|
||||||
ctime: number
|
ctime: number,
|
||||||
|
origKey: string
|
||||||
): Promise<Entity> {
|
): Promise<Entity> {
|
||||||
|
// less than 10 MB
|
||||||
|
if (content.byteLength <= 10 * 1024 * 1024) {
|
||||||
|
return await this._writeFileFromRootFull(
|
||||||
|
key,
|
||||||
|
content,
|
||||||
|
mtime,
|
||||||
|
ctime,
|
||||||
|
origKey
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// larger than 10 MB
|
||||||
|
if (!this.isNextcloud && !this.supportNativePartial) {
|
||||||
|
// give up and upload by whole, and directly return
|
||||||
|
return await this._writeFileFromRootFull(
|
||||||
|
key,
|
||||||
|
content,
|
||||||
|
mtime,
|
||||||
|
ctime,
|
||||||
|
origKey
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// try to upload by chunks
|
||||||
|
try {
|
||||||
|
if (this.isNextcloud) {
|
||||||
|
return await this._writeFileFromRootNextcloud(
|
||||||
|
key,
|
||||||
|
content,
|
||||||
|
mtime,
|
||||||
|
ctime,
|
||||||
|
origKey
|
||||||
|
);
|
||||||
|
} else if (this.supportNativePartial) {
|
||||||
|
return await this._writeFileFromRootNativePartial(
|
||||||
|
key,
|
||||||
|
content,
|
||||||
|
mtime,
|
||||||
|
ctime,
|
||||||
|
origKey
|
||||||
|
);
|
||||||
|
}
|
||||||
|
throw Error(`Error: partial upload / update method is not implemented??`);
|
||||||
|
} catch (e) {
|
||||||
|
console.error(
|
||||||
|
`we fail to write file partially for nextcloud or apache or sabre/dav, stop!`
|
||||||
|
);
|
||||||
|
console.error(e);
|
||||||
|
throw e;
|
||||||
|
// this.isNextcloud = false;
|
||||||
|
// this.supportNativePartial = false;
|
||||||
|
// return await this._writeFileFromRootFull(
|
||||||
|
// key,
|
||||||
|
// content,
|
||||||
|
// mtime,
|
||||||
|
// ctime,
|
||||||
|
// origKey
|
||||||
|
// );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async _writeFileFromRootFull(
|
||||||
|
key: string,
|
||||||
|
content: ArrayBuffer,
|
||||||
|
mtime: number,
|
||||||
|
ctime: number,
|
||||||
|
origKey: string
|
||||||
|
): Promise<Entity> {
|
||||||
|
// console.debug(`start _writeFileFromRootFull`);
|
||||||
await this.client.putFileContents(key, content, {
|
await this.client.putFileContents(key, content, {
|
||||||
overwrite: true,
|
overwrite: true,
|
||||||
onUploadProgress: (progress: any) => {
|
onUploadProgress: (progress: any) => {
|
||||||
console.info(`Uploaded ${progress.loaded} bytes of ${progress.total}`);
|
console.info(`Uploaded ${progress.loaded} bytes of ${progress.total}`);
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
return await this._statFromRoot(key);
|
const k = await this._statFromRoot(key);
|
||||||
|
// console.debug(`end _writeFileFromRootFull`);
|
||||||
|
return k;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* https://docs.nextcloud.com/server/latest/developer_manual/client_apis/WebDAV/chunking.html
|
||||||
|
* @param key
|
||||||
|
* @param content
|
||||||
|
* @param mtime
|
||||||
|
* @param ctime
|
||||||
|
* @returns
|
||||||
|
*/
|
||||||
|
async _writeFileFromRootNextcloud(
|
||||||
|
key: string,
|
||||||
|
content: ArrayBuffer,
|
||||||
|
mtime: number,
|
||||||
|
ctime: number,
|
||||||
|
origKey: string
|
||||||
|
): Promise<Entity> {
|
||||||
|
if (key.endsWith("/")) {
|
||||||
|
throw Error(
|
||||||
|
`key=${key} should not have tailing slash in _writeFileFromRootNextcloud`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
const destUrl = `${this.webdavConfig.address}/${encodeURI(key)}`;
|
||||||
|
console.debug(`destUrl=${destUrl}`);
|
||||||
|
|
||||||
|
const getTmpFolder = (x: string) => {
|
||||||
|
if (x.endsWith("/")) {
|
||||||
|
throw Error(`file to upload by chunk should not ends with /`);
|
||||||
|
}
|
||||||
|
const y = x.split("/");
|
||||||
|
const z = encodeURI(`${y[y.length - 1]}`);
|
||||||
|
return z;
|
||||||
|
};
|
||||||
|
|
||||||
|
const uploadServerAddress = this.nextcloudUploadServerAddress;
|
||||||
|
console.debug(`uploadServerAddress=${uploadServerAddress}`);
|
||||||
|
const tmpFolderName = getTmpFolder(key);
|
||||||
|
console.debug(`tmpFolderName=${tmpFolderName}`);
|
||||||
|
|
||||||
|
const clientForUpload = createClient(uploadServerAddress, {
|
||||||
|
username: this.webdavConfig.username,
|
||||||
|
password: this.webdavConfig.password,
|
||||||
|
headers: {
|
||||||
|
"Cache-Control": "no-cache",
|
||||||
|
},
|
||||||
|
authType:
|
||||||
|
this.webdavConfig.authType === "digest"
|
||||||
|
? AuthType.Digest
|
||||||
|
: AuthType.Password,
|
||||||
|
});
|
||||||
|
|
||||||
|
// create folder
|
||||||
|
await clientForUpload.createDirectory(tmpFolderName, {
|
||||||
|
method: "MKCOL",
|
||||||
|
headers: {
|
||||||
|
Destination: destUrl,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
console.debug(`finish creating folder`);
|
||||||
|
|
||||||
|
// upload by chunks
|
||||||
|
const sizePerChunk = 5 * 1024 * 1024; // 5 mb
|
||||||
|
const chunkRanges = splitFileSizeToChunkRanges(
|
||||||
|
content.byteLength,
|
||||||
|
sizePerChunk
|
||||||
|
);
|
||||||
|
for (let i = 0; i < chunkRanges.length; ++i) {
|
||||||
|
const { start, end } = chunkRanges[i];
|
||||||
|
const tmpFileName = `${i + 1}`.padStart(5, "0");
|
||||||
|
const tmpFileNameWithFolder = `${tmpFolderName}/${tmpFileName}`;
|
||||||
|
console.debug(
|
||||||
|
`start to upload chunk ${
|
||||||
|
i + 1
|
||||||
|
} to ${tmpFileNameWithFolder} with startInclusive=${start}, endInclusive=${end}`
|
||||||
|
);
|
||||||
|
await clientForUpload.putFileContents(
|
||||||
|
tmpFileNameWithFolder,
|
||||||
|
content.slice(start, end + 1),
|
||||||
|
{
|
||||||
|
headers: {
|
||||||
|
Destination: destUrl,
|
||||||
|
"OC-Total-Length": `${content.byteLength}`,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
console.debug(`finish upload all chunks`);
|
||||||
|
|
||||||
|
// move to assemble
|
||||||
|
const fakeFileToMoveUrl = `${tmpFolderName}/.file`;
|
||||||
|
console.debug(`fakeFileToMoveUrl=${fakeFileToMoveUrl}`);
|
||||||
|
await clientForUpload.customRequest(fakeFileToMoveUrl, {
|
||||||
|
method: "MOVE",
|
||||||
|
headers: {
|
||||||
|
Destination: destUrl,
|
||||||
|
"OC-Total-Length": `${content.byteLength}`,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
console.debug(`finish moving file`);
|
||||||
|
// TODO: setting X-OC-Mtime
|
||||||
|
|
||||||
|
// stat
|
||||||
|
console.debug(`before stat origKey=${origKey}`);
|
||||||
|
const k = await this.stat(origKey);
|
||||||
|
console.debug(`after stat`);
|
||||||
|
if (k.sizeRaw !== content.byteLength) {
|
||||||
|
// we failed!
|
||||||
|
this.isNextcloud = false; // give up next time!
|
||||||
|
const err = `unable to upload file ${key} by chunks to nextcloud`;
|
||||||
|
console.error(err);
|
||||||
|
throw Error(err);
|
||||||
|
}
|
||||||
|
console.debug(`after stat, k=${JSON.stringify(k, null, 2)}`);
|
||||||
|
|
||||||
|
return k;
|
||||||
|
}
|
||||||
|
|
||||||
|
async _writeFileFromRootNativePartial(
|
||||||
|
key: string,
|
||||||
|
content: ArrayBuffer,
|
||||||
|
mtime: number,
|
||||||
|
ctime: number,
|
||||||
|
origKey: string
|
||||||
|
): Promise<Entity> {
|
||||||
|
// firstly upload a 0-byte data
|
||||||
|
await this._writeFileFromRootFull(
|
||||||
|
key,
|
||||||
|
new ArrayBuffer(0),
|
||||||
|
mtime,
|
||||||
|
ctime,
|
||||||
|
origKey
|
||||||
|
);
|
||||||
|
|
||||||
|
// then "update" by chunks
|
||||||
|
const sizePerChunk = 5 * 1024 * 1024; // 5 mb
|
||||||
|
const chunkRanges = splitFileSizeToChunkRanges(
|
||||||
|
content.byteLength,
|
||||||
|
sizePerChunk
|
||||||
|
);
|
||||||
|
for (let i = 0; i < chunkRanges.length; ++i) {
|
||||||
|
const { start, end } = chunkRanges[i];
|
||||||
|
await this.client.partialUpdateFileContents(
|
||||||
|
key,
|
||||||
|
start,
|
||||||
|
end,
|
||||||
|
content.slice(start, end + 1)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// lastly return
|
||||||
|
return await this.stat(origKey);
|
||||||
}
|
}
|
||||||
|
|
||||||
async readFile(key: string): Promise<ArrayBuffer> {
|
async readFile(key: string): Promise<ArrayBuffer> {
|
||||||
|
|||||||
@@ -133,6 +133,25 @@ export class FakeFsWebdis extends FakeFs {
|
|||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async walkPartial(): Promise<Entity[]> {
|
||||||
|
let cursor = "0";
|
||||||
|
const res: Entity[] = [];
|
||||||
|
const command = `SCAN/${cursor}/MATCH/rs:fs:v1:*:meta/COUNT/10`; // fewer keys
|
||||||
|
const rsp = (await (await this._fetchCommand("GET", command)).json())[
|
||||||
|
"SCAN"
|
||||||
|
];
|
||||||
|
// console.debug(rsp);
|
||||||
|
cursor = rsp[0];
|
||||||
|
for (const fullKeyWithMeta of rsp[1]) {
|
||||||
|
const realKey = getOrigPath(fullKeyWithMeta, this.remoteBaseDir);
|
||||||
|
res.push(await this.stat(realKey));
|
||||||
|
}
|
||||||
|
// no need to loop over cursor
|
||||||
|
// console.debug(`walk res:`);
|
||||||
|
// console.debug(res);
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
async stat(key: string): Promise<Entity> {
|
async stat(key: string): Promise<Entity> {
|
||||||
const fullKey = getWebdisPath(key, this.remoteBaseDir);
|
const fullKey = getWebdisPath(key, this.remoteBaseDir);
|
||||||
return await this._statFromRaw(fullKey);
|
return await this._statFromRaw(fullKey);
|
||||||
|
|||||||
+13
-7
@@ -11,7 +11,7 @@
|
|||||||
"syncrun_step1": "1/8 Remotely Save is preparing ({{serviceType}})",
|
"syncrun_step1": "1/8 Remotely Save is preparing ({{serviceType}})",
|
||||||
"syncrun_step2": "2/8 Starting to fetch remote meta data and check password.",
|
"syncrun_step2": "2/8 Starting to fetch remote meta data and check password.",
|
||||||
"syncrun_passworderr": "Something goes wrong while checking password.",
|
"syncrun_passworderr": "Something goes wrong while checking password.",
|
||||||
"syncrun_step3": "3/8 Startting to process remote data.",
|
"syncrun_step3": "3/8 Starting to process remote data.",
|
||||||
"syncrun_step4": "4/8 Starting to fetch local meta data.",
|
"syncrun_step4": "4/8 Starting to fetch local meta data.",
|
||||||
"syncrun_step5": "5/8 Starting to fetch local prev sync data.",
|
"syncrun_step5": "5/8 Starting to fetch local prev sync data.",
|
||||||
"syncrun_step6": "6/8 Starting to generate sync plan.",
|
"syncrun_step6": "6/8 Starting to generate sync plan.",
|
||||||
@@ -38,6 +38,7 @@
|
|||||||
"protocol_onedrive_connect_unknown": "Do not know how to deal with the callback: {{params}}",
|
"protocol_onedrive_connect_unknown": "Do not know how to deal with the callback: {{params}}",
|
||||||
"command_startsync": "start sync",
|
"command_startsync": "start sync",
|
||||||
"command_drynrun": "start sync (dry run only)",
|
"command_drynrun": "start sync (dry run only)",
|
||||||
|
"command_exportsyncplans_1_only_change": "export sync plans (latest 1) (change part)",
|
||||||
"command_exportsyncplans_1": "export sync plans (latest 1)",
|
"command_exportsyncplans_1": "export sync plans (latest 1)",
|
||||||
"command_exportsyncplans_5": "export sync plans (latest 5)",
|
"command_exportsyncplans_5": "export sync plans (latest 5)",
|
||||||
"command_exportsyncplans_all": "export sync plans (all)",
|
"command_exportsyncplans_all": "export sync plans (all)",
|
||||||
@@ -115,9 +116,9 @@
|
|||||||
"modal_sizesconflict_copynotice": "All the sizes conflicts info have been copied to the clipboard!",
|
"modal_sizesconflict_copynotice": "All the sizes conflicts info have been copied to the clipboard!",
|
||||||
"settings_basic": "Basic Settings",
|
"settings_basic": "Basic Settings",
|
||||||
"settings_password": "Encryption Password",
|
"settings_password": "Encryption Password",
|
||||||
"settings_password_desc": "Password for E2E encryption. Empty for no password. You need to click \"Confirm\". Attention: The password and other info are saved locally. After changing the password, you need to manually delete every original files in the remote, and re-sync (so that upload) the encrypted files again.",
|
"settings_password_desc": "Password for E2E encryption. Empty for no password. You need to click \"Confirm\". Attention: The password and other info are saved locally. After changing the password, you need to manually delete all files from the remote location and re-sync to upload the encrypted files again.",
|
||||||
"settings_encryptionmethod": "Encryption Method",
|
"settings_encryptionmethod": "Encryption Method",
|
||||||
"settings_encryptionmethod_desc": "Encryption method for E2E encryption. RClone Crypt format is recommended but it doesn't encrypt path structure. OpenSSL enc is the legacy format of this plugin. <b>Both are not affliated with official RClone and OpenSSL product or community.</b> Attention: After switching the method, you need to manually delete every original files in the remote and re-sync (so that upload) the encrypted files again. More info in the <a href='https://github.com/remotely-save/remotely-save/tree/master/docs/encryption'>online doc</a>.",
|
"settings_encryptionmethod_desc": "Encryption method for E2E encryption. The RClone Crypt format is recommended, although it does not encrypt the path structure. OpenSSL enc is the legacy format of this plugin. <b>Both are not affliated with the official RClone and OpenSSL products or communities.</b> Attention: After switching encryption methods, you need to manually delete all original files from the remote location and re-sync to upload the encrypted files again. More info is available in the <a href='https://github.com/remotely-save/remotely-save/tree/master/docs/encryption'>online doc</a>.",
|
||||||
"settings_encryptionmethod_rclone": "RClone Crypt (recommended)",
|
"settings_encryptionmethod_rclone": "RClone Crypt (recommended)",
|
||||||
"settings_encryptionmethod_openssl": "OpenSSL enc (legacy)",
|
"settings_encryptionmethod_openssl": "OpenSSL enc (legacy)",
|
||||||
|
|
||||||
@@ -129,7 +130,7 @@
|
|||||||
"settings_autorun_10min": "every 10 minutes",
|
"settings_autorun_10min": "every 10 minutes",
|
||||||
"settings_autorun_30min": "every 30 minutes",
|
"settings_autorun_30min": "every 30 minutes",
|
||||||
"settings_runoncestartup": "Run Once On Start Up Automatically",
|
"settings_runoncestartup": "Run Once On Start Up Automatically",
|
||||||
"settings_runoncestartup_desc": "This settings allows setting running ONCE on start up automatically. This will take effect on NEXT start up after changing. This setting, is different from \"schedule for auto run\" which starts syncing after EVERY interval.",
|
"settings_runoncestartup_desc": "This setting causes the sync to run once automatically at startup. Changes will take effect on the NEXT startup. This setting is different from the \"schedule for auto run\" setting, which initiates syncing after every specified interval.",
|
||||||
"settings_runoncestartup_notset": "(not set)",
|
"settings_runoncestartup_notset": "(not set)",
|
||||||
"settings_runoncestartup_1sec": "sync once after 1 second of start up",
|
"settings_runoncestartup_1sec": "sync once after 1 second of start up",
|
||||||
"settings_runoncestartup_10sec": "sync once after 10 seconds of start up",
|
"settings_runoncestartup_10sec": "sync once after 10 seconds of start up",
|
||||||
@@ -219,8 +220,12 @@
|
|||||||
"settings_onedrive_auth": "Auth",
|
"settings_onedrive_auth": "Auth",
|
||||||
"settings_onedrive_auth_desc": "Auth.",
|
"settings_onedrive_auth_desc": "Auth.",
|
||||||
"settings_onedrive_auth_button": "Auth",
|
"settings_onedrive_auth_button": "Auth",
|
||||||
"settings_onedrive_connect_succ": "Great! We can connect to Onedrive!",
|
"settings_onedrive_connect_succ": "Great! We can connect to OneDrive!",
|
||||||
"settings_onedrive_connect_fail": "We cannot connect to Onedrive.",
|
"settings_onedrive_connect_fail": "We cannot connect to OneDrive.",
|
||||||
|
"settings_onedrive_emptyfile": "Empty File Handling",
|
||||||
|
"settings_onedrive_emptyfile_desc": "OneDrive doesn't allow uploading empty file (even in its official website). Do you want to show up errors or silently skip the empty files?",
|
||||||
|
"settings_onedrive_emptyfile_skip": "Skip",
|
||||||
|
"settings_onedrive_emptyfile_error": "Error and abort",
|
||||||
"settings_webdav": "Remote For Webdav",
|
"settings_webdav": "Remote For Webdav",
|
||||||
"settings_webdav_disclaimer1": "Disclaimer: The information is stored locally. Other malicious/harmful/faulty plugins may read the info. If you see any unintentional access to your webdav server, please immediately change the username and password.",
|
"settings_webdav_disclaimer1": "Disclaimer: The information is stored locally. Other malicious/harmful/faulty plugins may read the info. If you see any unintentional access to your webdav server, please immediately change the username and password.",
|
||||||
"settings_webdav_cors_os": "Obsidian desktop>=0.13.25 or iOS>=1.1.1 or Android>=1.2.1 supports bypassing CORS locally. But you are using an old version, and you're suggested to upgrade Obsidian.",
|
"settings_webdav_cors_os": "Obsidian desktop>=0.13.25 or iOS>=1.1.1 or Android>=1.2.1 supports bypassing CORS locally. But you are using an old version, and you're suggested to upgrade Obsidian.",
|
||||||
@@ -233,7 +238,7 @@
|
|||||||
"settings_webdav_password": "Password",
|
"settings_webdav_password": "Password",
|
||||||
"settings_webdav_password_desc": "Password. Attention: the password and other info are saved locally.",
|
"settings_webdav_password_desc": "Password. Attention: the password and other info are saved locally.",
|
||||||
"settings_webdav_auth": "Auth Type",
|
"settings_webdav_auth": "Auth Type",
|
||||||
"settings_webdav_auth_desc": "If no password, this option would be ignored.",
|
"settings_webdav_auth_desc": "If no password is provided, this option will be ignored.",
|
||||||
"settings_webdav_depth": "Depth Header Sent To Servers",
|
"settings_webdav_depth": "Depth Header Sent To Servers",
|
||||||
"settings_webdav_depth_desc": "Webdav servers should be configured to allow requests with header Depth being '1' or 'Infinity'. If you are not sure what's this, choose \"depth='1'\". If you are sure your server supports depth='infinity', please choose that to get way better performance.",
|
"settings_webdav_depth_desc": "Webdav servers should be configured to allow requests with header Depth being '1' or 'Infinity'. If you are not sure what's this, choose \"depth='1'\". If you are sure your server supports depth='infinity', please choose that to get way better performance.",
|
||||||
"settings_webdav_depth_1": "only supports depth='1'",
|
"settings_webdav_depth_1": "only supports depth='1'",
|
||||||
@@ -314,6 +319,7 @@
|
|||||||
"settings_viewconsolelog_desc": "On desktop, please press \"ctrl+shift+i\" or \"cmd+shift+i\" to view the log. On mobile, please install the third-party plugin <a href='https://obsidian.md/plugins?search=Logstravaganza'>Logstravaganza</a> to export the console log to a note.",
|
"settings_viewconsolelog_desc": "On desktop, please press \"ctrl+shift+i\" or \"cmd+shift+i\" to view the log. On mobile, please install the third-party plugin <a href='https://obsidian.md/plugins?search=Logstravaganza'>Logstravaganza</a> to export the console log to a note.",
|
||||||
"settings_syncplans": "Export Sync Plans",
|
"settings_syncplans": "Export Sync Plans",
|
||||||
"settings_syncplans_desc": "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. Click the button to export sync plans.",
|
"settings_syncplans_desc": "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. Click the button to export sync plans.",
|
||||||
|
"settings_syncplans_button_1_only_change": "Export latest 1 (change part)",
|
||||||
"settings_syncplans_button_1": "Export latest 1",
|
"settings_syncplans_button_1": "Export latest 1",
|
||||||
"settings_syncplans_button_5": "Export latest 5",
|
"settings_syncplans_button_5": "Export latest 5",
|
||||||
"settings_syncplans_button_all": "Export All",
|
"settings_syncplans_button_all": "Export All",
|
||||||
|
|||||||
@@ -39,6 +39,7 @@
|
|||||||
"command_startsync": "开始同步(start sync)",
|
"command_startsync": "开始同步(start sync)",
|
||||||
"command_drynrun": "开始同步(空跑模式)(start sync (dry run only))",
|
"command_drynrun": "开始同步(空跑模式)(start sync (dry run only))",
|
||||||
"command_exportsyncplans_json": "导出同步计划为 json 格式(export sync plans in json format)",
|
"command_exportsyncplans_json": "导出同步计划为 json 格式(export sync plans in json format)",
|
||||||
|
"command_exportsyncplans_1_only_change": "导出同步计划(最近 1 次)(仅修改部分)(export sync plans (latest 1) (change part))",
|
||||||
"command_exportsyncplans_1": "导出同步计划(最近 1 次)(export sync plans (latest 1))",
|
"command_exportsyncplans_1": "导出同步计划(最近 1 次)(export sync plans (latest 1))",
|
||||||
"command_exportsyncplans_5": "导出同步计划(最近 5 次)(export sync plans (latest 5))",
|
"command_exportsyncplans_5": "导出同步计划(最近 5 次)(export sync plans (latest 5))",
|
||||||
"command_exportsyncplans_all": "导出同步计划(所有)(export sync plans (all))",
|
"command_exportsyncplans_all": "导出同步计划(所有)(export sync plans (all))",
|
||||||
@@ -220,6 +221,10 @@
|
|||||||
"settings_onedrive_auth_button": "鉴权",
|
"settings_onedrive_auth_button": "鉴权",
|
||||||
"settings_onedrive_connect_succ": "很好!我们可连接上 OneDrive!",
|
"settings_onedrive_connect_succ": "很好!我们可连接上 OneDrive!",
|
||||||
"settings_onedrive_connect_fail": "我们未能连接上 OneDrive。",
|
"settings_onedrive_connect_fail": "我们未能连接上 OneDrive。",
|
||||||
|
"settings_onedrive_emptyfile": "空文件处理",
|
||||||
|
"settings_onedrive_emptyfile_desc": "OneDrive 不允许上传空文件(即使官网也是不允许的)。那么你想跳过空文件还是返回错误?",
|
||||||
|
"settings_onedrive_emptyfile_skip": "跳过",
|
||||||
|
"settings_onedrive_emptyfile_error": "返回错误和中断",
|
||||||
"settings_webdav": "Webdav 设置",
|
"settings_webdav": "Webdav 设置",
|
||||||
"settings_webdav_disclaimer1": "声明:您所输入的信息存储于本地。其它有害的或者出错的插件,是有可能读取到这些信息的。如果您发现了 Webdav 服务器有不符合预期的访问,请立刻修改用户名和密码。",
|
"settings_webdav_disclaimer1": "声明:您所输入的信息存储于本地。其它有害的或者出错的插件,是有可能读取到这些信息的。如果您发现了 Webdav 服务器有不符合预期的访问,请立刻修改用户名和密码。",
|
||||||
"settings_webdav_cors_os": "Obsidian 桌面版>=0.13.25 或 iOS>=1.1.1 或 Android>=1.2.1 支持跳过 CORS 设置。但您正在使用旧版,建议升级。",
|
"settings_webdav_cors_os": "Obsidian 桌面版>=0.13.25 或 iOS>=1.1.1 或 Android>=1.2.1 支持跳过 CORS 设置。但您正在使用旧版,建议升级。",
|
||||||
@@ -313,6 +318,7 @@
|
|||||||
"settings_viewconsolelog_desc": "电脑上,输入“ctrl+shift+i”或“cmd+shift+i”来查看终端输出。手机上,安装第三方插件 <a href='https://obsidian.md/plugins?search=Logstravaganza'>Logstravaganza</a> 来导出终端输出到一篇笔记上。",
|
"settings_viewconsolelog_desc": "电脑上,输入“ctrl+shift+i”或“cmd+shift+i”来查看终端输出。手机上,安装第三方插件 <a href='https://obsidian.md/plugins?search=Logstravaganza'>Logstravaganza</a> 来导出终端输出到一篇笔记上。",
|
||||||
"settings_syncplans": "导出同步计划",
|
"settings_syncplans": "导出同步计划",
|
||||||
"settings_syncplans_desc": "每次您启动同步,并在实际上传下载前,插件会生成同步计划。它可以使您知道每次同步发生了什么。点击按钮可以导出同步计划。",
|
"settings_syncplans_desc": "每次您启动同步,并在实际上传下载前,插件会生成同步计划。它可以使您知道每次同步发生了什么。点击按钮可以导出同步计划。",
|
||||||
|
"settings_syncplans_button_1_only_change": "导出最近 1 次(仅修改部分)",
|
||||||
"settings_syncplans_button_1": "导出最近 1 次",
|
"settings_syncplans_button_1": "导出最近 1 次",
|
||||||
"settings_syncplans_button_5": "导出最近 5 次",
|
"settings_syncplans_button_5": "导出最近 5 次",
|
||||||
"settings_syncplans_button_all": "导出所有",
|
"settings_syncplans_button_all": "导出所有",
|
||||||
|
|||||||
@@ -38,6 +38,7 @@
|
|||||||
"protocol_onedrive_connect_unknown": "不知道如何處理此 callback:{{params}}",
|
"protocol_onedrive_connect_unknown": "不知道如何處理此 callback:{{params}}",
|
||||||
"command_startsync": "開始同步(start sync)",
|
"command_startsync": "開始同步(start sync)",
|
||||||
"command_drynrun": "開始同步(空跑模式)(start sync (dry run only))",
|
"command_drynrun": "開始同步(空跑模式)(start sync (dry run only))",
|
||||||
|
"command_exportsyncplans_1_only_change": "匯出同步計劃(最近 1 次)(僅修改部分)(export sync plans (latest 1) (change part))",
|
||||||
"command_exportsyncplans_1": "匯出同步計劃(最近 1 次)(export sync plans (latest 1))",
|
"command_exportsyncplans_1": "匯出同步計劃(最近 1 次)(export sync plans (latest 1))",
|
||||||
"command_exportsyncplans_5": "匯出同步計劃(最近 5 次)(export sync plans (latest 5))",
|
"command_exportsyncplans_5": "匯出同步計劃(最近 5 次)(export sync plans (latest 5))",
|
||||||
"command_exportsyncplans_all": "匯出同步計劃(所有)(export sync plans (all))",
|
"command_exportsyncplans_all": "匯出同步計劃(所有)(export sync plans (all))",
|
||||||
@@ -219,6 +220,10 @@
|
|||||||
"settings_onedrive_auth_button": "鑑權",
|
"settings_onedrive_auth_button": "鑑權",
|
||||||
"settings_onedrive_connect_succ": "很好!我們可連線上 OneDrive!",
|
"settings_onedrive_connect_succ": "很好!我們可連線上 OneDrive!",
|
||||||
"settings_onedrive_connect_fail": "我們未能連線上 OneDrive。",
|
"settings_onedrive_connect_fail": "我們未能連線上 OneDrive。",
|
||||||
|
"settings_onedrive_emptyfile": "空檔案處理",
|
||||||
|
"settings_onedrive_emptyfile_desc": "OneDrive 不允許上傳空檔案(即使官網也是不允許的)。那麼你想跳過空檔案還是返回錯誤?",
|
||||||
|
"settings_onedrive_emptyfile_skip": "跳過",
|
||||||
|
"settings_onedrive_emptyfile_error": "返回錯誤和中斷",
|
||||||
"settings_webdav": "Webdav 設定",
|
"settings_webdav": "Webdav 設定",
|
||||||
"settings_webdav_disclaimer1": "宣告:您所輸入的資訊儲存於本地。其它有害的或者出錯的外掛,是有可能讀取到這些資訊的。如果您發現了 Webdav 伺服器有不符合預期的訪問,請立刻修改使用者名稱和密碼。",
|
"settings_webdav_disclaimer1": "宣告:您所輸入的資訊儲存於本地。其它有害的或者出錯的外掛,是有可能讀取到這些資訊的。如果您發現了 Webdav 伺服器有不符合預期的訪問,請立刻修改使用者名稱和密碼。",
|
||||||
"settings_webdav_cors_os": "Obsidian 桌面版>=0.13.25 或 iOS>=1.1.1 或 Android>=1.1.1 支援跳過 CORS 設定。但您正在使用舊版,建議升級。",
|
"settings_webdav_cors_os": "Obsidian 桌面版>=0.13.25 或 iOS>=1.1.1 或 Android>=1.1.1 支援跳過 CORS 設定。但您正在使用舊版,建議升級。",
|
||||||
@@ -312,6 +317,7 @@
|
|||||||
"settings_viewconsolelog_desc": "電腦上,輸入“ctrl+shift+i”或“cmd+shift+i”來檢視終端輸出。手機上,安裝第三方外掛 <a href='https://obsidian.md/plugins?search=Logstravaganza'>Logstravaganza</a> 來匯出終端輸出到一篇筆記上。",
|
"settings_viewconsolelog_desc": "電腦上,輸入“ctrl+shift+i”或“cmd+shift+i”來檢視終端輸出。手機上,安裝第三方外掛 <a href='https://obsidian.md/plugins?search=Logstravaganza'>Logstravaganza</a> 來匯出終端輸出到一篇筆記上。",
|
||||||
"settings_syncplans": "匯出同步計劃",
|
"settings_syncplans": "匯出同步計劃",
|
||||||
"settings_syncplans_desc": "每次您啟動同步,並在實際上傳下載前,外掛會生成同步計劃。它可以使您知道每次同步發生了什麼。點選按鈕可以匯出同步計劃。",
|
"settings_syncplans_desc": "每次您啟動同步,並在實際上傳下載前,外掛會生成同步計劃。它可以使您知道每次同步發生了什麼。點選按鈕可以匯出同步計劃。",
|
||||||
|
"settings_syncplans_button_1_only_change": "匯出最近 1 次(僅修改部分)",
|
||||||
"settings_syncplans_button_1": "匯出最近 1 次",
|
"settings_syncplans_button_1": "匯出最近 1 次",
|
||||||
"settings_syncplans_button_5": "匯出最近 5 次",
|
"settings_syncplans_button_5": "匯出最近 5 次",
|
||||||
"settings_syncplans_button_all": "匯出所有",
|
"settings_syncplans_button_all": "匯出所有",
|
||||||
|
|||||||
+32
-25
@@ -1,6 +1,8 @@
|
|||||||
import localforage from "localforage";
|
import localforage from "localforage";
|
||||||
import { extendPrototype } from "localforage-getitems";
|
import { extendPrototype as ep1 } from "localforage-getitems";
|
||||||
extendPrototype(localforage);
|
import { extendPrototype as ep2 } from "localforage-removeitems";
|
||||||
|
ep1(localforage);
|
||||||
|
ep2(localforage);
|
||||||
export type LocalForage = typeof localforage;
|
export type LocalForage = typeof localforage;
|
||||||
import { nanoid } from "nanoid";
|
import { nanoid } from "nanoid";
|
||||||
|
|
||||||
@@ -307,12 +309,15 @@ export const clearFileHistoryOfEverythingByVault = async (
|
|||||||
db: InternalDBs,
|
db: InternalDBs,
|
||||||
vaultRandomID: string
|
vaultRandomID: string
|
||||||
) => {
|
) => {
|
||||||
const keys = await db.fileHistoryTbl.keys();
|
const keys = (await db.fileHistoryTbl.keys()).filter((x) =>
|
||||||
for (const key of keys) {
|
x.startsWith(`${vaultRandomID}\t`)
|
||||||
if (key.startsWith(`${vaultRandomID}\t`)) {
|
);
|
||||||
await db.fileHistoryTbl.removeItem(key);
|
await db.fileHistoryTbl.removeItems(keys);
|
||||||
}
|
// for (const key of keys) {
|
||||||
}
|
// if (key.startsWith(`${vaultRandomID}\t`)) {
|
||||||
|
// await db.fileHistoryTbl.removeItem(key);
|
||||||
|
// }
|
||||||
|
// }
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -339,12 +344,15 @@ export const clearAllSyncMetaMappingByVault = async (
|
|||||||
db: InternalDBs,
|
db: InternalDBs,
|
||||||
vaultRandomID: string
|
vaultRandomID: string
|
||||||
) => {
|
) => {
|
||||||
const keys = await db.syncMappingTbl.keys();
|
const keys = (await db.syncMappingTbl.keys()).filter((x) =>
|
||||||
for (const key of keys) {
|
x.startsWith(`${vaultRandomID}\t`)
|
||||||
if (key.startsWith(`${vaultRandomID}\t`)) {
|
);
|
||||||
await db.syncMappingTbl.removeItem(key);
|
await db.syncMappingTbl.removeItems(keys);
|
||||||
}
|
// for (const key of keys) {
|
||||||
}
|
// if (key.startsWith(`${vaultRandomID}\t`)) {
|
||||||
|
// await db.syncMappingTbl.removeItem(key);
|
||||||
|
// }
|
||||||
|
// }
|
||||||
};
|
};
|
||||||
|
|
||||||
export const insertSyncPlanRecordByVault = async (
|
export const insertSyncPlanRecordByVault = async (
|
||||||
@@ -422,11 +430,12 @@ export const clearExpiredSyncPlanRecords = async (db: InternalDBs) => {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
const ps = [] as Promise<void>[];
|
// const ps = [] as Promise<void>[];
|
||||||
keysToRemove.forEach((element) => {
|
// keysToRemove.forEach((element) => {
|
||||||
ps.push(db.syncPlansTbl.removeItem(element));
|
// ps.push(db.syncPlansTbl.removeItem(element));
|
||||||
});
|
// });
|
||||||
await Promise.all(ps);
|
// await Promise.all(ps);
|
||||||
|
await db.syncPlansTbl.removeItems(Array.from(keysToRemove));
|
||||||
};
|
};
|
||||||
|
|
||||||
export const getAllPrevSyncRecordsByVaultAndProfile = async (
|
export const getAllPrevSyncRecordsByVaultAndProfile = async (
|
||||||
@@ -475,12 +484,10 @@ export const clearAllPrevSyncRecordByVault = async (
|
|||||||
db: InternalDBs,
|
db: InternalDBs,
|
||||||
vaultRandomID: string
|
vaultRandomID: string
|
||||||
) => {
|
) => {
|
||||||
const keys = await db.prevSyncRecordsTbl.keys();
|
const keys = (await db.prevSyncRecordsTbl.keys()).filter((x) =>
|
||||||
for (const key of keys) {
|
x.startsWith(`${vaultRandomID}\t`)
|
||||||
if (key.startsWith(`${vaultRandomID}\t`)) {
|
);
|
||||||
await db.prevSyncRecordsTbl.removeItem(key);
|
await db.prevSyncRecordsTbl.removeItems(keys);
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export const clearAllLoggerOutputRecords = async (db: InternalDBs) => {
|
export const clearAllLoggerOutputRecords = async (db: InternalDBs) => {
|
||||||
|
|||||||
+33
-10
@@ -62,7 +62,7 @@ import { getClient } from "./fsGetter";
|
|||||||
import { FakeFsLocal } from "./fsLocal";
|
import { FakeFsLocal } from "./fsLocal";
|
||||||
import { DEFAULT_WEBDIS_CONFIG } from "./fsWebdis";
|
import { DEFAULT_WEBDIS_CONFIG } from "./fsWebdis";
|
||||||
import { changeMobileStatusBar } from "./misc";
|
import { changeMobileStatusBar } from "./misc";
|
||||||
import { DEFAULT_PROFILER_CONFIG, Profiler } from "./profiler";
|
import { DEFAULT_PROFILER_CONFIG, type Profiler } from "./profiler";
|
||||||
import { syncer } from "./sync";
|
import { syncer } from "./sync";
|
||||||
|
|
||||||
const DEFAULT_SETTINGS: RemotelySavePluginSettings = {
|
const DEFAULT_SETTINGS: RemotelySavePluginSettings = {
|
||||||
@@ -152,11 +152,12 @@ export default class RemotelySavePlugin extends Plugin {
|
|||||||
appContainerObserver?: MutationObserver;
|
appContainerObserver?: MutationObserver;
|
||||||
|
|
||||||
async syncRun(triggerSource: SyncTriggerSourceType = "manual") {
|
async syncRun(triggerSource: SyncTriggerSourceType = "manual") {
|
||||||
const profiler = new Profiler(
|
// const profiler = new Profiler(
|
||||||
undefined,
|
// undefined,
|
||||||
this.settings.profiler?.enablePrinting ?? false,
|
// this.settings.profiler?.enablePrinting ?? false,
|
||||||
this.settings.profiler?.recordSize ?? false
|
// this.settings.profiler?.recordSize ?? false
|
||||||
);
|
// );
|
||||||
|
const profiler: Profiler | undefined = undefined;
|
||||||
const fsLocal = new FakeFsLocal(
|
const fsLocal = new FakeFsLocal(
|
||||||
this.app.vault,
|
this.app.vault,
|
||||||
this.settings.syncConfigDir ?? false,
|
this.settings.syncConfigDir ?? false,
|
||||||
@@ -419,7 +420,7 @@ export default class RemotelySavePlugin extends Plugin {
|
|||||||
);
|
);
|
||||||
|
|
||||||
fsEncrypt.closeResources();
|
fsEncrypt.closeResources();
|
||||||
profiler.clear();
|
(profiler as Profiler | undefined)?.clear();
|
||||||
|
|
||||||
this.syncEvent?.trigger("SYNC_DONE");
|
this.syncEvent?.trigger("SYNC_DONE");
|
||||||
}
|
}
|
||||||
@@ -744,6 +745,22 @@ export default class RemotelySavePlugin extends Plugin {
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
this.addCommand({
|
||||||
|
id: "export-sync-plans-1-only-change",
|
||||||
|
name: t("command_exportsyncplans_1_only_change"),
|
||||||
|
icon: iconNameLogs,
|
||||||
|
callback: async () => {
|
||||||
|
await exportVaultSyncPlansToFiles(
|
||||||
|
this.db,
|
||||||
|
this.app.vault,
|
||||||
|
this.vaultRandomID,
|
||||||
|
1,
|
||||||
|
true
|
||||||
|
);
|
||||||
|
new Notice(t("settings_syncplans_notice"));
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
this.addCommand({
|
this.addCommand({
|
||||||
id: "export-sync-plans-1",
|
id: "export-sync-plans-1",
|
||||||
name: t("command_exportsyncplans_1"),
|
name: t("command_exportsyncplans_1"),
|
||||||
@@ -753,7 +770,8 @@ export default class RemotelySavePlugin extends Plugin {
|
|||||||
this.db,
|
this.db,
|
||||||
this.app.vault,
|
this.app.vault,
|
||||||
this.vaultRandomID,
|
this.vaultRandomID,
|
||||||
1
|
1,
|
||||||
|
false
|
||||||
);
|
);
|
||||||
new Notice(t("settings_syncplans_notice"));
|
new Notice(t("settings_syncplans_notice"));
|
||||||
},
|
},
|
||||||
@@ -768,7 +786,8 @@ export default class RemotelySavePlugin extends Plugin {
|
|||||||
this.db,
|
this.db,
|
||||||
this.app.vault,
|
this.app.vault,
|
||||||
this.vaultRandomID,
|
this.vaultRandomID,
|
||||||
5
|
5,
|
||||||
|
false
|
||||||
);
|
);
|
||||||
new Notice(t("settings_syncplans_notice"));
|
new Notice(t("settings_syncplans_notice"));
|
||||||
},
|
},
|
||||||
@@ -783,7 +802,8 @@ export default class RemotelySavePlugin extends Plugin {
|
|||||||
this.db,
|
this.db,
|
||||||
this.app.vault,
|
this.app.vault,
|
||||||
this.vaultRandomID,
|
this.vaultRandomID,
|
||||||
-1
|
-1,
|
||||||
|
false
|
||||||
);
|
);
|
||||||
new Notice(t("settings_syncplans_notice"));
|
new Notice(t("settings_syncplans_notice"));
|
||||||
},
|
},
|
||||||
@@ -854,6 +874,9 @@ export default class RemotelySavePlugin extends Plugin {
|
|||||||
if (this.settings.onedrive.remoteBaseDir === undefined) {
|
if (this.settings.onedrive.remoteBaseDir === undefined) {
|
||||||
this.settings.onedrive.remoteBaseDir = "";
|
this.settings.onedrive.remoteBaseDir = "";
|
||||||
}
|
}
|
||||||
|
if (this.settings.onedrive.emptyFile === undefined) {
|
||||||
|
this.settings.onedrive.emptyFile = "skip";
|
||||||
|
}
|
||||||
if (this.settings.webdav.manualRecursive === undefined) {
|
if (this.settings.webdav.manualRecursive === undefined) {
|
||||||
this.settings.webdav.manualRecursive = true;
|
this.settings.webdav.manualRecursive = true;
|
||||||
}
|
}
|
||||||
|
|||||||
+32
-1
@@ -345,7 +345,7 @@ export const unixTimeToStr = (x: number | undefined | null) => {
|
|||||||
if (x === undefined || x === null || Number.isNaN(x)) {
|
if (x === undefined || x === null || Number.isNaN(x)) {
|
||||||
return undefined;
|
return undefined;
|
||||||
}
|
}
|
||||||
return window.moment(x).format() as string;
|
return new Date(x).toISOString();
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -679,3 +679,34 @@ export const roughSizeOfObject = (object: any) => {
|
|||||||
}
|
}
|
||||||
return bytes;
|
return bytes;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export const splitFileSizeToChunkRanges = (
|
||||||
|
totalSize: number,
|
||||||
|
chunkSize: number
|
||||||
|
) => {
|
||||||
|
if (totalSize < 0) {
|
||||||
|
throw Error(`totalSize should not be negative`);
|
||||||
|
}
|
||||||
|
if (chunkSize <= 0) {
|
||||||
|
throw Error(`chunkSize should not be negative or zero`);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (totalSize === 0) {
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
if (totalSize <= chunkSize) {
|
||||||
|
return [{ start: 0, end: totalSize - 1 }];
|
||||||
|
}
|
||||||
|
|
||||||
|
const res: { start: number; end: number }[] = [];
|
||||||
|
|
||||||
|
const blocksCount = Math.ceil((totalSize * 1.0) / chunkSize);
|
||||||
|
|
||||||
|
for (let i = 0; i < blocksCount; ++i) {
|
||||||
|
res.push({
|
||||||
|
start: i * chunkSize,
|
||||||
|
end: Math.min((i + 1) * chunkSize - 1, totalSize - 1),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
return res;
|
||||||
|
};
|
||||||
|
|||||||
+42
-11
@@ -1418,6 +1418,20 @@ export class RemotelySaveSettingTab extends PluginSettingTab {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
new Setting(onedriveDiv)
|
||||||
|
.setName(t("settings_onedrive_emptyfile"))
|
||||||
|
.setDesc(t("settings_onedrive_emptyfile_desc"))
|
||||||
|
.addDropdown(async (dropdown) => {
|
||||||
|
dropdown
|
||||||
|
.addOption("skip", t("settings_onedrive_emptyfile_skip"))
|
||||||
|
.addOption("error", t("settings_onedrive_emptyfile_error"))
|
||||||
|
.setValue(this.plugin.settings.onedrive.emptyFile)
|
||||||
|
.onChange(async (val) => {
|
||||||
|
this.plugin.settings.onedrive.emptyFile = val as any;
|
||||||
|
await this.plugin.saveSettings();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
new Setting(onedriveDiv)
|
new Setting(onedriveDiv)
|
||||||
.setName(t("settings_checkonnectivity"))
|
.setName(t("settings_checkonnectivity"))
|
||||||
.setDesc(t("settings_checkonnectivity_desc"))
|
.setDesc(t("settings_checkonnectivity_desc"))
|
||||||
@@ -1955,7 +1969,7 @@ export class RemotelySaveSettingTab extends PluginSettingTab {
|
|||||||
.addDropdown((dropdown) => {
|
.addDropdown((dropdown) => {
|
||||||
dropdown.addOption("-1", t("settings_skiplargefiles_notset"));
|
dropdown.addOption("-1", t("settings_skiplargefiles_notset"));
|
||||||
|
|
||||||
const mbs = [1, 5, 10, 50, 100, 500, 1000];
|
const mbs = [1, 5, 10, 20, 50, 100, 200, 500, 1000];
|
||||||
for (const mb of mbs) {
|
for (const mb of mbs) {
|
||||||
dropdown.addOption(`${mb * 1000 * 1000}`, `${mb} MB`);
|
dropdown.addOption(`${mb * 1000 * 1000}`, `${mb} MB`);
|
||||||
}
|
}
|
||||||
@@ -2247,13 +2261,12 @@ export class RemotelySaveSettingTab extends PluginSettingTab {
|
|||||||
importExportDiv.createEl("h2", {
|
importExportDiv.createEl("h2", {
|
||||||
text: t("settings_importexport"),
|
text: t("settings_importexport"),
|
||||||
});
|
});
|
||||||
if (Platform.isMobile) {
|
|
||||||
importExportDiv.addClass("setting-need-wrapping-mobile");
|
|
||||||
}
|
|
||||||
|
|
||||||
new Setting(importExportDiv)
|
const importExportDivSetting1 = new Setting(importExportDiv)
|
||||||
.setName(t("settings_export"))
|
.setName(t("settings_export"))
|
||||||
.setDesc(t("settings_export_desc"))
|
.setDesc(t("settings_export_desc"));
|
||||||
|
importExportDivSetting1.settingEl.addClass("setting-need-wrapping");
|
||||||
|
importExportDivSetting1
|
||||||
.addButton(async (button) => {
|
.addButton(async (button) => {
|
||||||
button.setButtonText(t("settings_export_all_but_oauth2_button"));
|
button.setButtonText(t("settings_export_all_but_oauth2_button"));
|
||||||
button.onClick(async () => {
|
button.onClick(async () => {
|
||||||
@@ -2399,9 +2412,24 @@ export class RemotelySaveSettingTab extends PluginSettingTab {
|
|||||||
.setName(t("settings_viewconsolelog"))
|
.setName(t("settings_viewconsolelog"))
|
||||||
.setDesc(stringToFragment(t("settings_viewconsolelog_desc")));
|
.setDesc(stringToFragment(t("settings_viewconsolelog_desc")));
|
||||||
|
|
||||||
new Setting(debugDiv)
|
const debugDivExportSyncPlans = new Setting(debugDiv)
|
||||||
.setName(t("settings_syncplans"))
|
.setName(t("settings_syncplans"))
|
||||||
.setDesc(t("settings_syncplans_desc"))
|
.setDesc(t("settings_syncplans_desc"));
|
||||||
|
debugDivExportSyncPlans.settingEl.addClass("setting-need-wrapping");
|
||||||
|
debugDivExportSyncPlans
|
||||||
|
.addButton(async (button) => {
|
||||||
|
button.setButtonText(t("settings_syncplans_button_1_only_change"));
|
||||||
|
button.onClick(async () => {
|
||||||
|
await exportVaultSyncPlansToFiles(
|
||||||
|
this.plugin.db,
|
||||||
|
this.app.vault,
|
||||||
|
this.plugin.vaultRandomID,
|
||||||
|
1,
|
||||||
|
true
|
||||||
|
);
|
||||||
|
new Notice(t("settings_syncplans_notice"));
|
||||||
|
});
|
||||||
|
})
|
||||||
.addButton(async (button) => {
|
.addButton(async (button) => {
|
||||||
button.setButtonText(t("settings_syncplans_button_1"));
|
button.setButtonText(t("settings_syncplans_button_1"));
|
||||||
button.onClick(async () => {
|
button.onClick(async () => {
|
||||||
@@ -2409,7 +2437,8 @@ export class RemotelySaveSettingTab extends PluginSettingTab {
|
|||||||
this.plugin.db,
|
this.plugin.db,
|
||||||
this.app.vault,
|
this.app.vault,
|
||||||
this.plugin.vaultRandomID,
|
this.plugin.vaultRandomID,
|
||||||
1
|
1,
|
||||||
|
false
|
||||||
);
|
);
|
||||||
new Notice(t("settings_syncplans_notice"));
|
new Notice(t("settings_syncplans_notice"));
|
||||||
});
|
});
|
||||||
@@ -2421,7 +2450,8 @@ export class RemotelySaveSettingTab extends PluginSettingTab {
|
|||||||
this.plugin.db,
|
this.plugin.db,
|
||||||
this.app.vault,
|
this.app.vault,
|
||||||
this.plugin.vaultRandomID,
|
this.plugin.vaultRandomID,
|
||||||
5
|
5,
|
||||||
|
false
|
||||||
);
|
);
|
||||||
new Notice(t("settings_syncplans_notice"));
|
new Notice(t("settings_syncplans_notice"));
|
||||||
});
|
});
|
||||||
@@ -2433,7 +2463,8 @@ export class RemotelySaveSettingTab extends PluginSettingTab {
|
|||||||
this.plugin.db,
|
this.plugin.db,
|
||||||
this.app.vault,
|
this.app.vault,
|
||||||
this.plugin.vaultRandomID,
|
this.plugin.vaultRandomID,
|
||||||
-1
|
-1,
|
||||||
|
false
|
||||||
);
|
);
|
||||||
new Notice(t("settings_syncplans_notice"));
|
new Notice(t("settings_syncplans_notice"));
|
||||||
});
|
});
|
||||||
|
|||||||
+117
-57
@@ -155,13 +155,13 @@ const ensembleMixedEnties = async (
|
|||||||
fsEncrypt: FakeFsEncrypt,
|
fsEncrypt: FakeFsEncrypt,
|
||||||
serviceType: SUPPORTED_SERVICES_TYPE,
|
serviceType: SUPPORTED_SERVICES_TYPE,
|
||||||
|
|
||||||
profiler: Profiler
|
profiler: Profiler | undefined
|
||||||
): Promise<SyncPlanType> => {
|
): Promise<SyncPlanType> => {
|
||||||
profiler.addIndent();
|
profiler?.addIndent();
|
||||||
profiler.insert("ensembleMixedEnties: enter");
|
profiler?.insert("ensembleMixedEnties: enter");
|
||||||
profiler.insertSize("sizeof localEntityList", localEntityList);
|
profiler?.insertSize("sizeof localEntityList", localEntityList);
|
||||||
profiler.insertSize("sizeof prevSyncEntityList", prevSyncEntityList);
|
profiler?.insertSize("sizeof prevSyncEntityList", prevSyncEntityList);
|
||||||
profiler.insertSize("sizeof remoteEntityList", remoteEntityList);
|
profiler?.insertSize("sizeof remoteEntityList", remoteEntityList);
|
||||||
|
|
||||||
const finalMappings: SyncPlanType = {};
|
const finalMappings: SyncPlanType = {};
|
||||||
|
|
||||||
@@ -190,8 +190,8 @@ const ensembleMixedEnties = async (
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
profiler.insert("ensembleMixedEnties: finish remote");
|
profiler?.insert("ensembleMixedEnties: finish remote");
|
||||||
profiler.insertSize("sizeof finalMappings", finalMappings);
|
profiler?.insertSize("sizeof finalMappings", finalMappings);
|
||||||
|
|
||||||
if (Object.keys(finalMappings).length === 0 || localEntityList.length === 0) {
|
if (Object.keys(finalMappings).length === 0 || localEntityList.length === 0) {
|
||||||
// Special checking:
|
// Special checking:
|
||||||
@@ -231,8 +231,8 @@ const ensembleMixedEnties = async (
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
profiler.insert("ensembleMixedEnties: finish prevSync");
|
profiler?.insert("ensembleMixedEnties: finish prevSync");
|
||||||
profiler.insertSize("sizeof finalMappings", finalMappings);
|
profiler?.insertSize("sizeof finalMappings", finalMappings);
|
||||||
|
|
||||||
// local has to be last
|
// local has to be last
|
||||||
// because we want to get keyEnc based on the remote
|
// because we want to get keyEnc based on the remote
|
||||||
@@ -265,14 +265,14 @@ const ensembleMixedEnties = async (
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
profiler.insert("ensembleMixedEnties: finish local");
|
profiler?.insert("ensembleMixedEnties: finish local");
|
||||||
profiler.insertSize("sizeof finalMappings", finalMappings);
|
profiler?.insertSize("sizeof finalMappings", finalMappings);
|
||||||
|
|
||||||
// console.debug("in the end of ensembleMixedEnties, finalMappings is:");
|
// console.debug("in the end of ensembleMixedEnties, finalMappings is:");
|
||||||
// console.debug(finalMappings);
|
// console.debug(finalMappings);
|
||||||
|
|
||||||
profiler.insert("ensembleMixedEnties: exit");
|
profiler?.insert("ensembleMixedEnties: exit");
|
||||||
profiler.removeIndent();
|
profiler?.removeIndent();
|
||||||
return finalMappings;
|
return finalMappings;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -287,24 +287,24 @@ const getSyncPlanInplace = async (
|
|||||||
skipSizeLargerThan: number,
|
skipSizeLargerThan: number,
|
||||||
conflictAction: ConflictActionType,
|
conflictAction: ConflictActionType,
|
||||||
syncDirection: SyncDirectionType,
|
syncDirection: SyncDirectionType,
|
||||||
profiler: Profiler,
|
profiler: Profiler | undefined,
|
||||||
settings: RemotelySavePluginSettings,
|
settings: RemotelySavePluginSettings,
|
||||||
triggerSource: SyncTriggerSourceType
|
triggerSource: SyncTriggerSourceType
|
||||||
) => {
|
) => {
|
||||||
profiler.addIndent();
|
profiler?.addIndent();
|
||||||
profiler.insert("getSyncPlanInplace: enter");
|
profiler?.insert("getSyncPlanInplace: enter");
|
||||||
// from long(deep) to short(shadow)
|
// from long(deep) to short(shadow)
|
||||||
const sortedKeys = Object.keys(mixedEntityMappings).sort(
|
const sortedKeys = Object.keys(mixedEntityMappings).sort(
|
||||||
(k1, k2) => k2.length - k1.length
|
(k1, k2) => k2.length - k1.length
|
||||||
);
|
);
|
||||||
profiler.insert("getSyncPlanInplace: finish sorting");
|
profiler?.insert("getSyncPlanInplace: finish sorting");
|
||||||
profiler.insertSize("sizeof sortedKeys", sortedKeys);
|
profiler?.insertSize("sizeof sortedKeys", sortedKeys);
|
||||||
|
|
||||||
const keptFolder = new Set<string>();
|
const keptFolder = new Set<string>();
|
||||||
|
|
||||||
for (let i = 0; i < sortedKeys.length; ++i) {
|
for (let i = 0; i < sortedKeys.length; ++i) {
|
||||||
if (i % 100 === 0) {
|
if (i % 100 === 0) {
|
||||||
profiler.insertSize(
|
profiler?.insertSize(
|
||||||
`sizeof sortedKeys in the beginning of i=${i}`,
|
`sizeof sortedKeys in the beginning of i=${i}`,
|
||||||
mixedEntityMappings
|
mixedEntityMappings
|
||||||
);
|
);
|
||||||
@@ -326,69 +326,83 @@ const getSyncPlanInplace = async (
|
|||||||
if (local !== undefined && remote !== undefined) {
|
if (local !== undefined && remote !== undefined) {
|
||||||
mixedEntry.decisionBranch = 101;
|
mixedEntry.decisionBranch = 101;
|
||||||
mixedEntry.decision = "folder_existed_both_then_do_nothing";
|
mixedEntry.decision = "folder_existed_both_then_do_nothing";
|
||||||
|
mixedEntry.change = false;
|
||||||
} else if (local !== undefined && remote === undefined) {
|
} else if (local !== undefined && remote === undefined) {
|
||||||
if (syncDirection === "incremental_pull_only") {
|
if (syncDirection === "incremental_pull_only") {
|
||||||
mixedEntry.decisionBranch = 107;
|
mixedEntry.decisionBranch = 107;
|
||||||
mixedEntry.decision = "folder_to_skip";
|
mixedEntry.decision = "folder_to_skip";
|
||||||
|
mixedEntry.change = false;
|
||||||
} else {
|
} else {
|
||||||
mixedEntry.decisionBranch = 102;
|
mixedEntry.decisionBranch = 102;
|
||||||
mixedEntry.decision =
|
mixedEntry.decision =
|
||||||
"folder_existed_local_then_also_create_remote";
|
"folder_existed_local_then_also_create_remote";
|
||||||
|
mixedEntry.change = true;
|
||||||
}
|
}
|
||||||
} else if (local === undefined && remote !== undefined) {
|
} else if (local === undefined && remote !== undefined) {
|
||||||
if (syncDirection === "incremental_push_only") {
|
if (syncDirection === "incremental_push_only") {
|
||||||
mixedEntry.decisionBranch = 108;
|
mixedEntry.decisionBranch = 108;
|
||||||
mixedEntry.decision = "folder_to_skip";
|
mixedEntry.decision = "folder_to_skip";
|
||||||
|
mixedEntry.change = false;
|
||||||
} else {
|
} else {
|
||||||
mixedEntry.decisionBranch = 103;
|
mixedEntry.decisionBranch = 103;
|
||||||
mixedEntry.decision =
|
mixedEntry.decision =
|
||||||
"folder_existed_remote_then_also_create_local";
|
"folder_existed_remote_then_also_create_local";
|
||||||
|
mixedEntry.change = true;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// why?? how??
|
// why?? how??
|
||||||
mixedEntry.decisionBranch = 104;
|
mixedEntry.decisionBranch = 104;
|
||||||
mixedEntry.decision = "folder_to_be_created";
|
mixedEntry.decision = "folder_to_be_created";
|
||||||
|
mixedEntry.change = true;
|
||||||
}
|
}
|
||||||
keptFolder.delete(key); // no need to save it in the Set later
|
keptFolder.delete(key); // no need to save it in the Set later
|
||||||
} else {
|
} else {
|
||||||
if (howToCleanEmptyFolder === "skip") {
|
if (howToCleanEmptyFolder === "skip") {
|
||||||
mixedEntry.decisionBranch = 105;
|
mixedEntry.decisionBranch = 105;
|
||||||
mixedEntry.decision = "folder_to_skip";
|
mixedEntry.decision = "folder_to_skip";
|
||||||
|
mixedEntry.change = false;
|
||||||
} else if (howToCleanEmptyFolder === "clean_both") {
|
} else if (howToCleanEmptyFolder === "clean_both") {
|
||||||
if (local !== undefined && remote !== undefined) {
|
if (local !== undefined && remote !== undefined) {
|
||||||
if (syncDirection === "bidirectional") {
|
if (syncDirection === "bidirectional") {
|
||||||
mixedEntry.decisionBranch = 106;
|
mixedEntry.decisionBranch = 106;
|
||||||
mixedEntry.decision = "folder_to_be_deleted_on_both";
|
mixedEntry.decision = "folder_to_be_deleted_on_both";
|
||||||
|
mixedEntry.change = true;
|
||||||
} else {
|
} else {
|
||||||
// right now it does nothing because of "incremental"
|
// right now it does nothing because of "incremental"
|
||||||
// TODO: should we delete??
|
// TODO: should we delete??
|
||||||
mixedEntry.decisionBranch = 109;
|
mixedEntry.decisionBranch = 109;
|
||||||
mixedEntry.decision = "folder_to_skip";
|
mixedEntry.decision = "folder_to_skip";
|
||||||
|
mixedEntry.change = false;
|
||||||
}
|
}
|
||||||
} else if (local !== undefined && remote === undefined) {
|
} else if (local !== undefined && remote === undefined) {
|
||||||
if (syncDirection === "bidirectional") {
|
if (syncDirection === "bidirectional") {
|
||||||
mixedEntry.decisionBranch = 110;
|
mixedEntry.decisionBranch = 110;
|
||||||
mixedEntry.decision = "folder_to_be_deleted_on_local";
|
mixedEntry.decision = "folder_to_be_deleted_on_local";
|
||||||
|
mixedEntry.change = true;
|
||||||
} else {
|
} else {
|
||||||
// right now it does nothing because of "incremental"
|
// right now it does nothing because of "incremental"
|
||||||
// TODO: should we delete??
|
// TODO: should we delete??
|
||||||
mixedEntry.decisionBranch = 111;
|
mixedEntry.decisionBranch = 111;
|
||||||
mixedEntry.decision = "folder_to_skip";
|
mixedEntry.decision = "folder_to_skip";
|
||||||
|
mixedEntry.change = false;
|
||||||
}
|
}
|
||||||
} else if (local === undefined && remote !== undefined) {
|
} else if (local === undefined && remote !== undefined) {
|
||||||
if (syncDirection === "bidirectional") {
|
if (syncDirection === "bidirectional") {
|
||||||
mixedEntry.decisionBranch = 112;
|
mixedEntry.decisionBranch = 112;
|
||||||
mixedEntry.decision = "folder_to_be_deleted_on_remote";
|
mixedEntry.decision = "folder_to_be_deleted_on_remote";
|
||||||
|
mixedEntry.change = true;
|
||||||
} else {
|
} else {
|
||||||
// right now it does nothing because of "incremental"
|
// right now it does nothing because of "incremental"
|
||||||
// TODO: should we delete??
|
// TODO: should we delete??
|
||||||
mixedEntry.decisionBranch = 113;
|
mixedEntry.decisionBranch = 113;
|
||||||
mixedEntry.decision = "folder_to_skip";
|
mixedEntry.decision = "folder_to_skip";
|
||||||
|
mixedEntry.change = false;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// no folder to delete, do nothing
|
// no folder to delete, do nothing
|
||||||
mixedEntry.decisionBranch = 114;
|
mixedEntry.decisionBranch = 114;
|
||||||
mixedEntry.decision = "folder_to_skip";
|
mixedEntry.decision = "folder_to_skip";
|
||||||
|
mixedEntry.change = false;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
throw Error(
|
throw Error(
|
||||||
@@ -403,6 +417,7 @@ const getSyncPlanInplace = async (
|
|||||||
// both deleted, only in history
|
// both deleted, only in history
|
||||||
mixedEntry.decisionBranch = 1;
|
mixedEntry.decisionBranch = 1;
|
||||||
mixedEntry.decision = "only_history";
|
mixedEntry.decision = "only_history";
|
||||||
|
mixedEntry.change = false;
|
||||||
} else if (local !== undefined && remote !== undefined) {
|
} else if (local !== undefined && remote !== undefined) {
|
||||||
if (
|
if (
|
||||||
(local.mtimeCli === remote.mtimeCli ||
|
(local.mtimeCli === remote.mtimeCli ||
|
||||||
@@ -412,6 +427,7 @@ const getSyncPlanInplace = async (
|
|||||||
// completely equal / identical
|
// completely equal / identical
|
||||||
mixedEntry.decisionBranch = 2;
|
mixedEntry.decisionBranch = 2;
|
||||||
mixedEntry.decision = "equal";
|
mixedEntry.decision = "equal";
|
||||||
|
mixedEntry.change = false;
|
||||||
keptFolder.add(getParentFolder(key));
|
keptFolder.add(getParentFolder(key));
|
||||||
} else {
|
} else {
|
||||||
// Both exists, but modified or conflict
|
// Both exists, but modified or conflict
|
||||||
@@ -434,10 +450,12 @@ const getSyncPlanInplace = async (
|
|||||||
if (syncDirection === "incremental_push_only") {
|
if (syncDirection === "incremental_push_only") {
|
||||||
mixedEntry.decisionBranch = 26;
|
mixedEntry.decisionBranch = 26;
|
||||||
mixedEntry.decision = "conflict_modified_then_keep_local";
|
mixedEntry.decision = "conflict_modified_then_keep_local";
|
||||||
|
mixedEntry.change = true;
|
||||||
keptFolder.add(getParentFolder(key));
|
keptFolder.add(getParentFolder(key));
|
||||||
} else {
|
} else {
|
||||||
mixedEntry.decisionBranch = 9;
|
mixedEntry.decisionBranch = 9;
|
||||||
mixedEntry.decision = "remote_is_modified_then_pull";
|
mixedEntry.decision = "remote_is_modified_then_pull";
|
||||||
|
mixedEntry.change = true;
|
||||||
keptFolder.add(getParentFolder(key));
|
keptFolder.add(getParentFolder(key));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@@ -456,10 +474,12 @@ const getSyncPlanInplace = async (
|
|||||||
if (syncDirection === "incremental_pull_only") {
|
if (syncDirection === "incremental_pull_only") {
|
||||||
mixedEntry.decisionBranch = 27;
|
mixedEntry.decisionBranch = 27;
|
||||||
mixedEntry.decision = "conflict_modified_then_keep_remote";
|
mixedEntry.decision = "conflict_modified_then_keep_remote";
|
||||||
|
mixedEntry.change = true;
|
||||||
keptFolder.add(getParentFolder(key));
|
keptFolder.add(getParentFolder(key));
|
||||||
} else {
|
} else {
|
||||||
mixedEntry.decisionBranch = 10;
|
mixedEntry.decisionBranch = 10;
|
||||||
mixedEntry.decision = "local_is_modified_then_push";
|
mixedEntry.decision = "local_is_modified_then_push";
|
||||||
|
mixedEntry.change = true;
|
||||||
keptFolder.add(getParentFolder(key));
|
keptFolder.add(getParentFolder(key));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@@ -481,34 +501,41 @@ const getSyncPlanInplace = async (
|
|||||||
) {
|
) {
|
||||||
mixedEntry.decisionBranch = 11;
|
mixedEntry.decisionBranch = 11;
|
||||||
mixedEntry.decision = "conflict_created_then_keep_local";
|
mixedEntry.decision = "conflict_created_then_keep_local";
|
||||||
|
mixedEntry.change = true;
|
||||||
keptFolder.add(getParentFolder(key));
|
keptFolder.add(getParentFolder(key));
|
||||||
} else {
|
} else {
|
||||||
mixedEntry.decisionBranch = 12;
|
mixedEntry.decisionBranch = 12;
|
||||||
mixedEntry.decision = "conflict_created_then_keep_remote";
|
mixedEntry.decision = "conflict_created_then_keep_remote";
|
||||||
|
mixedEntry.change = true;
|
||||||
keptFolder.add(getParentFolder(key));
|
keptFolder.add(getParentFolder(key));
|
||||||
}
|
}
|
||||||
} else if (conflictAction === "keep_larger") {
|
} else if (conflictAction === "keep_larger") {
|
||||||
if (local.sizeEnc! >= remote.sizeEnc!) {
|
if (local.sizeEnc! >= remote.sizeEnc!) {
|
||||||
mixedEntry.decisionBranch = 13;
|
mixedEntry.decisionBranch = 13;
|
||||||
mixedEntry.decision = "conflict_created_then_keep_local";
|
mixedEntry.decision = "conflict_created_then_keep_local";
|
||||||
|
mixedEntry.change = true;
|
||||||
keptFolder.add(getParentFolder(key));
|
keptFolder.add(getParentFolder(key));
|
||||||
} else {
|
} else {
|
||||||
mixedEntry.decisionBranch = 14;
|
mixedEntry.decisionBranch = 14;
|
||||||
mixedEntry.decision = "conflict_created_then_keep_remote";
|
mixedEntry.decision = "conflict_created_then_keep_remote";
|
||||||
|
mixedEntry.change = true;
|
||||||
keptFolder.add(getParentFolder(key));
|
keptFolder.add(getParentFolder(key));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
mixedEntry.decisionBranch = 15;
|
mixedEntry.decisionBranch = 15;
|
||||||
mixedEntry.decision = "conflict_created_then_keep_both";
|
mixedEntry.decision = "conflict_created_then_keep_both";
|
||||||
|
mixedEntry.change = true;
|
||||||
keptFolder.add(getParentFolder(key));
|
keptFolder.add(getParentFolder(key));
|
||||||
}
|
}
|
||||||
} else if (syncDirection === "incremental_pull_only") {
|
} else if (syncDirection === "incremental_pull_only") {
|
||||||
mixedEntry.decisionBranch = 22;
|
mixedEntry.decisionBranch = 22;
|
||||||
mixedEntry.decision = "conflict_created_then_keep_remote";
|
mixedEntry.decision = "conflict_created_then_keep_remote";
|
||||||
|
mixedEntry.change = true;
|
||||||
keptFolder.add(getParentFolder(key));
|
keptFolder.add(getParentFolder(key));
|
||||||
} else if (syncDirection === "incremental_push_only") {
|
} else if (syncDirection === "incremental_push_only") {
|
||||||
mixedEntry.decisionBranch = 23;
|
mixedEntry.decisionBranch = 23;
|
||||||
mixedEntry.decision = "conflict_created_then_keep_local";
|
mixedEntry.decision = "conflict_created_then_keep_local";
|
||||||
|
mixedEntry.change = true;
|
||||||
keptFolder.add(getParentFolder(key));
|
keptFolder.add(getParentFolder(key));
|
||||||
} else {
|
} else {
|
||||||
throw Error(
|
throw Error(
|
||||||
@@ -525,34 +552,41 @@ const getSyncPlanInplace = async (
|
|||||||
) {
|
) {
|
||||||
mixedEntry.decisionBranch = 16;
|
mixedEntry.decisionBranch = 16;
|
||||||
mixedEntry.decision = "conflict_modified_then_keep_local";
|
mixedEntry.decision = "conflict_modified_then_keep_local";
|
||||||
|
mixedEntry.change = true;
|
||||||
keptFolder.add(getParentFolder(key));
|
keptFolder.add(getParentFolder(key));
|
||||||
} else {
|
} else {
|
||||||
mixedEntry.decisionBranch = 17;
|
mixedEntry.decisionBranch = 17;
|
||||||
mixedEntry.decision = "conflict_modified_then_keep_remote";
|
mixedEntry.decision = "conflict_modified_then_keep_remote";
|
||||||
|
mixedEntry.change = true;
|
||||||
keptFolder.add(getParentFolder(key));
|
keptFolder.add(getParentFolder(key));
|
||||||
}
|
}
|
||||||
} else if (conflictAction === "keep_larger") {
|
} else if (conflictAction === "keep_larger") {
|
||||||
if (local.sizeEnc! >= remote.sizeEnc!) {
|
if (local.sizeEnc! >= remote.sizeEnc!) {
|
||||||
mixedEntry.decisionBranch = 18;
|
mixedEntry.decisionBranch = 18;
|
||||||
mixedEntry.decision = "conflict_modified_then_keep_local";
|
mixedEntry.decision = "conflict_modified_then_keep_local";
|
||||||
|
mixedEntry.change = true;
|
||||||
keptFolder.add(getParentFolder(key));
|
keptFolder.add(getParentFolder(key));
|
||||||
} else {
|
} else {
|
||||||
mixedEntry.decisionBranch = 19;
|
mixedEntry.decisionBranch = 19;
|
||||||
mixedEntry.decision = "conflict_modified_then_keep_remote";
|
mixedEntry.decision = "conflict_modified_then_keep_remote";
|
||||||
|
mixedEntry.change = true;
|
||||||
keptFolder.add(getParentFolder(key));
|
keptFolder.add(getParentFolder(key));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
mixedEntry.decisionBranch = 20;
|
mixedEntry.decisionBranch = 20;
|
||||||
mixedEntry.decision = "conflict_modified_then_keep_both";
|
mixedEntry.decision = "conflict_modified_then_keep_both";
|
||||||
|
mixedEntry.change = true;
|
||||||
keptFolder.add(getParentFolder(key));
|
keptFolder.add(getParentFolder(key));
|
||||||
}
|
}
|
||||||
} else if (syncDirection === "incremental_pull_only") {
|
} else if (syncDirection === "incremental_pull_only") {
|
||||||
mixedEntry.decisionBranch = 24;
|
mixedEntry.decisionBranch = 24;
|
||||||
mixedEntry.decision = "conflict_modified_then_keep_remote";
|
mixedEntry.decision = "conflict_modified_then_keep_remote";
|
||||||
|
mixedEntry.change = true;
|
||||||
keptFolder.add(getParentFolder(key));
|
keptFolder.add(getParentFolder(key));
|
||||||
} else if (syncDirection === "incremental_push_only") {
|
} else if (syncDirection === "incremental_push_only") {
|
||||||
mixedEntry.decisionBranch = 25;
|
mixedEntry.decisionBranch = 25;
|
||||||
mixedEntry.decision = "conflict_modified_then_keep_local";
|
mixedEntry.decision = "conflict_modified_then_keep_local";
|
||||||
|
mixedEntry.change = true;
|
||||||
keptFolder.add(getParentFolder(key));
|
keptFolder.add(getParentFolder(key));
|
||||||
} else {
|
} else {
|
||||||
throw Error(
|
throw Error(
|
||||||
@@ -566,6 +600,7 @@ const getSyncPlanInplace = async (
|
|||||||
// The result should be equal!!!
|
// The result should be equal!!!
|
||||||
mixedEntry.decisionBranch = 21;
|
mixedEntry.decisionBranch = 21;
|
||||||
mixedEntry.decision = "equal";
|
mixedEntry.decision = "equal";
|
||||||
|
mixedEntry.change = false;
|
||||||
keptFolder.add(getParentFolder(key));
|
keptFolder.add(getParentFolder(key));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -580,15 +615,18 @@ const getSyncPlanInplace = async (
|
|||||||
if (syncDirection === "incremental_push_only") {
|
if (syncDirection === "incremental_push_only") {
|
||||||
mixedEntry.decisionBranch = 28;
|
mixedEntry.decisionBranch = 28;
|
||||||
mixedEntry.decision = "conflict_created_then_do_nothing";
|
mixedEntry.decision = "conflict_created_then_do_nothing";
|
||||||
|
mixedEntry.change = false;
|
||||||
keptFolder.add(getParentFolder(key));
|
keptFolder.add(getParentFolder(key));
|
||||||
} else {
|
} else {
|
||||||
mixedEntry.decisionBranch = 3;
|
mixedEntry.decisionBranch = 3;
|
||||||
mixedEntry.decision = "remote_is_created_then_pull";
|
mixedEntry.decision = "remote_is_created_then_pull";
|
||||||
|
mixedEntry.change = true;
|
||||||
keptFolder.add(getParentFolder(key));
|
keptFolder.add(getParentFolder(key));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
mixedEntry.decisionBranch = 36;
|
mixedEntry.decisionBranch = 36;
|
||||||
mixedEntry.decision = "remote_is_created_too_large_then_do_nothing";
|
mixedEntry.decision = "remote_is_created_too_large_then_do_nothing";
|
||||||
|
mixedEntry.change = false;
|
||||||
keptFolder.add(getParentFolder(key));
|
keptFolder.add(getParentFolder(key));
|
||||||
}
|
}
|
||||||
} else if (
|
} else if (
|
||||||
@@ -600,14 +638,17 @@ const getSyncPlanInplace = async (
|
|||||||
if (syncDirection === "incremental_push_only") {
|
if (syncDirection === "incremental_push_only") {
|
||||||
mixedEntry.decisionBranch = 29;
|
mixedEntry.decisionBranch = 29;
|
||||||
mixedEntry.decision = "conflict_created_then_do_nothing";
|
mixedEntry.decision = "conflict_created_then_do_nothing";
|
||||||
|
mixedEntry.change = false;
|
||||||
keptFolder.add(getParentFolder(key));
|
keptFolder.add(getParentFolder(key));
|
||||||
} else if (syncDirection === "incremental_pull_only") {
|
} else if (syncDirection === "incremental_pull_only") {
|
||||||
mixedEntry.decisionBranch = 35;
|
mixedEntry.decisionBranch = 35;
|
||||||
mixedEntry.decision = "conflict_created_then_keep_remote";
|
mixedEntry.decision = "conflict_created_then_keep_remote";
|
||||||
|
mixedEntry.change = true;
|
||||||
keptFolder.add(getParentFolder(key));
|
keptFolder.add(getParentFolder(key));
|
||||||
} else {
|
} else {
|
||||||
mixedEntry.decisionBranch = 4;
|
mixedEntry.decisionBranch = 4;
|
||||||
mixedEntry.decision = "local_is_deleted_thus_also_delete_remote";
|
mixedEntry.decision = "local_is_deleted_thus_also_delete_remote";
|
||||||
|
mixedEntry.change = true;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// if B is in the previous list and MODIFIED, B has been deleted by A but modified by B
|
// if B is in the previous list and MODIFIED, B has been deleted by A but modified by B
|
||||||
@@ -618,10 +659,12 @@ const getSyncPlanInplace = async (
|
|||||||
if (syncDirection === "incremental_push_only") {
|
if (syncDirection === "incremental_push_only") {
|
||||||
mixedEntry.decisionBranch = 30;
|
mixedEntry.decisionBranch = 30;
|
||||||
mixedEntry.decision = "conflict_created_then_do_nothing";
|
mixedEntry.decision = "conflict_created_then_do_nothing";
|
||||||
|
mixedEntry.change = false;
|
||||||
keptFolder.add(getParentFolder(key));
|
keptFolder.add(getParentFolder(key));
|
||||||
} else {
|
} else {
|
||||||
mixedEntry.decisionBranch = 5;
|
mixedEntry.decisionBranch = 5;
|
||||||
mixedEntry.decision = "remote_is_modified_then_pull";
|
mixedEntry.decision = "remote_is_modified_then_pull";
|
||||||
|
mixedEntry.change = true;
|
||||||
keptFolder.add(getParentFolder(key));
|
keptFolder.add(getParentFolder(key));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@@ -641,15 +684,18 @@ const getSyncPlanInplace = async (
|
|||||||
if (syncDirection === "incremental_pull_only") {
|
if (syncDirection === "incremental_pull_only") {
|
||||||
mixedEntry.decisionBranch = 31;
|
mixedEntry.decisionBranch = 31;
|
||||||
mixedEntry.decision = "conflict_created_then_do_nothing";
|
mixedEntry.decision = "conflict_created_then_do_nothing";
|
||||||
|
mixedEntry.change = false;
|
||||||
keptFolder.add(getParentFolder(key));
|
keptFolder.add(getParentFolder(key));
|
||||||
} else {
|
} else {
|
||||||
mixedEntry.decisionBranch = 6;
|
mixedEntry.decisionBranch = 6;
|
||||||
mixedEntry.decision = "local_is_created_then_push";
|
mixedEntry.decision = "local_is_created_then_push";
|
||||||
|
mixedEntry.change = true;
|
||||||
keptFolder.add(getParentFolder(key));
|
keptFolder.add(getParentFolder(key));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
mixedEntry.decisionBranch = 37;
|
mixedEntry.decisionBranch = 37;
|
||||||
mixedEntry.decision = "local_is_created_too_large_then_do_nothing";
|
mixedEntry.decision = "local_is_created_too_large_then_do_nothing";
|
||||||
|
mixedEntry.change = false;
|
||||||
keptFolder.add(getParentFolder(key));
|
keptFolder.add(getParentFolder(key));
|
||||||
}
|
}
|
||||||
} else if (
|
} else if (
|
||||||
@@ -661,12 +707,15 @@ const getSyncPlanInplace = async (
|
|||||||
if (syncDirection === "incremental_push_only") {
|
if (syncDirection === "incremental_push_only") {
|
||||||
mixedEntry.decisionBranch = 32;
|
mixedEntry.decisionBranch = 32;
|
||||||
mixedEntry.decision = "conflict_created_then_keep_local";
|
mixedEntry.decision = "conflict_created_then_keep_local";
|
||||||
|
mixedEntry.change = true;
|
||||||
} else if (syncDirection === "incremental_pull_only") {
|
} else if (syncDirection === "incremental_pull_only") {
|
||||||
mixedEntry.decisionBranch = 33;
|
mixedEntry.decisionBranch = 33;
|
||||||
mixedEntry.decision = "conflict_created_then_do_nothing";
|
mixedEntry.decision = "conflict_created_then_do_nothing";
|
||||||
|
mixedEntry.change = false;
|
||||||
} else {
|
} else {
|
||||||
mixedEntry.decisionBranch = 7;
|
mixedEntry.decisionBranch = 7;
|
||||||
mixedEntry.decision = "remote_is_deleted_thus_also_delete_local";
|
mixedEntry.decision = "remote_is_deleted_thus_also_delete_local";
|
||||||
|
mixedEntry.change = true;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// if A is in the previous list and MODIFIED, A has been deleted by B but modified by A
|
// if A is in the previous list and MODIFIED, A has been deleted by B but modified by A
|
||||||
@@ -674,10 +723,12 @@ const getSyncPlanInplace = async (
|
|||||||
if (syncDirection === "incremental_pull_only") {
|
if (syncDirection === "incremental_pull_only") {
|
||||||
mixedEntry.decisionBranch = 34;
|
mixedEntry.decisionBranch = 34;
|
||||||
mixedEntry.decision = "conflict_created_then_do_nothing";
|
mixedEntry.decision = "conflict_created_then_do_nothing";
|
||||||
|
mixedEntry.change = false;
|
||||||
keptFolder.add(getParentFolder(key));
|
keptFolder.add(getParentFolder(key));
|
||||||
} else {
|
} else {
|
||||||
mixedEntry.decisionBranch = 8;
|
mixedEntry.decisionBranch = 8;
|
||||||
mixedEntry.decision = "local_is_modified_then_push";
|
mixedEntry.decision = "local_is_modified_then_push";
|
||||||
|
mixedEntry.change = true;
|
||||||
keptFolder.add(getParentFolder(key));
|
keptFolder.add(getParentFolder(key));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@@ -706,7 +757,7 @@ const getSyncPlanInplace = async (
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
profiler.insert("getSyncPlanInplace: finish looping");
|
profiler?.insert("getSyncPlanInplace: finish looping");
|
||||||
|
|
||||||
keptFolder.delete("/");
|
keptFolder.delete("/");
|
||||||
keptFolder.delete("");
|
keptFolder.delete("");
|
||||||
@@ -732,16 +783,16 @@ const getSyncPlanInplace = async (
|
|||||||
conflictAction: conflictAction,
|
conflictAction: conflictAction,
|
||||||
syncDirection: syncDirection,
|
syncDirection: syncDirection,
|
||||||
triggerSource: triggerSource,
|
triggerSource: triggerSource,
|
||||||
sizeof: sizeofmixedEntityMappings
|
sizeof: sizeofmixedEntityMappings,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
profiler.insert("getSyncPlanInplace: exit");
|
profiler?.insert("getSyncPlanInplace: exit");
|
||||||
profiler.insertSize(
|
profiler?.insertSize(
|
||||||
"sizeof mixedEntityMappings in the end of getSyncPlanInplace",
|
"sizeof mixedEntityMappings in the end of getSyncPlanInplace",
|
||||||
mixedEntityMappings
|
mixedEntityMappings
|
||||||
);
|
);
|
||||||
profiler.removeIndent();
|
profiler?.removeIndent();
|
||||||
|
|
||||||
return mixedEntityMappings;
|
return mixedEntityMappings;
|
||||||
};
|
};
|
||||||
@@ -950,6 +1001,14 @@ async function copyFile(
|
|||||||
}
|
}
|
||||||
|
|
||||||
// console.debug(`copyFile: about to start right.writeFile`);
|
// console.debug(`copyFile: about to start right.writeFile`);
|
||||||
|
if (typeof (content as any).transfer === "function") {
|
||||||
|
return await right.writeFile(
|
||||||
|
key,
|
||||||
|
(content as any).transfer(),
|
||||||
|
statsLeft.mtimeCli,
|
||||||
|
statsLeft.mtimeCli /* TODO */
|
||||||
|
);
|
||||||
|
} else {
|
||||||
return await right.writeFile(
|
return await right.writeFile(
|
||||||
key,
|
key,
|
||||||
content,
|
content,
|
||||||
@@ -957,6 +1016,7 @@ async function copyFile(
|
|||||||
statsLeft.mtimeCli /* TODO */
|
statsLeft.mtimeCli /* TODO */
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
async function copyFileOrFolder(
|
async function copyFileOrFolder(
|
||||||
key: string,
|
key: string,
|
||||||
@@ -1130,11 +1190,11 @@ export const doActualSync = async (
|
|||||||
protectModifyPercentage: number,
|
protectModifyPercentage: number,
|
||||||
getProtectModifyPercentageErrorStrFunc: any,
|
getProtectModifyPercentageErrorStrFunc: any,
|
||||||
db: InternalDBs,
|
db: InternalDBs,
|
||||||
profiler: Profiler,
|
profiler: Profiler | undefined,
|
||||||
callbackSyncProcess?: any
|
callbackSyncProcess?: any
|
||||||
) => {
|
) => {
|
||||||
profiler.addIndent();
|
profiler?.addIndent();
|
||||||
profiler.insert("doActualSync: enter");
|
profiler?.insert("doActualSync: enter");
|
||||||
console.debug(`concurrency === ${concurrency}`);
|
console.debug(`concurrency === ${concurrency}`);
|
||||||
const {
|
const {
|
||||||
onlyMarkSyncedOps,
|
onlyMarkSyncedOps,
|
||||||
@@ -1152,17 +1212,17 @@ export const doActualSync = async (
|
|||||||
console.debug(`allFilesCount: ${allFilesCount}`);
|
console.debug(`allFilesCount: ${allFilesCount}`);
|
||||||
console.debug(`realModifyDeleteCount: ${realModifyDeleteCount}`);
|
console.debug(`realModifyDeleteCount: ${realModifyDeleteCount}`);
|
||||||
console.debug(`realTotalCount: ${realTotalCount}`);
|
console.debug(`realTotalCount: ${realTotalCount}`);
|
||||||
profiler.insert("doActualSync: finish splitting steps");
|
profiler?.insert("doActualSync: finish splitting steps");
|
||||||
|
|
||||||
profiler.insertSize(
|
profiler?.insertSize(
|
||||||
"doActualSync: sizeof onlyMarkSyncedOps",
|
"doActualSync: sizeof onlyMarkSyncedOps",
|
||||||
onlyMarkSyncedOps
|
onlyMarkSyncedOps
|
||||||
);
|
);
|
||||||
profiler.insertSize(
|
profiler?.insertSize(
|
||||||
"doActualSync: sizeof folderCreationOps",
|
"doActualSync: sizeof folderCreationOps",
|
||||||
folderCreationOps
|
folderCreationOps
|
||||||
);
|
);
|
||||||
profiler.insertSize("doActualSync: sizeof realTotalCount", deletionOps);
|
profiler?.insertSize("doActualSync: sizeof realTotalCount", deletionOps);
|
||||||
|
|
||||||
console.debug(`protectModifyPercentage: ${protectModifyPercentage}`);
|
console.debug(`protectModifyPercentage: ${protectModifyPercentage}`);
|
||||||
|
|
||||||
@@ -1187,8 +1247,8 @@ export const doActualSync = async (
|
|||||||
allFilesCount
|
allFilesCount
|
||||||
);
|
);
|
||||||
|
|
||||||
profiler.insert("doActualSync: error branch");
|
profiler?.insert("doActualSync: error branch");
|
||||||
profiler.removeIndent();
|
profiler?.removeIndent();
|
||||||
throw Error(errorStr);
|
throw Error(errorStr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1208,8 +1268,8 @@ export const doActualSync = async (
|
|||||||
|
|
||||||
let realCounter = 0;
|
let realCounter = 0;
|
||||||
for (let i = 0; i < nested.length; ++i) {
|
for (let i = 0; i < nested.length; ++i) {
|
||||||
profiler.addIndent();
|
profiler?.addIndent();
|
||||||
profiler.insert(`doActualSync: step ${i} start`);
|
profiler?.insert(`doActualSync: step ${i} start`);
|
||||||
console.debug(logTexts[i]);
|
console.debug(logTexts[i]);
|
||||||
|
|
||||||
const operations = nested[i];
|
const operations = nested[i];
|
||||||
@@ -1282,12 +1342,12 @@ export const doActualSync = async (
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
profiler.insert(`doActualSync: step ${i} end`);
|
profiler?.insert(`doActualSync: step ${i} end`);
|
||||||
profiler.removeIndent();
|
profiler?.removeIndent();
|
||||||
}
|
}
|
||||||
|
|
||||||
profiler.insert(`doActualSync: exit`);
|
profiler?.insert(`doActualSync: exit`);
|
||||||
profiler.removeIndent();
|
profiler?.removeIndent();
|
||||||
};
|
};
|
||||||
|
|
||||||
export type SyncStatusType =
|
export type SyncStatusType =
|
||||||
@@ -1309,7 +1369,7 @@ export async function syncer(
|
|||||||
fsLocal: FakeFs,
|
fsLocal: FakeFs,
|
||||||
fsRemote: FakeFs,
|
fsRemote: FakeFs,
|
||||||
fsEncrypt: FakeFsEncrypt,
|
fsEncrypt: FakeFsEncrypt,
|
||||||
profiler: Profiler,
|
profiler: Profiler | undefined,
|
||||||
db: InternalDBs,
|
db: InternalDBs,
|
||||||
triggerSource: SyncTriggerSourceType,
|
triggerSource: SyncTriggerSourceType,
|
||||||
profileID: string,
|
profileID: string,
|
||||||
@@ -1340,7 +1400,7 @@ export async function syncer(
|
|||||||
await notifyFunc?.(triggerSource, step);
|
await notifyFunc?.(triggerSource, step);
|
||||||
await ribboonFunc?.(triggerSource, step);
|
await ribboonFunc?.(triggerSource, step);
|
||||||
await statusBarFunc?.(triggerSource, step, everythingOk);
|
await statusBarFunc?.(triggerSource, step, everythingOk);
|
||||||
profiler.insert("start big sync func");
|
profiler?.insert("start big sync func");
|
||||||
|
|
||||||
try {
|
try {
|
||||||
step = 2;
|
step = 2;
|
||||||
@@ -1354,7 +1414,7 @@ export async function syncer(
|
|||||||
if (!passwordCheckResult.ok) {
|
if (!passwordCheckResult.ok) {
|
||||||
throw Error(passwordCheckResult.reason);
|
throw Error(passwordCheckResult.reason);
|
||||||
}
|
}
|
||||||
profiler.insert(
|
profiler?.insert(
|
||||||
`finish step${step} (list partial remote and check password)`
|
`finish step${step} (list partial remote and check password)`
|
||||||
);
|
);
|
||||||
|
|
||||||
@@ -1365,7 +1425,7 @@ export async function syncer(
|
|||||||
const remoteEntityList = await fsEncrypt.walk();
|
const remoteEntityList = await fsEncrypt.walk();
|
||||||
// console.debug(`remoteEntityList:`);
|
// console.debug(`remoteEntityList:`);
|
||||||
// console.debug(remoteEntityList);
|
// console.debug(remoteEntityList);
|
||||||
profiler.insert(`finish step${step} (list remote)`);
|
profiler?.insert(`finish step${step} (list remote)`);
|
||||||
|
|
||||||
step = 4;
|
step = 4;
|
||||||
await notifyFunc?.(triggerSource, step);
|
await notifyFunc?.(triggerSource, step);
|
||||||
@@ -1374,7 +1434,7 @@ export async function syncer(
|
|||||||
const localEntityList = await fsLocal.walk();
|
const localEntityList = await fsLocal.walk();
|
||||||
// console.debug(`localEntityList:`);
|
// console.debug(`localEntityList:`);
|
||||||
// console.debug(localEntityList);
|
// console.debug(localEntityList);
|
||||||
profiler.insert(`finish step${step} (list local)`);
|
profiler?.insert(`finish step${step} (list local)`);
|
||||||
|
|
||||||
step = 5;
|
step = 5;
|
||||||
await notifyFunc?.(triggerSource, step);
|
await notifyFunc?.(triggerSource, step);
|
||||||
@@ -1387,7 +1447,7 @@ export async function syncer(
|
|||||||
);
|
);
|
||||||
// console.debug(`prevSyncEntityList:`);
|
// console.debug(`prevSyncEntityList:`);
|
||||||
// console.debug(prevSyncEntityList);
|
// console.debug(prevSyncEntityList);
|
||||||
profiler.insert(`finish step${step} (prev sync)`);
|
profiler?.insert(`finish step${step} (prev sync)`);
|
||||||
|
|
||||||
step = 6;
|
step = 6;
|
||||||
await notifyFunc?.(triggerSource, step);
|
await notifyFunc?.(triggerSource, step);
|
||||||
@@ -1405,7 +1465,7 @@ export async function syncer(
|
|||||||
settings.serviceType,
|
settings.serviceType,
|
||||||
profiler
|
profiler
|
||||||
);
|
);
|
||||||
profiler.insert(`finish step${step} (build partial mixedEntity)`);
|
profiler?.insert(`finish step${step} (build partial mixedEntity)`);
|
||||||
|
|
||||||
mixedEntityMappings = await getSyncPlanInplace(
|
mixedEntityMappings = await getSyncPlanInplace(
|
||||||
mixedEntityMappings,
|
mixedEntityMappings,
|
||||||
@@ -1419,7 +1479,7 @@ export async function syncer(
|
|||||||
);
|
);
|
||||||
console.debug(`mixedEntityMappings:`);
|
console.debug(`mixedEntityMappings:`);
|
||||||
console.debug(mixedEntityMappings); // for debugging
|
console.debug(mixedEntityMappings); // for debugging
|
||||||
profiler.insert("finish building full sync plan");
|
profiler?.insert("finish building full sync plan");
|
||||||
|
|
||||||
await insertSyncPlanRecordByVault(
|
await insertSyncPlanRecordByVault(
|
||||||
db,
|
db,
|
||||||
@@ -1427,8 +1487,8 @@ export async function syncer(
|
|||||||
vaultRandomID,
|
vaultRandomID,
|
||||||
settings.serviceType
|
settings.serviceType
|
||||||
);
|
);
|
||||||
profiler.insert("finish writing sync plan");
|
profiler?.insert("finish writing sync plan");
|
||||||
profiler.insert(`finish step${step} (make plan)`);
|
profiler?.insert(`finish step${step} (make plan)`);
|
||||||
|
|
||||||
// The operations above are almost read only and kind of safe.
|
// The operations above are almost read only and kind of safe.
|
||||||
// The operations below begins to write or delete (!!!) something.
|
// The operations below begins to write or delete (!!!) something.
|
||||||
@@ -1451,27 +1511,27 @@ export async function syncer(
|
|||||||
profiler,
|
profiler,
|
||||||
callbackSyncProcess
|
callbackSyncProcess
|
||||||
);
|
);
|
||||||
profiler.insert(`finish step${step} (actual sync)`);
|
profiler?.insert(`finish step${step} (actual sync)`);
|
||||||
} else {
|
} else {
|
||||||
await notifyFunc?.(triggerSource, step);
|
await notifyFunc?.(triggerSource, step);
|
||||||
await ribboonFunc?.(triggerSource, step);
|
await ribboonFunc?.(triggerSource, step);
|
||||||
await statusBarFunc?.(triggerSource, step, everythingOk);
|
await statusBarFunc?.(triggerSource, step, everythingOk);
|
||||||
profiler.insert(
|
profiler?.insert(
|
||||||
`finish step${step} (skip actual sync because of dry run)`
|
`finish step${step} (skip actual sync because of dry run)`
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
} catch (error: any) {
|
} catch (error: any) {
|
||||||
profiler.insert("start error branch");
|
profiler?.insert("start error branch");
|
||||||
everythingOk = false;
|
everythingOk = false;
|
||||||
await errNotifyFunc?.(triggerSource, error as Error);
|
await errNotifyFunc?.(triggerSource, error as Error);
|
||||||
|
|
||||||
profiler.insert("finish error branch");
|
profiler?.insert("finish error branch");
|
||||||
} finally {
|
} finally {
|
||||||
}
|
}
|
||||||
|
|
||||||
profiler.insert("finish syncRun");
|
profiler?.insert("finish syncRun");
|
||||||
// console.debug(profiler.toString());
|
// console.debug(profiler?.toString());
|
||||||
await profiler.save(db, vaultRandomID, settings.serviceType);
|
await profiler?.save(db, vaultRandomID, settings.serviceType);
|
||||||
|
|
||||||
step = 8;
|
step = 8;
|
||||||
await notifyFunc?.(triggerSource, step);
|
await notifyFunc?.(triggerSource, step);
|
||||||
|
|||||||
+3
-2
@@ -82,6 +82,7 @@
|
|||||||
font-weight: bolder;
|
font-weight: bolder;
|
||||||
}
|
}
|
||||||
|
|
||||||
.setting-need-wrapping-mobile .setting-item-control {
|
.setting-need-wrapping .setting-item-control {
|
||||||
flex-wrap: wrap;
|
/* flex-wrap: wrap; */
|
||||||
|
display: grid;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -286,6 +286,83 @@ describe("Misc: special char for dir", () => {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
describe("Misc: split chunk ranges", () => {
|
||||||
|
it("should fail on negative numner", () => {
|
||||||
|
assert.throws(() => misc.splitFileSizeToChunkRanges(-1, 2));
|
||||||
|
assert.throws(() => misc.splitFileSizeToChunkRanges(1, -1));
|
||||||
|
assert.throws(() => misc.splitFileSizeToChunkRanges(1, 0));
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should return nothing for 0 input", () => {
|
||||||
|
let input: [number, number] = [0, 1];
|
||||||
|
let output: any = [];
|
||||||
|
assert.deepStrictEqual(output, misc.splitFileSizeToChunkRanges(...input));
|
||||||
|
|
||||||
|
input = [0, 100];
|
||||||
|
output = [];
|
||||||
|
assert.deepStrictEqual(output, misc.splitFileSizeToChunkRanges(...input));
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should return single item for 1 input", () => {
|
||||||
|
let input: [number, number] = [1, 1];
|
||||||
|
let output = [{ start: 0, end: 0 }];
|
||||||
|
assert.deepStrictEqual(output, misc.splitFileSizeToChunkRanges(...input));
|
||||||
|
|
||||||
|
input = [1, 100];
|
||||||
|
output = [{ start: 0, end: 0 }];
|
||||||
|
assert.deepStrictEqual(output, misc.splitFileSizeToChunkRanges(...input));
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should return single item for larger or equal input", () => {
|
||||||
|
let input: [number, number] = [10, 10];
|
||||||
|
let output = [{ start: 0, end: 9 }];
|
||||||
|
assert.deepStrictEqual(output, misc.splitFileSizeToChunkRanges(...input));
|
||||||
|
|
||||||
|
input = [10, 21];
|
||||||
|
output = [{ start: 0, end: 9 }];
|
||||||
|
assert.deepStrictEqual(output, misc.splitFileSizeToChunkRanges(...input));
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should return correct items for normal input", () => {
|
||||||
|
let input: [number, number] = [10, 9];
|
||||||
|
let output = [
|
||||||
|
{ start: 0, end: 8 },
|
||||||
|
{ start: 9, end: 9 },
|
||||||
|
];
|
||||||
|
assert.deepStrictEqual(output, misc.splitFileSizeToChunkRanges(...input));
|
||||||
|
|
||||||
|
input = [10, 5];
|
||||||
|
output = [
|
||||||
|
{ start: 0, end: 4 },
|
||||||
|
{ start: 5, end: 9 },
|
||||||
|
];
|
||||||
|
assert.deepStrictEqual(output, misc.splitFileSizeToChunkRanges(...input));
|
||||||
|
|
||||||
|
input = [3, 1];
|
||||||
|
output = [
|
||||||
|
{ start: 0, end: 0 },
|
||||||
|
{ start: 1, end: 1 },
|
||||||
|
{ start: 2, end: 2 },
|
||||||
|
];
|
||||||
|
assert.deepStrictEqual(output, misc.splitFileSizeToChunkRanges(...input));
|
||||||
|
|
||||||
|
input = [15, 5];
|
||||||
|
output = [
|
||||||
|
{ start: 0, end: 4 },
|
||||||
|
{ start: 5, end: 9 },
|
||||||
|
{ start: 10, end: 14 },
|
||||||
|
];
|
||||||
|
assert.deepStrictEqual(output, misc.splitFileSizeToChunkRanges(...input));
|
||||||
|
|
||||||
|
input = [1024, 578];
|
||||||
|
output = [
|
||||||
|
{ start: 0, end: 577 },
|
||||||
|
{ start: 578, end: 1023 },
|
||||||
|
];
|
||||||
|
assert.deepStrictEqual(output, misc.splitFileSizeToChunkRanges(...input));
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
describe("Misc: Dropbox: should fix the folder name cases", () => {
|
describe("Misc: Dropbox: should fix the folder name cases", () => {
|
||||||
it("should do nothing on empty folders", () => {
|
it("should do nothing on empty folders", () => {
|
||||||
const input: any[] = [];
|
const input: any[] = [];
|
||||||
|
|||||||
Reference in New Issue
Block a user