mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2026-03-10 11:58:48 +00:00
### Fixed (This should be backported to 0.25.22 if the beta phase is prolonged) - No longer larger files will not create a chunks during preparing `Reset Synchronisation on This Device`. ### Behaviour changes - Setup wizard is now more `goal-oriented`. Brand-new screens are introduced. - `Fetch everything` and `Rebuild everything` is now `Reset Synchronisation on This Device` and `Overwrite Server Data with This Device's Files`. - Remote configuration and E2EE settings are now separated to each modal dialogue. - Peer-to-Peer settings is also separated into its own modal dialogue. - Setup-URI, and Report for the Issue are now not copied to clipboard automatically. Instead, there are copy dialogue and buttons to copy them explicitly. - No longer optional features are introduced during the setup or `Reset Synchronisation on This Device`, `Overwrite Server Data with This Device's Files`. - We cannot preform `Fetch everything` and `Rebuild everything` (Removed, so the old name) without restarting Obsidian now. ### Miscellaneous - Setup QR Code generation is separated into a src/lib/src/API/processSetting.ts file. Please use it as a subrepository if you want to generate QR codes in your own application. - Setup-URI is also separated into a src/lib/src/API/processSetting.ts - Some direct access to web-APIs are now wrapped into the services layer. ### Dependency updates - Many dependencies are updated. Please see `package.json`. - As upgrading TypeScript, Fixed many UInt8Array<ArrayBuffer> and Uint8Array type mismatches.
293 lines
13 KiB
TypeScript
293 lines
13 KiB
TypeScript
import { AbstractObsidianModule } from "../AbstractObsidianModule.ts";
|
|
import { LOG_LEVEL_DEBUG, LOG_LEVEL_NOTICE, LOG_LEVEL_VERBOSE } from "octagonal-wheels/common/logger";
|
|
import { Notice, requestUrl, type RequestUrlParam, type RequestUrlResponse } from "../../deps.ts";
|
|
import { type CouchDBCredentials, type EntryDoc, type FilePath } from "../../lib/src/common/types.ts";
|
|
import { getPathFromTFile } from "../../common/utils.ts";
|
|
import { isCloudantURI, isValidRemoteCouchDBURI } from "../../lib/src/pouchdb/utils_couchdb.ts";
|
|
import { replicationFilter } from "@/lib/src/pouchdb/compress.ts";
|
|
import { disableEncryption } from "@/lib/src/pouchdb/encryption.ts";
|
|
import { enableEncryption } from "@/lib/src/pouchdb/encryption.ts";
|
|
import { setNoticeClass } from "../../lib/src/mock_and_interop/wrapper.ts";
|
|
import { ObsHttpHandler } from "./APILib/ObsHttpHandler.ts";
|
|
import { PouchDB } from "../../lib/src/pouchdb/pouchdb-browser.ts";
|
|
import { AuthorizationHeaderGenerator } from "../../lib/src/replication/httplib.ts";
|
|
import type { LiveSyncCore } from "../../main.ts";
|
|
|
|
setNoticeClass(Notice);
|
|
|
|
async function fetchByAPI(request: RequestUrlParam, errorAsResult = false): Promise<RequestUrlResponse> {
|
|
const ret = await requestUrl({ ...request, throw: !errorAsResult });
|
|
return ret;
|
|
}
|
|
|
|
export class ModuleObsidianAPI extends AbstractObsidianModule {
|
|
_customHandler!: ObsHttpHandler;
|
|
|
|
_authHeader = new AuthorizationHeaderGenerator();
|
|
|
|
last_successful_post = false;
|
|
_customFetchHandler(): ObsHttpHandler {
|
|
if (!this._customHandler) this._customHandler = new ObsHttpHandler(undefined, undefined);
|
|
return this._customHandler;
|
|
}
|
|
_getLastPostFailedBySize(): boolean {
|
|
return !this.last_successful_post;
|
|
}
|
|
|
|
async __fetchByAPI(url: string, authHeader: string, opts?: RequestInit): Promise<Response> {
|
|
const body = opts?.body as string;
|
|
|
|
const transformedHeaders = { ...(opts?.headers as Record<string, string>) };
|
|
if (authHeader != "") transformedHeaders["authorization"] = authHeader;
|
|
delete transformedHeaders["host"];
|
|
delete transformedHeaders["Host"];
|
|
delete transformedHeaders["content-length"];
|
|
delete transformedHeaders["Content-Length"];
|
|
const requestParam: RequestUrlParam = {
|
|
url,
|
|
method: opts?.method,
|
|
body: body,
|
|
headers: transformedHeaders,
|
|
contentType:
|
|
transformedHeaders?.["content-type"] ?? transformedHeaders?.["Content-Type"] ?? "application/json",
|
|
};
|
|
const r = await fetchByAPI(requestParam, true);
|
|
return new Response(r.arrayBuffer, {
|
|
headers: r.headers,
|
|
status: r.status,
|
|
statusText: `${r.status}`,
|
|
});
|
|
}
|
|
|
|
async fetchByAPI(
|
|
url: string,
|
|
localURL: string,
|
|
method: string,
|
|
authHeader: string,
|
|
opts?: RequestInit
|
|
): Promise<Response> {
|
|
const body = opts?.body as string;
|
|
const size = body ? ` (${body.length})` : "";
|
|
try {
|
|
const r = await this.__fetchByAPI(url, authHeader, opts);
|
|
this.plugin.requestCount.value = this.plugin.requestCount.value + 1;
|
|
if (method == "POST" || method == "PUT") {
|
|
this.last_successful_post = r.status - (r.status % 100) == 200;
|
|
} else {
|
|
this.last_successful_post = true;
|
|
}
|
|
this._log(`HTTP:${method}${size} to:${localURL} -> ${r.status}`, LOG_LEVEL_DEBUG);
|
|
return r;
|
|
} catch (ex) {
|
|
this._log(`HTTP:${method}${size} to:${localURL} -> failed`, LOG_LEVEL_VERBOSE);
|
|
// limit only in bulk_docs.
|
|
if (url.toString().indexOf("_bulk_docs") !== -1) {
|
|
this.last_successful_post = false;
|
|
}
|
|
this._log(ex);
|
|
throw ex;
|
|
} finally {
|
|
this.plugin.responseCount.value = this.plugin.responseCount.value + 1;
|
|
}
|
|
}
|
|
|
|
async _connectRemoteCouchDB(
|
|
uri: string,
|
|
auth: CouchDBCredentials,
|
|
disableRequestURI: boolean,
|
|
passphrase: string | false,
|
|
useDynamicIterationCount: boolean,
|
|
performSetup: boolean,
|
|
skipInfo: boolean,
|
|
compression: boolean,
|
|
customHeaders: Record<string, string>,
|
|
useRequestAPI: boolean,
|
|
getPBKDF2Salt: () => Promise<Uint8Array<ArrayBuffer>>
|
|
): Promise<string | { db: PouchDB.Database<EntryDoc>; info: PouchDB.Core.DatabaseInfo }> {
|
|
if (!isValidRemoteCouchDBURI(uri)) return "Remote URI is not valid";
|
|
if (uri.toLowerCase() != uri) return "Remote URI and database name could not contain capital letters.";
|
|
if (uri.indexOf(" ") !== -1) return "Remote URI and database name could not contain spaces.";
|
|
if (!this.core.managers.networkManager.isOnline) {
|
|
return "Network is offline";
|
|
}
|
|
// let authHeader = await this._authHeader.getAuthorizationHeader(auth);
|
|
|
|
const conf: PouchDB.HttpAdapter.HttpAdapterConfiguration = {
|
|
adapter: "http",
|
|
auth: "username" in auth ? auth : undefined,
|
|
skip_setup: !performSetup,
|
|
fetch: async (url: string | Request, opts?: RequestInit) => {
|
|
const authHeader = await this._authHeader.getAuthorizationHeader(auth);
|
|
let size = "";
|
|
const localURL = url.toString().substring(uri.length);
|
|
const method = opts?.method ?? "GET";
|
|
if (opts?.body) {
|
|
const opts_length = opts.body.toString().length;
|
|
if (opts_length > 1000 * 1000 * 10) {
|
|
// over 10MB
|
|
if (isCloudantURI(uri)) {
|
|
this.last_successful_post = false;
|
|
this._log("This request should fail on IBM Cloudant.", LOG_LEVEL_VERBOSE);
|
|
throw new Error("This request should fail on IBM Cloudant.");
|
|
}
|
|
}
|
|
size = ` (${opts_length})`;
|
|
}
|
|
try {
|
|
const headers = new Headers(opts?.headers);
|
|
if (customHeaders) {
|
|
for (const [key, value] of Object.entries(customHeaders)) {
|
|
if (key && value) {
|
|
headers.append(key, value);
|
|
}
|
|
}
|
|
}
|
|
if (!("username" in auth)) {
|
|
headers.append("authorization", authHeader);
|
|
}
|
|
|
|
try {
|
|
this.plugin.requestCount.value = this.plugin.requestCount.value + 1;
|
|
const response: Response = await (useRequestAPI
|
|
? this.__fetchByAPI(url.toString(), authHeader, { ...opts, headers })
|
|
: fetch(url, { ...opts, headers }));
|
|
if (method == "POST" || method == "PUT") {
|
|
this.last_successful_post = response.ok;
|
|
} else {
|
|
this.last_successful_post = true;
|
|
}
|
|
this._log(`HTTP:${method}${size} to:${localURL} -> ${response.status}`, LOG_LEVEL_DEBUG);
|
|
if (Math.floor(response.status / 100) !== 2) {
|
|
if (response.status == 404) {
|
|
if (method === "GET" && localURL.indexOf("/_local/") === -1) {
|
|
this._log(
|
|
`Just checkpoint or some server information has been missing. The 404 error shown above is not an error.`,
|
|
LOG_LEVEL_VERBOSE
|
|
);
|
|
}
|
|
} else {
|
|
const r = response.clone();
|
|
this._log(
|
|
`The request may have failed. The reason sent by the server: ${r.status}: ${r.statusText}`,
|
|
LOG_LEVEL_NOTICE
|
|
);
|
|
try {
|
|
const result = await r.text();
|
|
this._log(result, LOG_LEVEL_VERBOSE);
|
|
} catch (_) {
|
|
this._log("Cloud not fetch response body", LOG_LEVEL_VERBOSE);
|
|
this._log(_, LOG_LEVEL_VERBOSE);
|
|
}
|
|
}
|
|
}
|
|
return response;
|
|
} catch (ex) {
|
|
if (ex instanceof TypeError) {
|
|
if (useRequestAPI) {
|
|
this._log("Failed to request by API.");
|
|
throw ex;
|
|
}
|
|
this._log(
|
|
"Failed to fetch by native fetch API. Trying to fetch by API to get more information."
|
|
);
|
|
const resp2 = await this.fetchByAPI(url.toString(), localURL, method, authHeader, {
|
|
...opts,
|
|
headers,
|
|
});
|
|
if (resp2.status / 100 == 2) {
|
|
this._log(
|
|
"The request was successful by API. But the native fetch API failed! Please check CORS settings on the remote database!. While this condition, you cannot enable LiveSync",
|
|
LOG_LEVEL_NOTICE
|
|
);
|
|
return resp2;
|
|
}
|
|
const r2 = resp2.clone();
|
|
const msg = await r2.text();
|
|
this._log(`Failed to fetch by API. ${resp2.status}: ${msg}`, LOG_LEVEL_NOTICE);
|
|
return resp2;
|
|
}
|
|
throw ex;
|
|
}
|
|
} catch (ex: any) {
|
|
this._log(`HTTP:${method}${size} to:${localURL} -> failed`, LOG_LEVEL_VERBOSE);
|
|
const msg = ex instanceof Error ? `${ex?.name}:${ex?.message}` : ex?.toString();
|
|
this._log(`Failed to fetch: ${msg}`, LOG_LEVEL_NOTICE);
|
|
this._log(ex, LOG_LEVEL_VERBOSE);
|
|
// limit only in bulk_docs.
|
|
if (url.toString().indexOf("_bulk_docs") !== -1) {
|
|
this.last_successful_post = false;
|
|
}
|
|
this._log(ex);
|
|
throw ex;
|
|
} finally {
|
|
this.plugin.responseCount.value = this.plugin.responseCount.value + 1;
|
|
}
|
|
|
|
// return await fetch(url, opts);
|
|
},
|
|
};
|
|
|
|
const db: PouchDB.Database<EntryDoc> = new PouchDB<EntryDoc>(uri, conf);
|
|
replicationFilter(db, compression);
|
|
disableEncryption();
|
|
if (passphrase !== "false" && typeof passphrase === "string") {
|
|
enableEncryption(
|
|
db,
|
|
passphrase,
|
|
useDynamicIterationCount,
|
|
false,
|
|
getPBKDF2Salt,
|
|
this.settings.E2EEAlgorithm
|
|
);
|
|
}
|
|
if (skipInfo) {
|
|
return { db: db, info: { db_name: "", doc_count: 0, update_seq: "" } };
|
|
}
|
|
try {
|
|
const info = await db.info();
|
|
return { db: db, info: info };
|
|
} catch (ex: any) {
|
|
const msg = `${ex?.name}:${ex?.message}`;
|
|
this._log(ex, LOG_LEVEL_VERBOSE);
|
|
return msg;
|
|
}
|
|
}
|
|
|
|
_isMobile(): boolean {
|
|
//@ts-ignore : internal API
|
|
return this.app.isMobile;
|
|
}
|
|
|
|
_vaultName(): string {
|
|
return this.app.vault.getName();
|
|
}
|
|
_getVaultName(): string {
|
|
return (
|
|
this.services.vault.vaultName() +
|
|
(this.settings?.additionalSuffixOfDatabaseName ? "-" + this.settings.additionalSuffixOfDatabaseName : "")
|
|
);
|
|
}
|
|
_getActiveFilePath(): FilePath | undefined {
|
|
const file = this.app.workspace.getActiveFile();
|
|
if (file) {
|
|
return getPathFromTFile(file);
|
|
}
|
|
return undefined;
|
|
}
|
|
|
|
_anyGetAppId(): string {
|
|
return `${"appId" in this.app ? this.app.appId : ""}`;
|
|
}
|
|
|
|
onBindFunction(core: LiveSyncCore, services: typeof core.services) {
|
|
services.API.handleGetCustomFetchHandler(this._customFetchHandler.bind(this));
|
|
services.API.handleIsLastPostFailedDueToPayloadSize(this._getLastPostFailedBySize.bind(this));
|
|
services.remote.handleConnect(this._connectRemoteCouchDB.bind(this));
|
|
services.API.handleIsMobile(this._isMobile.bind(this));
|
|
services.vault.handleGetVaultName(this._getVaultName.bind(this));
|
|
services.vault.handleVaultName(this._vaultName.bind(this));
|
|
services.vault.handleGetActiveFilePath(this._getActiveFilePath.bind(this));
|
|
services.API.handleGetAppID(this._anyGetAppId.bind(this));
|
|
}
|
|
}
|