2011-08-28 18:01:32 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2011-10-27 15:22:26 +00:00
|
|
|
|
2011-08-28 18:01:32 +00:00
|
|
|
# Copyright (C) 2011 Alex Yatskov
|
|
|
|
#
|
|
|
|
# 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/>.
|
|
|
|
|
|
|
|
|
2012-12-23 22:11:48 +00:00
|
|
|
import aqt
|
2011-08-28 18:01:32 +00:00
|
|
|
import re
|
|
|
|
|
|
|
|
|
|
|
|
class Anki:
|
2012-12-24 03:13:45 +00:00
|
|
|
def addNote(self, deckName, modelName, fields, tags=unicode()):
|
|
|
|
note = self.createNote(fields, deckName, modelName, tags)
|
2012-12-23 22:45:48 +00:00
|
|
|
if not note:
|
2011-08-28 18:01:32 +00:00
|
|
|
return None
|
|
|
|
|
2012-12-24 02:54:05 +00:00
|
|
|
self.collection().addNote(note)
|
|
|
|
self.window().requireReset()
|
2011-08-28 18:01:32 +00:00
|
|
|
|
2012-12-23 22:45:48 +00:00
|
|
|
return note.id
|
2011-08-28 18:01:32 +00:00
|
|
|
|
|
|
|
|
2012-12-23 22:45:48 +00:00
|
|
|
def canAddNote(self, fields):
|
|
|
|
return bool(self.createNote(fields))
|
2011-08-28 18:01:32 +00:00
|
|
|
|
|
|
|
|
2012-12-24 03:13:45 +00:00
|
|
|
def createNote(self, deckName, modelName, fields, tags=unicode()):
|
|
|
|
deck = self.findDeck(deckName)
|
|
|
|
if deck is None:
|
|
|
|
return None
|
|
|
|
|
|
|
|
model = self.findModel(modelName)
|
|
|
|
if model is None:
|
|
|
|
return None
|
2011-08-28 18:01:32 +00:00
|
|
|
|
2012-12-24 03:13:45 +00:00
|
|
|
note = self.collection().newNote()
|
2012-12-24 02:54:05 +00:00
|
|
|
note.tags = re.split('[;,\s]', tags)
|
2012-12-24 03:13:45 +00:00
|
|
|
note.model()['did'] = deck['id']
|
|
|
|
|
2012-12-24 02:54:05 +00:00
|
|
|
for name, value in fields.items():
|
|
|
|
note[name] = value
|
|
|
|
|
|
|
|
return None if note.dumpOrEmpty() else note
|
2011-08-28 18:01:32 +00:00
|
|
|
|
|
|
|
|
2012-12-24 03:13:45 +00:00
|
|
|
def setCurrentModel(self, modelName):
|
|
|
|
#m = self.deck.models.byName(ret.name)
|
|
|
|
#self.deck.conf['curModel'] = m['id']
|
|
|
|
#cdeck = self.deck.decks.current()
|
|
|
|
#cdeck['mid'] = m['id']
|
|
|
|
#self.deck.decks.save(cdeck)
|
|
|
|
#runHook("currentModelChanged")
|
|
|
|
#self.mw.reset()
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
def setCurrentDeck(self, deckName):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
#def browseNote(self, noteId):
|
|
|
|
#browser = ui.dialogs.get('CardList', self.window())
|
|
|
|
#browser.dialog.filterEdit.setText('fid:' + str(noteId))
|
|
|
|
#browser.updateSearch()
|
|
|
|
#browser.onnote()
|
2011-08-28 18:01:32 +00:00
|
|
|
|
|
|
|
|
2012-12-23 22:45:48 +00:00
|
|
|
def window(self):
|
|
|
|
return aqt.mw
|
2011-08-28 18:01:32 +00:00
|
|
|
|
|
|
|
|
2012-12-23 22:45:48 +00:00
|
|
|
def form(self):
|
|
|
|
return self.window().form
|
2011-08-28 18:01:32 +00:00
|
|
|
|
|
|
|
|
2012-12-23 22:45:48 +00:00
|
|
|
def toolsMenu(self):
|
|
|
|
return self.form().menuTools
|
2011-08-28 18:01:32 +00:00
|
|
|
|
|
|
|
|
2012-12-23 22:45:48 +00:00
|
|
|
def collection(self):
|
|
|
|
return self.window().col
|
2011-08-28 18:01:32 +00:00
|
|
|
|
|
|
|
|
2012-12-23 22:45:48 +00:00
|
|
|
def models(self):
|
|
|
|
return self.collection().models
|
2011-08-28 18:01:32 +00:00
|
|
|
|
|
|
|
|
2012-12-24 00:02:00 +00:00
|
|
|
def modelNames(self):
|
|
|
|
return self.models().allNames()
|
|
|
|
|
|
|
|
|
2012-12-24 01:50:49 +00:00
|
|
|
def modelFieldNames(self, model):
|
|
|
|
return [field['name'] for field in model['flds']]
|
2012-12-24 00:02:00 +00:00
|
|
|
|
|
|
|
|
2012-12-24 01:50:49 +00:00
|
|
|
def findModel(self, name):
|
2012-12-24 03:13:45 +00:00
|
|
|
return self.models().byName(name)
|
|
|
|
|
|
|
|
|
|
|
|
def currentModel(self):
|
|
|
|
return self.models().current()
|
2012-12-24 02:11:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
def decks(self):
|
|
|
|
return self.collection().decks
|
|
|
|
|
|
|
|
|
|
|
|
def deckNames(self):
|
|
|
|
return self.decks().allNames()
|
|
|
|
|
|
|
|
|
|
|
|
def findDeck(self, name):
|
2012-12-24 03:13:45 +00:00
|
|
|
return self.decks().byName(name)
|
|
|
|
|
|
|
|
|
|
|
|
def currentDeck(self):
|
|
|
|
return self.decks().current()
|
2012-12-24 02:11:14 +00:00
|
|
|
|