yomichan/ext/bg/js/anki.js

143 lines
3.4 KiB
JavaScript
Raw Normal View History

2016-10-11 02:50:55 +00:00
/*
* Copyright (C) 2016-2020 Yomichan Authors
2016-10-11 02:50:55 +00:00
*
* 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
*/
2020-03-11 02:30:36 +00:00
/* global
* requestJson
*/
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) {
2020-04-12 16:20:02 +00:00
this._server = server;
this._localVersion = 2;
this._remoteVersion = 0;
2016-10-11 02:50:55 +00:00
}
2017-07-10 23:24:31 +00:00
async addNote(note) {
2020-04-12 16:20:02 +00:00
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) {
2020-04-12 16:20:02 +00:00
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() {
2020-04-12 16:20:02 +00:00
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() {
2020-04-12 16:20:02 +00:00
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) {
2020-04-12 16:20:02 +00:00
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) {
2020-04-12 16:20:02 +00:00
await this._checkVersion();
return await this._ankiInvoke('guiBrowse', {query});
2016-10-11 02:50:55 +00:00
}
async storeMediaFile(filename, dataBase64) {
2020-04-12 16:20:02 +00:00
await this._checkVersion();
return await this._ankiInvoke('storeMediaFile', {filename, data: dataBase64});
2016-10-11 02:50:55 +00:00
}
2019-10-10 00:27:05 +00:00
async findNoteIds(notes) {
2020-04-12 16:20:02 +00:00
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: {
2020-04-12 16:20:02 +00:00
query: `deck:"${this._escapeQuery(note.deckName)}" ${this._fieldsToQuery(note.fields)}`
2019-10-10 00:27:05 +00:00
}
}));
2020-04-12 16:20:02 +00:00
return await this._ankiInvoke('multi', {actions});
}
// Private
async _checkVersion() {
if (this._remoteVersion < this._localVersion) {
this._remoteVersion = await this._ankiInvoke('version');
if (this._remoteVersion < this._localVersion) {
throw new Error('Extension and plugin versions incompatible');
}
}
2019-10-10 00:27:05 +00:00
}
2020-04-12 16:20:02 +00:00
_ankiInvoke(action, params) {
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
2020-04-12 16:20:02 +00:00
_escapeQuery(text) {
2019-10-10 00:27:05 +00:00
return text.replace(/"/g, '');
}
2020-04-12 16:20:02 +00:00
_fieldsToQuery(fields) {
2019-10-10 00:27:05 +00:00
const fieldNames = Object.keys(fields);
if (fieldNames.length === 0) {
return '';
}
const key = fieldNames[0];
2020-04-12 16:20:02 +00:00
return `${key.toLowerCase()}:"${this._escapeQuery(fields[key])}"`;
2019-10-10 00:27:05 +00:00
}
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
}