yomichan/ext/bg/js/anki.js

110 lines
2.6 KiB
JavaScript
Raw Normal View History

2016-10-11 02:50:55 +00:00
/*
* Copyright (C) 2016 Alex Yatskov <alex@foosoft.net>
* 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
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
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
}
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) {
2017-09-23 02:39:05 +00:00
throw '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
}
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
}
}
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 {
async addNote(note) {
return null;
}
async canAddNotes(notes) {
return [];
}
async getDeckNames() {
return [];
}
async getModelNames() {
return [];
}
async getModelFieldNames(modelName) {
return [];
}
async guiBrowse(query) {
return [];
}
}