Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7bc2fad88b | ||
|
|
6dc1c28361 | ||
|
|
2220f511e3 | ||
|
|
06de1a4ab0 | ||
|
|
df184ff9d8 |
@@ -122,6 +122,7 @@ Additionally, the plugin author may occasionally visit Obsidian official forum a
|
||||
- [Open Media Vault](./docs/remote_services/webdav_openmediavault/README.md)
|
||||
- [Nginx (`ngx_http_dav_module`, `nginx-dav-ext-module`, with Docker)](./docs/remote_services/webdav_nginx/README.md)
|
||||
- [Apache (with Docker)](./docs/remote_services/webdav_apache/README.md)
|
||||
- [Caddy with `http.handlers.webdav` module](./docs/remote_services/webdav_caddy/README.md)
|
||||
- Very old version of Obsidian needs [configuring CORS](./docs/remote_services/webdav_general/webav_cors.md).
|
||||
- Your data would be synced to a `${vaultName}` sub folder on your webdav server.
|
||||
- Password-based end-to-end encryption is also supported. But please be aware that **the vault name itself is not encrypted**.
|
||||
|
||||
@@ -122,6 +122,7 @@
|
||||
- [Open Media Vault](./docs/remote_services/webdav_openmediavault/README.md)
|
||||
- [Nginx (`ngx_http_dav_module`, `nginx-dav-ext-module`, with Docker)](./docs/remote_services/webdav_nginx/README.md)
|
||||
- [Apache (with Docker)](./docs/remote_services/webdav_apache/README.md)
|
||||
- [Caddy with `http.handlers.webdav` module](./docs/remote_services/webdav_caddy/README.md)
|
||||
- 非常旧版本的Obsidian需要[配置 CORS](./docs/remote_services/webdav_general/webav_cors.md)。
|
||||
- 你的数据会同步到你的webdav服务器上的 `${vaultName}` 子文件夹。
|
||||
- 基于密码的端到端加密也是可以的。但请注意,**vault 名称本身未加密**。
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
# Caddy with `http.handlers.webdav` module
|
||||
|
||||
> modified from the instruction from @cyruz-git in https://github.com/remotely-save/remotely-save/issues/825
|
||||
|
||||
## Link
|
||||
|
||||
<https://caddyserver.com/download?package=github.com%2Fmholt%2Fcaddy-webdav>
|
||||
|
||||
## Steps
|
||||
|
||||
1. Download caddy with webdav module from <https://caddyserver.com/download?package=github.com%2Fmholt%2Fcaddy-webdav>. Or you can install Caddy then install the plugins.
|
||||
2. Create a folder for storing webdav server files. Like `/usr/local/mywebdav`.
|
||||
3. Create a `Caddyfile` (yeah the file name itself is `Caddyfile`.) like this:
|
||||
```caddy
|
||||
:8080 {
|
||||
route /dav/* {
|
||||
root /usr/local/mywebdav
|
||||
basicauth {
|
||||
# Username "Bob", password "hiccup"
|
||||
Bob $2a$14$Zkx19XLiW6VYouLHR5NmfOFU0z2GTNmpkT/5qqR7hx4IjWJPDhjvG
|
||||
}
|
||||
uri strip_prefix /dav
|
||||
webdav
|
||||
}
|
||||
}
|
||||
```
|
||||
The password hash is generated like [this](https://caddyserver.com/docs/caddyfile/directives/basic_auth).
|
||||
4. In Remotely Save, setup:
|
||||
* address `http://localhost:8080/dav/`
|
||||
* username `Bob`
|
||||
* password `hiccup`
|
||||
* auth type: `basic`
|
||||
5. Check the connection and sync!
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "remotely-save",
|
||||
"name": "Remotely Save",
|
||||
"version": "0.5.22",
|
||||
"version": "0.5.24",
|
||||
"minAppVersion": "0.13.21",
|
||||
"description": "Yet another unofficial plugin allowing users to synchronize notes between local device and the cloud service.",
|
||||
"author": "fyears",
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "remotely-save",
|
||||
"name": "Remotely Save",
|
||||
"version": "0.5.22",
|
||||
"version": "0.5.24",
|
||||
"minAppVersion": "0.13.21",
|
||||
"description": "Yet another unofficial plugin allowing users to synchronize notes between local device and the cloud service.",
|
||||
"author": "fyears",
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "remotely-save",
|
||||
"version": "0.5.22",
|
||||
"version": "0.5.24",
|
||||
"description": "This is yet another sync plugin for Obsidian app.",
|
||||
"scripts": {
|
||||
"dev2": "node esbuild.config.mjs --watch",
|
||||
|
||||
+28
-13
@@ -203,21 +203,36 @@ export const checkIsSkipItemOrNotByName = (
|
||||
}
|
||||
}
|
||||
|
||||
// we have to check bookmarks.json firstly then check the whole .obsidian folder later
|
||||
if (isBookmarksFile(key, configDir) && finalIsIgnored === undefined) {
|
||||
if (syncBookmarks) {
|
||||
finalIsIgnored = false;
|
||||
} else {
|
||||
finalIsIgnored = true;
|
||||
}
|
||||
}
|
||||
|
||||
// we have to check bookmarks.json firstly then check the whole .obsidian folder later
|
||||
if (isInsideObsFolder(key, configDir) && finalIsIgnored === undefined) {
|
||||
// sync config, not sync bookmarks: sync config and **force syncing bookmarks as well**
|
||||
// not sync config, sync bookmarks: sync bookmars, not other config
|
||||
// not sync config, not sync bookmarks: not sync config
|
||||
if (finalIsIgnored === undefined) {
|
||||
if (syncConfigDir) {
|
||||
finalIsIgnored = false;
|
||||
if (isInsideObsFolder(key, configDir)) {
|
||||
// force sync everything
|
||||
finalIsIgnored = false;
|
||||
} else {
|
||||
// not config files, do not judge now, do nothing
|
||||
}
|
||||
} else if (syncBookmarks) {
|
||||
// not sync config, sync bookmarks
|
||||
if (isBookmarksFile(key, configDir)) {
|
||||
// sync everything of bookmarks
|
||||
finalIsIgnored = false;
|
||||
} else if (isInsideObsFolder(key, configDir)) {
|
||||
// not sync any other thing in config
|
||||
finalIsIgnored = true;
|
||||
} else {
|
||||
// not config files, do not judge now, do nothing
|
||||
}
|
||||
} else {
|
||||
finalIsIgnored = true;
|
||||
// not sync config, and not sync bookmarks
|
||||
if (isInsideObsFolder(key, configDir)) {
|
||||
// not sync any thing in config
|
||||
finalIsIgnored = true;
|
||||
} else {
|
||||
// not config files, do not judge now, do nothing
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+33
-12
@@ -138,7 +138,6 @@ if (VALID_REQURL) {
|
||||
);
|
||||
}
|
||||
|
||||
import isEqual from "lodash/isEqual";
|
||||
// @ts-ignore
|
||||
// biome-ignore lint: we want to ts-ignore the next line
|
||||
import { AuthType, BufferLike, createClient } from "webdav/dist/web/index.js";
|
||||
@@ -169,23 +168,37 @@ const getWebdavPath = (fileOrFolderPath: string, remoteBaseDir: string) => {
|
||||
return key;
|
||||
};
|
||||
|
||||
/**
|
||||
* sometimes the path startswith /../../......
|
||||
* we want to make sure the path is compatible
|
||||
*/
|
||||
const stripLeadingPath = (x: string) => {
|
||||
let y = x;
|
||||
while (y.startsWith("/..")) {
|
||||
y = y.slice("/..".length);
|
||||
}
|
||||
return y;
|
||||
};
|
||||
|
||||
const getNormPath = (fileOrFolderPath: string, remoteBaseDir: string) => {
|
||||
const strippedFileOrFolderPath = stripLeadingPath(fileOrFolderPath);
|
||||
if (
|
||||
!(
|
||||
fileOrFolderPath === `/${remoteBaseDir}` ||
|
||||
fileOrFolderPath.startsWith(`/${remoteBaseDir}/`)
|
||||
strippedFileOrFolderPath === `/${remoteBaseDir}` ||
|
||||
strippedFileOrFolderPath.startsWith(`/${remoteBaseDir}/`)
|
||||
)
|
||||
) {
|
||||
throw Error(
|
||||
`"${fileOrFolderPath}" doesn't starts with "/${remoteBaseDir}/"`
|
||||
`"${fileOrFolderPath}" after stripping doesn't starts with "/${remoteBaseDir}/"`
|
||||
);
|
||||
}
|
||||
|
||||
return fileOrFolderPath.slice(`/${remoteBaseDir}/`.length);
|
||||
const result = strippedFileOrFolderPath.slice(`/${remoteBaseDir}/`.length);
|
||||
return result;
|
||||
};
|
||||
|
||||
const fromWebdavItemToEntity = (x: FileStat, remoteBaseDir: string): Entity => {
|
||||
let key = getNormPath(x.filename, remoteBaseDir);
|
||||
|
||||
if (x.type === "directory" && !key.endsWith("/")) {
|
||||
key = `${key}/`;
|
||||
}
|
||||
@@ -447,15 +460,17 @@ export class FakeFsWebdav extends FakeFs {
|
||||
// console.debug(itemsToFetchChunks);
|
||||
const subContents = [] as FileStat[];
|
||||
for (const singleChunk of itemsToFetchChunks) {
|
||||
const r = singleChunk.map((x) => {
|
||||
return this.client.getDirectoryContents(x, {
|
||||
const r = singleChunk.map(async (x) => {
|
||||
let k = (await this.client.getDirectoryContents(x, {
|
||||
deep: false,
|
||||
details: false /* no need for verbose details here */,
|
||||
// TODO: to support .obsidian,
|
||||
// we need to load all files including dot,
|
||||
// anyway to reduce the resources?
|
||||
// glob: "/**" /* avoid dot files by using glob */,
|
||||
}) as Promise<FileStat[]>;
|
||||
})) as FileStat[];
|
||||
k = k.filter((sub) => stripLeadingPath(sub.filename) !== x);
|
||||
return k;
|
||||
});
|
||||
const r3 = await Promise.all(r);
|
||||
for (const r4 of r3) {
|
||||
@@ -477,7 +492,7 @@ export class FakeFsWebdav extends FakeFs {
|
||||
const f = subContents[i];
|
||||
contents.push(f);
|
||||
if (f.type === "directory") {
|
||||
q.push(f.filename);
|
||||
q.push(stripLeadingPath(f.filename));
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -495,7 +510,11 @@ export class FakeFsWebdav extends FakeFs {
|
||||
}
|
||||
)) as FileStat[];
|
||||
}
|
||||
return contents.map((x) => fromWebdavItemToEntity(x, this.remoteBaseDir));
|
||||
|
||||
const result = contents
|
||||
.map((x) => fromWebdavItemToEntity(x, this.remoteBaseDir))
|
||||
.filter((x) => x.keyRaw !== "/");
|
||||
return result;
|
||||
}
|
||||
|
||||
async walkPartial(): Promise<Entity[]> {
|
||||
@@ -508,7 +527,9 @@ export class FakeFsWebdav extends FakeFs {
|
||||
details: false /* no need for verbose details here */,
|
||||
}
|
||||
)) as FileStat[];
|
||||
return contents.map((x) => fromWebdavItemToEntity(x, this.remoteBaseDir));
|
||||
return contents
|
||||
.map((x) => fromWebdavItemToEntity(x, this.remoteBaseDir))
|
||||
.filter((x) => x.keyRaw !== "/");
|
||||
}
|
||||
|
||||
async stat(key: string): Promise<Entity> {
|
||||
|
||||
Reference in New Issue
Block a user