2016-10-11 02:50:55 +00:00
|
|
|
/*
|
2020-01-01 17:00:00 +00:00
|
|
|
* Copyright (C) 2016-2020 Alex Yatskov <alex@foosoft.net>
|
2016-10-11 02:50:55 +00:00
|
|
|
* Author: Alex Yatskov <alex@foosoft.net>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2020-01-01 17:00:31 +00:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2016-10-11 02:50:55 +00:00
|
|
|
*/
|
|
|
|
|
2017-03-03 05:01:49 +00:00
|
|
|
|
2017-08-15 04:43:09 +00:00
|
|
|
/*
|
|
|
|
* AnkiConnect
|
|
|
|
*/
|
|
|
|
|
2016-10-11 02:50:55 +00:00
|
|
|
class AnkiConnect {
|
2017-02-05 19:44:59 +00:00
|
|
|
constructor(server) {
|
|
|
|
this.server = server;
|
2017-02-19 22:18:06 +00:00
|
|
|
this.localVersion = 2;
|
2017-07-10 23:24:31 +00:00
|
|
|
this.remoteVersion = 0;
|
2016-10-11 02:50:55 +00:00
|
|
|
}
|
|
|
|
|
2017-07-10 23:24:31 +00:00
|
|
|
async addNote(note) {
|
|
|
|
await this.checkVersion();
|
|
|
|
return await this.ankiInvoke('addNote', {note});
|
2016-10-11 02:50:55 +00:00
|
|
|
}
|
|
|
|
|
2017-07-10 23:24:31 +00:00
|
|
|
async canAddNotes(notes) {
|
|
|
|
await this.checkVersion();
|
|
|
|
return await this.ankiInvoke('canAddNotes', {notes});
|
2016-10-11 02:50:55 +00:00
|
|
|
}
|
|
|
|
|
2017-07-10 23:24:31 +00:00
|
|
|
async getDeckNames() {
|
|
|
|
await this.checkVersion();
|
|
|
|
return await this.ankiInvoke('deckNames');
|
2016-10-11 02:50:55 +00:00
|
|
|
}
|
|
|
|
|
2017-07-10 23:24:31 +00:00
|
|
|
async getModelNames() {
|
|
|
|
await this.checkVersion();
|
|
|
|
return await this.ankiInvoke('modelNames');
|
2016-10-11 02:50:55 +00:00
|
|
|
}
|
|
|
|
|
2017-07-10 23:24:31 +00:00
|
|
|
async getModelFieldNames(modelName) {
|
|
|
|
await this.checkVersion();
|
|
|
|
return await this.ankiInvoke('modelFieldNames', {modelName});
|
2017-07-02 01:27:49 +00:00
|
|
|
}
|
|
|
|
|
2017-07-10 23:24:31 +00:00
|
|
|
async guiBrowse(query) {
|
|
|
|
await this.checkVersion();
|
|
|
|
return await this.ankiInvoke('guiBrowse', {query});
|
2016-10-11 02:50:55 +00:00
|
|
|
}
|
|
|
|
|
2019-08-15 23:39:58 +00:00
|
|
|
async storeMediaFile(filename, dataBase64) {
|
|
|
|
await this.checkVersion();
|
|
|
|
return await this.ankiInvoke('storeMediaFile', {filename, data: dataBase64});
|
|
|
|
}
|
|
|
|
|
2017-07-10 23:24:31 +00:00
|
|
|
async checkVersion() {
|
|
|
|
if (this.remoteVersion < this.localVersion) {
|
|
|
|
this.remoteVersion = await this.ankiInvoke('version');
|
2017-02-05 19:44:59 +00:00
|
|
|
if (this.remoteVersion < this.localVersion) {
|
2019-10-08 00:46:02 +00:00
|
|
|
throw new Error('Extension and plugin versions incompatible');
|
2016-10-11 02:50:55 +00:00
|
|
|
}
|
2017-07-10 23:24:31 +00:00
|
|
|
}
|
2016-10-11 02:50:55 +00:00
|
|
|
}
|
|
|
|
|
2019-10-10 00:27:05 +00:00
|
|
|
async findNoteIds(notes) {
|
|
|
|
await this.checkVersion();
|
2019-11-27 03:01:54 +00:00
|
|
|
const actions = notes.map((note) => ({
|
2019-10-10 00:27:05 +00:00
|
|
|
action: 'findNotes',
|
|
|
|
params: {
|
|
|
|
query: `deck:"${AnkiConnect.escapeQuery(note.deckName)}" ${AnkiConnect.fieldsToQuery(note.fields)}`
|
|
|
|
}
|
|
|
|
}));
|
|
|
|
return await this.ankiInvoke('multi', {actions});
|
|
|
|
}
|
|
|
|
|
2017-07-10 23:24:31 +00:00
|
|
|
ankiInvoke(action, params) {
|
2017-07-20 04:28:09 +00:00
|
|
|
return requestJson(this.server, 'POST', {action, params, version: this.localVersion});
|
2016-10-11 02:50:55 +00:00
|
|
|
}
|
2019-10-10 00:27:05 +00:00
|
|
|
|
|
|
|
static escapeQuery(text) {
|
|
|
|
return text.replace(/"/g, '');
|
|
|
|
}
|
|
|
|
|
|
|
|
static fieldsToQuery(fields) {
|
|
|
|
const fieldNames = Object.keys(fields);
|
|
|
|
if (fieldNames.length === 0) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
const key = fieldNames[0];
|
|
|
|
return `${key.toLowerCase()}:"${AnkiConnect.escapeQuery(fields[key])}"`;
|
|
|
|
}
|
2016-10-11 02:50:55 +00:00
|
|
|
}
|
2017-08-14 04:11:10 +00:00
|
|
|
|
2017-08-15 04:43:09 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* AnkiNull
|
|
|
|
*/
|
|
|
|
|
2017-08-14 04:11:10 +00:00
|
|
|
class AnkiNull {
|
2019-11-25 19:35:53 +00:00
|
|
|
async addNote() {
|
2017-08-14 04:11:10 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2019-11-25 19:35:53 +00:00
|
|
|
async canAddNotes() {
|
2017-08-14 04:11:10 +00:00
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
async getDeckNames() {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
async getModelNames() {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
2019-11-25 19:35:53 +00:00
|
|
|
async getModelFieldNames() {
|
2017-08-14 04:11:10 +00:00
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
2019-11-25 19:35:53 +00:00
|
|
|
async guiBrowse() {
|
2017-08-14 04:11:10 +00:00
|
|
|
return [];
|
|
|
|
}
|
2019-10-10 00:27:05 +00:00
|
|
|
|
2019-11-25 19:35:53 +00:00
|
|
|
async findNoteIds() {
|
2019-10-10 00:27:05 +00:00
|
|
|
return [];
|
|
|
|
}
|
2017-08-14 04:11:10 +00:00
|
|
|
}
|