mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-24 10:27:10 +02:00
Fixed detection of encrypted item
This commit is contained in:
parent
5a9e0bfc26
commit
1669b5258a
@ -131,7 +131,6 @@ class Command extends BaseCommand {
|
|||||||
} else if (stat.isDirectory()) {
|
} else if (stat.isDirectory()) {
|
||||||
continue;
|
continue;
|
||||||
} else {
|
} else {
|
||||||
itemCount++;
|
|
||||||
const content = await fs.readFile(fullPath, 'utf8');
|
const content = await fs.readFile(fullPath, 'utf8');
|
||||||
const item = await BaseItem.unserialize(content);
|
const item = await BaseItem.unserialize(content);
|
||||||
const ItemClass = BaseItem.itemClass(item);
|
const ItemClass = BaseItem.itemClass(item);
|
||||||
@ -141,6 +140,8 @@ class Command extends BaseCommand {
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
itemCount++;
|
||||||
|
|
||||||
const isEncrypted = await EncryptionService.instance().itemIsEncrypted(item);
|
const isEncrypted = await EncryptionService.instance().itemIsEncrypted(item);
|
||||||
|
|
||||||
if (isEncrypted) {
|
if (isEncrypted) {
|
||||||
|
@ -91,12 +91,12 @@ Currently, synchronisation is possible with Nextcloud and OneDrive (by default)
|
|||||||
|
|
||||||
## Nextcloud synchronisation
|
## Nextcloud synchronisation
|
||||||
|
|
||||||
On the **desktop application** or **mobile application**, go to the config screen and select Nextcloud as the synchronisation target. Then input [the WebDAV URL](https://docs.nextcloud.com/server/9/user_manual/files/access_webdav.html), this is normally `https://example.com/nextcloud/remote.php/dav/files/USERNAME/` (make sure to replace USERNAME by your Nextcloud username), and set the username and password.
|
On the **desktop application** or **mobile application**, go to the config screen and select Nextcloud as the synchronisation target. Then input [the WebDAV URL](https://docs.nextcloud.com/server/9/user_manual/files/access_webdav.html), this is normally `https://example.com/nextcloud/remote.php/dav/files/USERNAME/Joplin` (make sure to create the "Joplin" directory in Nextcloud and to replace USERNAME by your Nextcloud username), and set the username and password.
|
||||||
|
|
||||||
On the **terminal application**, you will need to set the `sync.target` config variable and all the `sync.5.path`, `sync.5.username` and `sync.5.password` config variables to, respectively the Nextcloud WebDAV URL, your username and your password. This can be done from the command line mode using:
|
On the **terminal application**, you will need to set the `sync.target` config variable and all the `sync.5.path`, `sync.5.username` and `sync.5.password` config variables to, respectively the Nextcloud WebDAV URL, your username and your password. This can be done from the command line mode using:
|
||||||
|
|
||||||
:config sync.target 5
|
:config sync.target 5
|
||||||
:config sync.5.path https://example.com/nextcloud/remote.php/dav/files/USERNAME/
|
:config sync.5.path https://example.com/nextcloud/remote.php/dav/files/USERNAME/Joplin
|
||||||
:config sync.5.username YOUR_USERNAME
|
:config sync.5.username YOUR_USERNAME
|
||||||
:config sync.5.password YOUR_PASSWORD
|
:config sync.5.password YOUR_PASSWORD
|
||||||
|
|
||||||
|
@ -507,7 +507,8 @@ class EncryptionService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
isValidHeaderIdentifier(id, ignoreTooLongLength = false) {
|
isValidHeaderIdentifier(id, ignoreTooLongLength = false) {
|
||||||
if (!ignoreTooLongLength && !id || id.length !== 5) return false;
|
if (!id) return false;
|
||||||
|
if (!ignoreTooLongLength && id.length !== 5) return false;
|
||||||
return /JED\d\d/.test(id);
|
return /JED\d\d/.test(id);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -515,7 +516,7 @@ class EncryptionService {
|
|||||||
if (!item) throw new Error('No item');
|
if (!item) throw new Error('No item');
|
||||||
const ItemClass = BaseItem.itemClass(item);
|
const ItemClass = BaseItem.itemClass(item);
|
||||||
if (!ItemClass.encryptionSupported()) return false;
|
if (!ItemClass.encryptionSupported()) return false;
|
||||||
return item.encryption_applied && this.isValidHeaderIdentifier(item.encryption_cipher_text);
|
return item.encryption_applied && this.isValidHeaderIdentifier(item.encryption_cipher_text, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
async fileIsEncrypted(path) {
|
async fileIsEncrypted(path) {
|
||||||
|
@ -297,10 +297,10 @@ sudo ln -s ~/.joplin-bin/bin/joplin /usr/bin/joplin
|
|||||||
<p>One of the goals of Joplin was to avoid being tied to any particular company or service, whether it is Evernote, Google or Microsoft. As such the synchronisation is designed without any hard dependency to any particular service. Most of the synchronisation process is done at an abstract level and access to external services, such as Nextcloud or OneDrive, is done via lightweight drivers. It is easy to support new services by creating simple drivers that provide a filesystem-like interface, i.e. the ability to read, write, delete and list items. It is also simple to switch from one service to another or to even sync to multiple services at once. Each note, notebook, tags, as well as the relation between items is transmitted as plain text files during synchronisation, which means the data can also be moved to a different application, can be easily backed up, inspected, etc.</p>
|
<p>One of the goals of Joplin was to avoid being tied to any particular company or service, whether it is Evernote, Google or Microsoft. As such the synchronisation is designed without any hard dependency to any particular service. Most of the synchronisation process is done at an abstract level and access to external services, such as Nextcloud or OneDrive, is done via lightweight drivers. It is easy to support new services by creating simple drivers that provide a filesystem-like interface, i.e. the ability to read, write, delete and list items. It is also simple to switch from one service to another or to even sync to multiple services at once. Each note, notebook, tags, as well as the relation between items is transmitted as plain text files during synchronisation, which means the data can also be moved to a different application, can be easily backed up, inspected, etc.</p>
|
||||||
<p>Currently, synchronisation is possible with Nextcloud and OneDrive (by default) or the local filesystem. A Dropbox one will also be available once <a href="https://github.com/facebook/react-native/issues/14445">this React Native bug</a> is fixed. To setup synchronisation please follow the instructions below. After that, the application will synchronise in the background whenever it is running, or you can click on "Synchronise" to start a synchronisation manually.</p>
|
<p>Currently, synchronisation is possible with Nextcloud and OneDrive (by default) or the local filesystem. A Dropbox one will also be available once <a href="https://github.com/facebook/react-native/issues/14445">this React Native bug</a> is fixed. To setup synchronisation please follow the instructions below. After that, the application will synchronise in the background whenever it is running, or you can click on "Synchronise" to start a synchronisation manually.</p>
|
||||||
<h2 id="nextcloud-synchronisation">Nextcloud synchronisation</h2>
|
<h2 id="nextcloud-synchronisation">Nextcloud synchronisation</h2>
|
||||||
<p>On the <strong>desktop application</strong> or <strong>mobile application</strong>, go to the config screen and select Nextcloud as the synchronisation target. Then input <a href="https://docs.nextcloud.com/server/9/user_manual/files/access_webdav.html">the WebDAV URL</a>, this is normally <code>https://example.com/nextcloud/remote.php/dav/files/USERNAME/</code> (make sure to replace USERNAME by your Nextcloud username), and set the username and password.</p>
|
<p>On the <strong>desktop application</strong> or <strong>mobile application</strong>, go to the config screen and select Nextcloud as the synchronisation target. Then input <a href="https://docs.nextcloud.com/server/9/user_manual/files/access_webdav.html">the WebDAV URL</a>, this is normally <code>https://example.com/nextcloud/remote.php/dav/files/USERNAME/Joplin</code> (make sure to create the "Joplin" directory in Nextcloud and to replace USERNAME by your Nextcloud username), and set the username and password.</p>
|
||||||
<p>On the <strong>terminal application</strong>, you will need to set the <code>sync.target</code> config variable and all the <code>sync.5.path</code>, <code>sync.5.username</code> and <code>sync.5.password</code> config variables to, respectively the Nextcloud WebDAV URL, your username and your password. This can be done from the command line mode using:</p>
|
<p>On the <strong>terminal application</strong>, you will need to set the <code>sync.target</code> config variable and all the <code>sync.5.path</code>, <code>sync.5.username</code> and <code>sync.5.password</code> config variables to, respectively the Nextcloud WebDAV URL, your username and your password. This can be done from the command line mode using:</p>
|
||||||
<pre><code>:config sync.target 5
|
<pre><code>:config sync.target 5
|
||||||
:config sync.5.path https://example.com/nextcloud/remote.php/dav/files/USERNAME/
|
:config sync.5.path https://example.com/nextcloud/remote.php/dav/files/USERNAME/Joplin
|
||||||
:config sync.5.username YOUR_USERNAME
|
:config sync.5.username YOUR_USERNAME
|
||||||
:config sync.5.password YOUR_PASSWORD
|
:config sync.5.password YOUR_PASSWORD
|
||||||
</code></pre><p>If synchronisation does not work, please consult the logs in the app profile directory - it is often due to a misconfigured URL or password. The log should indicate what the exact issue is.</p>
|
</code></pre><p>If synchronisation does not work, please consult the logs in the app profile directory - it is often due to a misconfigured URL or password. The log should indicate what the exact issue is.</p>
|
||||||
|
Loading…
Reference in New Issue
Block a user