2021-01-18 06:15:48 +00:00
# Copyright 2016-2021 Alex Yatskov
2016-05-21 22:10:12 +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
# along with this program. If not, see <http://www.gnu.org/licenses/>.
2022-04-13 23:42:13 +00:00
import aqt
anki_version = tuple ( int ( segment ) for segment in aqt . appVersion . split ( " . " ) )
if anki_version < ( 2 , 1 , 45 ) :
raise Exception ( " Minimum Anki version supported: 2.1.45 " )
2017-08-22 07:53:35 +00:00
import base64
2021-04-12 04:26:03 +00:00
import glob
2016-07-17 05:01:23 +00:00
import hashlib
2017-07-04 19:35:04 +00:00
import inspect
2016-05-21 22:10:12 +00:00
import json
2017-08-28 20:15:42 +00:00
import os
2017-01-30 01:34:18 +00:00
import os . path
2022-04-20 17:30:20 +00:00
import platform
2017-08-21 14:10:57 +00:00
import re
2020-01-05 23:42:08 +00:00
import time
import unicodedata
2017-02-19 20:46:40 +00:00
2020-01-05 23:42:08 +00:00
import anki
2020-03-17 05:29:49 +00:00
import anki . exporting
import anki . storage
2021-03-05 04:06:25 +00:00
from anki . cards import Card
2021-05-07 02:11:03 +00:00
from anki . consts import MODEL_CLOZE
2020-03-17 05:29:49 +00:00
from anki . exporting import AnkiPackageExporter
2020-05-01 16:19:47 +00:00
from anki . importing import AnkiPackageImporter
2021-03-05 04:06:25 +00:00
from anki . notes import Note
2022-04-13 23:42:13 +00:00
from anki . errors import NotFoundError
2022-04-12 22:09:04 +00:00
from aqt . qt import Qt , QTimer , QMessageBox , QCheckBox
2017-02-19 20:46:40 +00:00
2022-04-20 22:00:24 +00:00
from . web import format_exception_reply , format_success_reply
2022-03-30 19:26:26 +00:00
from . edit import Edit
2020-01-06 01:41:34 +00:00
from . import web , util
2016-05-21 22:10:12 +00:00
2017-02-19 20:07:10 +00:00
#
2018-05-07 00:52:24 +00:00
# AnkiConnect
2016-05-21 22:10:12 +00:00
#
2018-05-06 19:59:31 +00:00
class AnkiConnect :
def __init__ ( self ) :
2018-06-30 18:23:13 +00:00
self . log = None
2022-03-30 18:43:31 +00:00
self . timer = None
self . server = web . WebServer ( self . handler )
def initLogging ( self ) :
2020-01-05 23:42:08 +00:00
logPath = util . setting ( ' apiLogPath ' )
if logPath is not None :
self . log = open ( logPath , ' w ' )
2018-05-06 19:59:31 +00:00
2022-03-30 18:43:31 +00:00
def startWebServer ( self ) :
2018-05-06 19:59:31 +00:00
try :
self . server . listen ( )
2022-03-30 18:43:31 +00:00
# only keep reference to prevent garbage collection
2018-05-06 19:59:31 +00:00
self . timer = QTimer ( )
self . timer . timeout . connect ( self . advance )
2020-01-05 23:42:08 +00:00
self . timer . start ( util . setting ( ' apiPollInterval ' ) )
2018-05-06 19:59:31 +00:00
except :
QMessageBox . critical (
self . window ( ) ,
' AnkiConnect ' ,
2020-01-05 23:42:08 +00:00
' Failed to listen on port {} . \n Make sure it is available and is not in use. ' . format ( util . setting ( ' webBindPort ' ) )
2018-05-06 19:59:31 +00:00
)
2021-12-27 06:21:21 +00:00
def save_model ( self , models , ankiModel ) :
2022-04-13 23:42:13 +00:00
models . update_dict ( ankiModel )
2018-05-06 19:59:31 +00:00
2020-01-05 23:42:08 +00:00
def logEvent ( self , name , data ) :
if self . log is not None :
self . log . write ( ' [ {} ] \n ' . format ( name ) )
json . dump ( data , self . log , indent = 4 , sort_keys = True )
self . log . write ( ' \n \n ' )
2020-01-06 00:24:20 +00:00
self . log . flush ( )
2020-01-05 23:42:08 +00:00
2018-05-06 19:59:31 +00:00
def advance ( self ) :
self . server . advance ( )
def handler ( self , request ) :
2020-01-05 23:42:08 +00:00
self . logEvent ( ' request ' , request )
2018-06-30 18:23:13 +00:00
2018-05-06 19:59:31 +00:00
name = request . get ( ' action ' , ' ' )
version = request . get ( ' version ' , 4 )
params = request . get ( ' params ' , { } )
2020-01-06 00:24:20 +00:00
key = request . get ( ' key ' )
2018-05-06 19:59:31 +00:00
try :
2021-05-08 03:33:06 +00:00
if key != util . setting ( ' apiKey ' ) and name != ' requestPermission ' :
2020-01-06 00:24:20 +00:00
raise Exception ( ' valid api key must be provided ' )
2018-05-06 19:59:31 +00:00
method = None
2020-01-06 00:24:20 +00:00
2018-05-06 19:59:31 +00:00
for methodName , methodInst in inspect . getmembers ( self , predicate = inspect . ismethod ) :
apiVersionLast = 0
apiNameLast = None
if getattr ( methodInst , ' api ' , False ) :
for apiVersion , apiName in getattr ( methodInst , ' versions ' , [ ] ) :
if apiVersionLast < apiVersion < = version :
apiVersionLast = apiVersion
apiNameLast = apiName
if apiNameLast is None and apiVersionLast == 0 :
apiNameLast = methodName
if apiNameLast is not None and apiNameLast == name :
method = methodInst
break
if method is None :
raise Exception ( ' unsupported action ' )
2019-06-01 18:06:08 +00:00
2022-04-20 22:00:24 +00:00
api_return_value = methodInst ( * * params )
reply = format_success_reply ( version , api_return_value )
2019-06-01 18:06:08 +00:00
2018-05-06 19:59:31 +00:00
except Exception as e :
2022-04-20 22:00:24 +00:00
reply = format_exception_reply ( version , e )
2018-05-06 19:59:31 +00:00
2020-01-05 23:42:08 +00:00
self . logEvent ( ' reply ' , reply )
2018-06-30 18:23:13 +00:00
return reply
2018-05-06 19:59:31 +00:00
def window ( self ) :
return aqt . mw
def reviewer ( self ) :
2018-05-07 00:52:24 +00:00
reviewer = self . window ( ) . reviewer
if reviewer is None :
raise Exception ( ' reviewer is not available ' )
2021-01-18 06:13:27 +00:00
return reviewer
2018-05-06 19:59:31 +00:00
def collection ( self ) :
2018-05-07 00:52:24 +00:00
collection = self . window ( ) . col
if collection is None :
raise Exception ( ' collection is not available ' )
2021-01-18 06:13:27 +00:00
return collection
2018-05-06 19:59:31 +00:00
2018-05-07 05:13:21 +00:00
def decks ( self ) :
decks = self . collection ( ) . decks
if decks is None :
raise Exception ( ' decks are not available ' )
2021-01-18 06:13:27 +00:00
return decks
2018-05-07 05:13:21 +00:00
2018-05-06 19:59:31 +00:00
def scheduler ( self ) :
2018-05-07 00:52:24 +00:00
scheduler = self . collection ( ) . sched
if scheduler is None :
raise Exception ( ' scheduler is not available ' )
2021-01-18 06:13:27 +00:00
return scheduler
2018-05-06 19:59:31 +00:00
2018-05-07 21:18:20 +00:00
def database ( self ) :
database = self . collection ( ) . db
if database is None :
raise Exception ( ' database is not available ' )
2021-01-18 06:13:27 +00:00
return database
2018-05-07 21:18:20 +00:00
2018-05-06 19:59:31 +00:00
def media ( self ) :
2018-05-07 00:52:24 +00:00
media = self . collection ( ) . media
if media is None :
raise Exception ( ' media is not available ' )
2021-01-18 06:13:27 +00:00
return media
2018-05-06 19:59:31 +00:00
2018-05-07 00:52:24 +00:00
def startEditing ( self ) :
self . window ( ) . requireReset ( )
def stopEditing ( self ) :
if self . collection ( ) is not None :
self . window ( ) . maybeReset ( )
def createNote ( self , note ) :
2018-05-06 19:59:31 +00:00
collection = self . collection ( )
2018-05-07 00:52:24 +00:00
model = collection . models . byName ( note [ ' modelName ' ] )
2018-05-06 19:59:31 +00:00
if model is None :
2018-05-07 00:52:24 +00:00
raise Exception ( ' model was not found: {} ' . format ( note [ ' modelName ' ] ) )
2018-05-06 19:59:31 +00:00
2018-05-07 00:52:24 +00:00
deck = collection . decks . byName ( note [ ' deckName ' ] )
2018-05-06 19:59:31 +00:00
if deck is None :
2018-05-07 00:52:24 +00:00
raise Exception ( ' deck was not found: {} ' . format ( note [ ' deckName ' ] ) )
2018-05-06 19:59:31 +00:00
2018-05-07 00:52:24 +00:00
ankiNote = anki . notes . Note ( collection , model )
ankiNote . model ( ) [ ' did ' ] = deck [ ' id ' ]
2020-05-02 21:18:31 +00:00
if ' tags ' in note :
ankiNote . tags = note [ ' tags ' ]
2018-05-06 19:59:31 +00:00
2018-05-07 00:52:24 +00:00
for name , value in note [ ' fields ' ] . items ( ) :
2021-03-14 00:10:58 +00:00
for ankiName in ankiNote . keys ( ) :
if name . lower ( ) == ankiName . lower ( ) :
ankiNote [ ankiName ] = value
break
2018-05-06 19:59:31 +00:00
2018-11-07 20:05:02 +00:00
allowDuplicate = False
2020-04-23 23:39:11 +00:00
duplicateScope = None
2020-11-02 00:14:30 +00:00
duplicateScopeDeckName = None
duplicateScopeCheckChildren = False
2021-07-13 02:46:22 +00:00
duplicateScopeCheckAllModels = False
2021-01-18 06:13:27 +00:00
2018-11-07 20:05:02 +00:00
if ' options ' in note :
2021-07-13 02:46:22 +00:00
options = note [ ' options ' ]
if ' allowDuplicate ' in options :
allowDuplicate = options [ ' allowDuplicate ' ]
2021-01-18 06:13:27 +00:00
if type ( allowDuplicate ) is not bool :
raise Exception ( ' option parameter " allowDuplicate " must be boolean ' )
2021-07-13 02:46:22 +00:00
if ' duplicateScope ' in options :
duplicateScope = options [ ' duplicateScope ' ]
if ' duplicateScopeOptions ' in options :
duplicateScopeOptions = options [ ' duplicateScopeOptions ' ]
2021-01-18 06:13:27 +00:00
if ' deckName ' in duplicateScopeOptions :
duplicateScopeDeckName = duplicateScopeOptions [ ' deckName ' ]
if ' checkChildren ' in duplicateScopeOptions :
duplicateScopeCheckChildren = duplicateScopeOptions [ ' checkChildren ' ]
if type ( duplicateScopeCheckChildren ) is not bool :
raise Exception ( ' option parameter " duplicateScopeOptions.checkChildren " must be boolean ' )
2021-07-13 02:46:22 +00:00
if ' checkAllModels ' in duplicateScopeOptions :
duplicateScopeCheckAllModels = duplicateScopeOptions [ ' checkAllModels ' ]
if type ( duplicateScopeCheckAllModels ) is not bool :
raise Exception ( ' option parameter " duplicateScopeOptions.checkAllModels " must be boolean ' )
2021-01-18 06:13:27 +00:00
duplicateOrEmpty = self . isNoteDuplicateOrEmptyInScope (
ankiNote ,
deck ,
collection ,
duplicateScope ,
duplicateScopeDeckName ,
2021-07-13 02:46:22 +00:00
duplicateScopeCheckChildren ,
duplicateScopeCheckAllModels
2021-01-18 06:13:27 +00:00
)
2018-05-06 19:59:31 +00:00
if duplicateOrEmpty == 1 :
2018-05-07 00:52:24 +00:00
raise Exception ( ' cannot create note because it is empty ' )
2018-05-06 19:59:31 +00:00
elif duplicateOrEmpty == 2 :
2021-01-18 06:13:27 +00:00
if allowDuplicate :
return ankiNote
2018-06-20 16:52:46 +00:00
raise Exception ( ' cannot create note because it is a duplicate ' )
2020-12-06 05:23:03 +00:00
elif duplicateOrEmpty == 0 :
2018-05-07 00:52:24 +00:00
return ankiNote
else :
raise Exception ( ' cannot create note for unknown reason ' )
2018-05-06 19:59:31 +00:00
2021-01-18 06:13:27 +00:00
2021-07-13 02:46:22 +00:00
def isNoteDuplicateOrEmptyInScope (
self ,
note ,
deck ,
collection ,
duplicateScope ,
duplicateScopeDeckName ,
duplicateScopeCheckChildren ,
duplicateScopeCheckAllModels
) :
# Returns: 1 if first is empty, 2 if first is a duplicate, 0 otherwise.
# note.dupeOrEmpty returns if a note is a global duplicate with the specific model.
# This is used as the default check, and the rest of this function is manually
# checking if the note is a duplicate with additional options.
if duplicateScope != ' deck ' and not duplicateScopeCheckAllModels :
2021-01-18 06:13:27 +00:00
return note . dupeOrEmpty ( ) or 0
2020-02-02 21:45:05 +00:00
2021-07-13 02:46:22 +00:00
# Primary field for uniqueness
2020-05-09 00:16:05 +00:00
val = note . fields [ 0 ]
2020-12-06 05:23:03 +00:00
if not val . strip ( ) :
return 1
2021-01-18 06:13:27 +00:00
csum = anki . utils . fieldChecksum ( val )
2021-07-13 02:46:22 +00:00
# Create dictionary of deck ids
dids = None
if duplicateScope == ' deck ' :
did = deck [ ' id ' ]
if duplicateScopeDeckName is not None :
deck2 = collection . decks . byName ( duplicateScopeDeckName )
if deck2 is None :
# Invalid deck, so cannot be duplicate
return 0
did = deck2 [ ' id ' ]
dids = { did : True }
if duplicateScopeCheckChildren :
for kv in collection . decks . children ( did ) :
dids [ kv [ 1 ] ] = True
# Build query
query = ' select id from notes where csum=? '
queryArgs = [ csum ]
if note . id :
query + = ' and id!=? '
queryArgs . append ( note . id )
if not duplicateScopeCheckAllModels :
query + = ' and mid=? '
queryArgs . append ( note . mid )
# Search
for noteId in note . col . db . list ( query , * queryArgs ) :
if dids is None :
# Duplicate note exists in the collection
return 2
# Validate that a card exists in one of the specified decks
for cardDeckId in note . col . db . list ( ' select did from cards where nid=? ' , noteId ) :
2020-11-02 00:14:30 +00:00
if cardDeckId in dids :
return 2
2021-01-18 06:13:27 +00:00
2021-07-13 02:46:22 +00:00
# Not a duplicate
2020-12-06 05:23:03 +00:00
return 0
2020-02-02 21:45:05 +00:00
2021-03-05 04:06:25 +00:00
def getCard ( self , card_id : int ) - > Card :
try :
return self . collection ( ) . getCard ( card_id )
except NotFoundError :
raise NotFoundError ( ' Card was not found: {} ' . format ( card_id ) )
def getNote ( self , note_id : int ) - > Note :
try :
return self . collection ( ) . getNote ( note_id )
except NotFoundError :
raise NotFoundError ( ' Note was not found: {} ' . format ( note_id ) )
2018-05-07 02:11:54 +00:00
2022-05-03 21:59:33 +00:00
def deckStatsToJson ( self , due_tree ) :
2022-05-23 17:37:18 +00:00
deckStats = { ' deck_id ' : due_tree . deck_id ,
' name ' : due_tree . name ,
' new_count ' : due_tree . new_count ,
' learn_count ' : due_tree . learn_count ,
' review_count ' : due_tree . review_count }
if anki_version > ( 2 , 1 , 46 ) :
# total_in_deck is not supported on lower Anki versions
deckStats [ ' total_in_deck ' ] = due_tree . total_in_deck
return deckStats
2022-05-03 21:59:33 +00:00
def collectDeckTreeChildren ( self , parent_node ) :
allNodes = { parent_node . deck_id : parent_node }
for child in parent_node . children :
for deckId , childNode in self . collectDeckTreeChildren ( child ) . items ( ) :
allNodes [ deckId ] = childNode
return allNodes
2018-05-07 01:45:56 +00:00
#
# Miscellaneous
#
2020-01-05 23:42:08 +00:00
@util.api ( )
2018-05-07 01:45:56 +00:00
def version ( self ) :
2020-01-05 23:42:08 +00:00
return util . setting ( ' apiVersion ' )
2018-05-07 01:45:56 +00:00
2022-04-14 04:00:52 +00:00
2021-05-08 03:33:06 +00:00
@util.api ( )
def requestPermission ( self , origin , allowed ) :
2022-04-14 04:00:52 +00:00
results = {
2021-05-08 03:33:06 +00:00
" permission " : " denied " ,
2022-04-14 04:00:52 +00:00
}
2021-07-14 00:55:22 +00:00
2022-04-14 04:00:52 +00:00
if allowed :
2021-05-08 03:33:06 +00:00
results = {
2022-04-14 04:00:52 +00:00
" permission " : " granted " ,
" requireApikey " : bool ( util . setting ( ' apiKey ' ) ) ,
" version " : util . setting ( ' apiVersion ' )
2021-05-08 03:33:06 +00:00
}
2022-04-14 04:00:52 +00:00
elif origin in util . setting ( ' ignoreOriginList ' ) :
pass # defaults to denied
else : # prompt the user
msg = QMessageBox ( None )
msg . setWindowTitle ( " A website wants to access to Anki " )
msg . setText ( ' " {} " requests permission to use Anki through AnkiConnect. Do you want to give it access? ' . format ( origin ) )
msg . setInformativeText ( " By granting permission, you ' ll allow the website to modify your collection on your behalf, including the execution of destructive actions such as deck deletion. " )
msg . setWindowIcon ( self . window ( ) . windowIcon ( ) )
msg . setIcon ( QMessageBox . Question )
msg . setStandardButtons ( QMessageBox . Yes | QMessageBox . No )
msg . setDefaultButton ( QMessageBox . No )
msg . setCheckBox ( QCheckBox ( text = ' Ignore further requests from " {} " ' . format ( origin ) , parent = msg ) )
2022-04-12 22:09:04 +00:00
msg . setWindowFlags ( Qt . WindowStaysOnTopHint )
2022-04-14 04:00:52 +00:00
pressedButton = msg . exec_ ( )
if pressedButton == QMessageBox . Yes :
config = aqt . mw . addonManager . getConfig ( __name__ )
config [ " webCorsOriginList " ] = util . setting ( ' webCorsOriginList ' )
config [ " webCorsOriginList " ] . append ( origin )
aqt . mw . addonManager . writeConfig ( __name__ , config )
results = {
" permission " : " granted " ,
" requireApikey " : bool ( util . setting ( ' apiKey ' ) ) ,
" version " : util . setting ( ' apiVersion ' )
}
# if the origin isn't an empty string, the user clicks "No", and the ignore box is checked
elif origin and pressedButton == QMessageBox . No and msg . checkBox ( ) . isChecked ( ) :
config = aqt . mw . addonManager . getConfig ( __name__ )
config [ " ignoreOriginList " ] = util . setting ( ' ignoreOriginList ' )
config [ " ignoreOriginList " ] . append ( origin )
aqt . mw . addonManager . writeConfig ( __name__ , config )
# else defaults to denied
2021-05-08 03:33:06 +00:00
return results
2021-01-18 06:13:27 +00:00
2020-05-01 14:24:51 +00:00
@util.api ( )
def getProfiles ( self ) :
return self . window ( ) . pm . profiles ( )
2018-05-07 01:45:56 +00:00
2021-01-18 06:13:27 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2018-12-01 16:13:38 +00:00
def loadProfile ( self , name ) :
2018-12-02 03:42:56 +00:00
if name not in self . window ( ) . pm . profiles ( ) :
return False
2021-01-18 06:13:27 +00:00
if self . window ( ) . isVisible ( ) :
2018-12-01 16:13:38 +00:00
cur_profile = self . window ( ) . pm . name
if cur_profile != name :
self . window ( ) . unloadProfileAndShowProfileManager ( )
2021-02-08 01:40:44 +00:00
def waiter ( ) :
# This function waits until main window is closed
# It's needed cause sync can take quite some time
# And if we call loadProfile until sync is ended things will go wrong
if self . window ( ) . isVisible ( ) :
QTimer . singleShot ( 1000 , waiter )
else :
self . loadProfile ( name )
waiter ( )
2021-01-18 06:13:27 +00:00
else :
self . window ( ) . pm . load ( name )
self . window ( ) . loadProfile ( )
self . window ( ) . profileDiag . closeWithoutQuitting ( )
2018-12-02 03:42:56 +00:00
return True
2019-03-07 18:19:35 +00:00
2018-12-01 16:13:38 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2018-05-07 01:45:56 +00:00
def sync ( self ) :
2018-05-07 18:02:51 +00:00
self . window ( ) . onSync ( )
2018-05-07 01:45:56 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2018-05-07 01:45:56 +00:00
def multi ( self , actions ) :
2018-07-29 08:11:50 +00:00
return list ( map ( self . handler , actions ) )
2018-05-07 01:45:56 +00:00
2018-05-06 19:59:31 +00:00
2020-04-19 01:16:52 +00:00
@util.api ( )
def getNumCardsReviewedToday ( self ) :
return self . database ( ) . scalar ( ' select count() from revlog where id > ? ' , ( self . scheduler ( ) . dayCutoff - 86400 ) * 1000 )
2020-04-22 01:22:10 +00:00
2021-03-06 17:58:40 +00:00
@util.api ( )
def getNumCardsReviewedByDay ( self ) :
return self . database ( ) . all ( ' select date(id/1000 - ?, " unixepoch " , " localtime " ) as day, count() from revlog group by day order by day desc ' ,
int ( time . strftime ( " % H " , time . localtime ( self . scheduler ( ) . dayCutoff ) ) ) * 3600 )
2020-04-19 01:16:52 +00:00
2020-05-03 19:06:43 +00:00
@util.api ( )
2020-05-08 01:49:48 +00:00
def getCollectionStatsHTML ( self , wholeCollection = True ) :
stats = self . collection ( ) . stats ( )
stats . wholeCollection = wholeCollection
return stats . report ( )
2020-05-03 19:06:43 +00:00
2018-05-07 02:11:54 +00:00
#
# Decks
#
2020-01-05 23:42:08 +00:00
@util.api ( )
2018-05-07 02:11:54 +00:00
def deckNames ( self ) :
2018-05-07 05:14:18 +00:00
return self . decks ( ) . allNames ( )
2018-05-07 02:11:54 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2018-05-07 02:11:54 +00:00
def deckNamesAndIds ( self ) :
decks = { }
for deck in self . deckNames ( ) :
2018-05-07 18:02:51 +00:00
decks [ deck ] = self . decks ( ) . id ( deck )
2018-05-07 02:11:54 +00:00
return decks
2020-01-05 23:42:08 +00:00
@util.api ( )
2018-05-07 02:11:54 +00:00
def getDecks ( self , cards ) :
decks = { }
for card in cards :
2018-05-07 21:18:20 +00:00
did = self . database ( ) . scalar ( ' select did from cards where id=? ' , card )
deck = self . decks ( ) . get ( did ) [ ' name ' ]
2018-05-07 02:11:54 +00:00
if deck in decks :
decks [ deck ] . append ( card )
else :
decks [ deck ] = [ card ]
return decks
2020-01-05 23:42:08 +00:00
@util.api ( )
2018-05-07 02:11:54 +00:00
def createDeck ( self , deck ) :
2018-05-07 21:18:20 +00:00
try :
self . startEditing ( )
did = self . decks ( ) . id ( deck )
finally :
self . stopEditing ( )
2018-05-07 02:11:54 +00:00
2018-05-07 21:18:20 +00:00
return did
2018-05-07 02:11:54 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2018-05-07 02:11:54 +00:00
def changeDeck ( self , cards , deck ) :
2018-05-09 01:47:45 +00:00
self . startEditing ( )
2018-05-07 02:11:54 +00:00
2018-05-09 01:47:45 +00:00
did = self . collection ( ) . decks . id ( deck )
mod = anki . utils . intTime ( )
usn = self . collection ( ) . usn ( )
2018-05-07 02:11:54 +00:00
2018-05-09 01:47:45 +00:00
# normal cards
scids = anki . utils . ids2str ( cards )
# remove any cards from filtered deck first
self . collection ( ) . sched . remFromDyn ( cards )
2018-05-07 02:11:54 +00:00
2018-05-09 01:47:45 +00:00
# then move into new deck
self . collection ( ) . db . execute ( ' update cards set usn=?, mod=?, did=? where id in ' + scids , usn , mod , did )
self . stopEditing ( )
2018-05-07 02:11:54 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2018-05-07 02:11:54 +00:00
def deleteDecks ( self , decks , cardsToo = False ) :
2022-03-30 18:32:39 +00:00
if not cardsToo :
# since f592672fa952260655881a75a2e3c921b2e23857 (2.1.28)
# (see anki$ git log "-Gassert cardsToo")
# you can't delete decks without deleting cards as well.
# however, since 62c23c6816adf912776b9378c008a52bb50b2e8d (2.1.45)
# passing cardsToo to `rem` (long deprecated) won't raise an error!
# this is dangerous, so let's raise our own exception
2022-04-13 23:42:13 +00:00
raise Exception ( " Since Anki 2.1.28 it ' s not possible "
" to delete decks without deleting cards as well " )
2018-05-07 21:18:20 +00:00
try :
self . startEditing ( )
decks = filter ( lambda d : d in self . deckNames ( ) , decks )
for deck in decks :
did = self . decks ( ) . id ( deck )
2022-03-30 18:32:39 +00:00
self . decks ( ) . rem ( did , cardsToo = cardsToo )
2018-05-07 21:18:20 +00:00
finally :
self . stopEditing ( )
2018-05-07 02:11:54 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2018-05-07 02:11:54 +00:00
def getDeckConfig ( self , deck ) :
2021-01-18 06:13:27 +00:00
if deck not in self . deckNames ( ) :
2018-05-07 02:11:54 +00:00
return False
collection = self . collection ( )
did = collection . decks . id ( deck )
return collection . decks . confForDid ( did )
2020-01-05 23:42:08 +00:00
@util.api ( )
2018-05-07 02:11:54 +00:00
def saveDeckConfig ( self , config ) :
collection = self . collection ( )
config [ ' id ' ] = str ( config [ ' id ' ] )
config [ ' mod ' ] = anki . utils . intTime ( )
config [ ' usn ' ] = collection . usn ( )
2021-07-14 00:55:22 +00:00
if int ( config [ ' id ' ] ) not in [ c [ ' id ' ] for c in collection . decks . all_config ( ) ] :
return False
try :
collection . decks . save ( config )
collection . decks . updateConf ( config )
except :
2018-05-07 02:11:54 +00:00
return False
return True
2020-01-05 23:42:08 +00:00
@util.api ( )
2018-05-07 02:11:54 +00:00
def setDeckConfigId ( self , decks , configId ) :
2021-07-15 01:22:10 +00:00
configId = int ( configId )
2018-05-07 02:11:54 +00:00
for deck in decks :
if not deck in self . deckNames ( ) :
return False
collection = self . collection ( )
for deck in decks :
2021-07-15 01:22:10 +00:00
try :
did = str ( collection . decks . id ( deck ) )
deck_dict = aqt . mw . col . decks . decks [ did ]
deck_dict [ ' conf ' ] = configId
collection . decks . save ( deck_dict )
except :
return False
2018-05-07 02:11:54 +00:00
return True
2020-01-05 23:42:08 +00:00
@util.api ( )
2018-05-07 02:11:54 +00:00
def cloneDeckConfigId ( self , name , cloneFrom = ' 1 ' ) :
2021-07-15 01:22:10 +00:00
configId = int ( cloneFrom )
collection = self . collection ( )
if configId not in [ c [ ' id ' ] for c in collection . decks . all_config ( ) ] :
2018-05-07 02:11:54 +00:00
return False
2021-07-15 01:22:10 +00:00
config = collection . decks . getConf ( configId )
return collection . decks . confId ( name , config )
2018-05-07 02:11:54 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2018-05-07 02:11:54 +00:00
def removeDeckConfigId ( self , configId ) :
collection = self . collection ( )
2021-07-15 01:22:10 +00:00
if int ( configId ) not in [ c [ ' id ' ] for c in collection . decks . all_config ( ) ] :
2018-05-07 02:11:54 +00:00
return False
collection . decks . remConf ( configId )
return True
2022-05-03 21:59:33 +00:00
@util.api ( )
def getDeckStats ( self , decks ) :
collection = self . collection ( )
scheduler = self . scheduler ( )
responseDict = { }
deckIds = list ( map ( lambda d : collection . decks . id ( d ) , decks ) )
allDeckNodes = self . collectDeckTreeChildren ( scheduler . deck_due_tree ( ) )
for deckId , deckNode in allDeckNodes . items ( ) :
if deckId in deckIds :
responseDict [ deckId ] = self . deckStatsToJson ( deckNode )
return responseDict
2018-05-07 02:11:54 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2021-05-22 19:21:12 +00:00
def storeMediaFile ( self , filename , data = None , path = None , url = None , skipHash = None , deleteExisting = True ) :
if not ( data or path or url ) :
raise Exception ( ' You must provide a " data " , " path " , or " url " field. ' )
if data :
2021-02-20 18:04:25 +00:00
mediaData = base64 . b64decode ( data )
2020-12-12 16:41:01 +00:00
elif path :
2020-12-08 02:50:37 +00:00
with open ( path , ' rb ' ) as f :
2021-02-20 18:04:25 +00:00
mediaData = f . read ( )
2020-03-13 23:36:17 +00:00
elif url :
2021-02-20 18:04:25 +00:00
mediaData = util . download ( url )
2017-08-22 07:53:35 +00:00
2021-02-20 18:04:25 +00:00
if skipHash is None :
skip = False
else :
m = hashlib . md5 ( )
2021-02-27 05:16:39 +00:00
m . update ( mediaData )
2021-02-20 18:04:25 +00:00
skip = skipHash == m . hexdigest ( )
if skip :
return None
2022-06-06 08:17:22 +00:00
if deleteExisting :
self . deleteMediaFile ( filename )
2021-02-20 18:04:25 +00:00
return self . media ( ) . writeData ( filename , mediaData )
2020-01-05 23:42:08 +00:00
@util.api ( )
2017-08-22 19:05:12 +00:00
def retrieveMediaFile ( self , filename ) :
filename = os . path . basename ( filename )
2020-01-05 23:42:08 +00:00
filename = unicodedata . normalize ( ' NFC ' , filename )
2017-08-22 19:05:12 +00:00
filename = self . media ( ) . stripIllegal ( filename )
2017-08-22 07:53:35 +00:00
2017-08-22 19:05:12 +00:00
path = os . path . join ( self . media ( ) . dir ( ) , filename )
if os . path . exists ( path ) :
with open ( path , ' rb ' ) as file :
return base64 . b64encode ( file . read ( ) ) . decode ( ' ascii ' )
2017-08-22 07:53:35 +00:00
return False
2021-04-12 04:26:03 +00:00
@util.api ( )
def getMediaFilesNames ( self , pattern = ' * ' ) :
path = os . path . join ( self . media ( ) . dir ( ) , pattern )
return [ os . path . basename ( p ) for p in glob . glob ( path ) ]
2020-01-05 23:42:08 +00:00
@util.api ( )
2017-08-22 19:05:12 +00:00
def deleteMediaFile ( self , filename ) :
2020-04-08 04:18:48 +00:00
try :
self . media ( ) . syncDelete ( filename )
except AttributeError :
self . media ( ) . trash_files ( [ filename ] )
2017-08-22 07:53:35 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2018-05-06 19:59:31 +00:00
def addNote ( self , note ) :
2018-05-07 00:52:24 +00:00
ankiNote = self . createNote ( note )
2016-05-21 22:34:09 +00:00
2021-06-21 03:35:09 +00:00
self . addMediaFromNote ( ankiNote , note )
2018-05-07 00:52:24 +00:00
collection = self . collection ( )
2016-07-17 16:38:33 +00:00
self . startEditing ( )
2019-03-05 02:53:57 +00:00
nCardsAdded = collection . addNote ( ankiNote )
if nCardsAdded < 1 :
raise Exception ( ' The field values you have provided would make an empty question on all cards. ' )
2016-05-21 22:34:09 +00:00
collection . autosave ( )
2016-07-17 16:38:33 +00:00
self . stopEditing ( )
2016-05-21 22:34:09 +00:00
2018-05-07 00:52:24 +00:00
return ankiNote . id
2016-05-21 22:10:12 +00:00
2021-06-21 03:35:09 +00:00
def addMediaFromNote ( self , ankiNote , note ) :
audioObjectOrList = note . get ( ' audio ' )
self . addMedia ( ankiNote , audioObjectOrList , util . MediaType . Audio )
videoObjectOrList = note . get ( ' video ' )
self . addMedia ( ankiNote , videoObjectOrList , util . MediaType . Video )
pictureObjectOrList = note . get ( ' picture ' )
self . addMedia ( ankiNote , pictureObjectOrList , util . MediaType . Picture )
2020-12-06 05:24:50 +00:00
def addMedia ( self , ankiNote , mediaObjectOrList , mediaType ) :
if mediaObjectOrList is None :
2020-03-06 03:45:13 +00:00
return
2020-12-06 05:24:50 +00:00
if isinstance ( mediaObjectOrList , list ) :
mediaList = mediaObjectOrList
2020-03-06 03:45:13 +00:00
else :
2020-12-06 05:24:50 +00:00
mediaList = [ mediaObjectOrList ]
2020-03-06 03:45:13 +00:00
2020-12-06 05:24:50 +00:00
for media in mediaList :
if media is not None and len ( media [ ' fields ' ] ) > 0 :
2020-03-06 03:45:13 +00:00
try :
2021-02-20 18:04:25 +00:00
mediaFilename = self . storeMediaFile ( media [ ' filename ' ] ,
data = media . get ( ' data ' ) ,
path = media . get ( ' path ' ) ,
url = media . get ( ' url ' ) ,
2022-03-27 03:58:00 +00:00
skipHash = media . get ( ' skipHash ' ) ,
deleteExisting = media . get ( ' deleteExisting ' ) )
2020-03-06 03:45:13 +00:00
2021-02-20 18:04:25 +00:00
if mediaFilename is not None :
2020-12-06 05:24:50 +00:00
for field in media [ ' fields ' ] :
2020-02-23 10:59:19 +00:00
if field in ankiNote :
2020-12-06 05:24:50 +00:00
if mediaType is util . MediaType . Picture :
2021-06-03 21:36:04 +00:00
ankiNote [ field ] + = u ' <img src= " {} " > ' . format ( mediaFilename )
2020-12-06 05:24:50 +00:00
elif mediaType is util . MediaType . Audio or mediaType is util . MediaType . Video :
ankiNote [ field ] + = u ' [sound: {} ] ' . format ( mediaFilename )
2020-03-06 03:45:13 +00:00
except Exception as e :
errorMessage = str ( e ) . replace ( ' & ' , ' & ' ) . replace ( ' < ' , ' < ' ) . replace ( ' > ' , ' > ' )
2020-12-06 05:24:50 +00:00
for field in media [ ' fields ' ] :
2020-03-06 03:45:13 +00:00
if field in ankiNote :
ankiNote [ field ] + = errorMessage
2020-02-23 10:59:19 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2017-02-19 20:07:10 +00:00
def canAddNote ( self , note ) :
2018-03-16 12:51:48 +00:00
try :
2018-05-07 00:52:24 +00:00
return bool ( self . createNote ( note ) )
2018-03-16 12:51:48 +00:00
except :
return False
2016-05-21 22:10:12 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2018-05-08 22:13:49 +00:00
def updateNoteFields ( self , note ) :
2021-03-05 04:06:25 +00:00
ankiNote = self . getNote ( note [ ' id ' ] )
2018-05-07 00:52:24 +00:00
2021-09-16 00:55:46 +00:00
self . startEditing ( )
2018-05-08 22:13:49 +00:00
for name , value in note [ ' fields ' ] . items ( ) :
if name in ankiNote :
ankiNote [ name ] = value
2018-05-07 00:52:24 +00:00
2020-03-06 03:45:13 +00:00
audioObjectOrList = note . get ( ' audio ' )
2020-12-06 05:24:50 +00:00
self . addMedia ( ankiNote , audioObjectOrList , util . MediaType . Audio )
videoObjectOrList = note . get ( ' video ' )
self . addMedia ( ankiNote , videoObjectOrList , util . MediaType . Video )
pictureObjectOrList = note . get ( ' picture ' )
self . addMedia ( ankiNote , pictureObjectOrList , util . MediaType . Picture )
2020-02-23 10:59:19 +00:00
2018-05-08 22:13:49 +00:00
ankiNote . flush ( )
2016-05-21 22:10:12 +00:00
2021-09-16 00:55:46 +00:00
self . collection ( ) . autosave ( )
self . stopEditing ( )
2021-01-18 06:13:27 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2017-08-03 21:21:59 +00:00
def addTags ( self , notes , tags , add = True ) :
2017-08-05 08:24:03 +00:00
self . startEditing ( )
2017-08-06 01:29:59 +00:00
self . collection ( ) . tags . bulkAdd ( notes , tags , add )
2017-08-05 08:24:03 +00:00
self . stopEditing ( )
2017-08-03 20:07:22 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2018-05-06 19:59:31 +00:00
def removeTags ( self , notes , tags ) :
return self . addTags ( notes , tags , False )
2020-01-05 23:42:08 +00:00
@util.api ( )
2018-01-14 11:26:37 +00:00
def getTags ( self ) :
return self . collection ( ) . tags . all ( )
2021-01-02 17:05:35 +00:00
2021-01-18 06:13:27 +00:00
2021-01-02 17:05:35 +00:00
@util.api ( )
def clearUnusedTags ( self ) :
2021-01-18 06:13:27 +00:00
self . collection ( ) . tags . registerNotes ( )
2021-01-02 17:05:35 +00:00
@util.api ( )
def replaceTags ( self , notes , tag_to_replace , replace_with_tag ) :
2021-01-18 06:13:27 +00:00
self . window ( ) . progress . start ( )
for nid in notes :
2021-03-05 04:06:25 +00:00
try :
note = self . getNote ( nid )
except NotFoundError :
continue
2021-01-18 06:13:27 +00:00
if note . hasTag ( tag_to_replace ) :
note . delTag ( tag_to_replace )
2021-03-05 04:06:25 +00:00
note . addTag ( replace_with_tag )
2021-01-18 06:13:27 +00:00
note . flush ( )
self . window ( ) . requireReset ( )
self . window ( ) . progress . finish ( )
self . window ( ) . reset ( )
2021-01-02 17:05:35 +00:00
@util.api ( )
def replaceTagsInAllNotes ( self , tag_to_replace , replace_with_tag ) :
2021-01-18 06:13:27 +00:00
self . window ( ) . progress . start ( )
2021-03-05 04:06:25 +00:00
collection = self . collection ( )
2021-01-18 06:13:27 +00:00
for nid in collection . db . list ( ' select id from notes ' ) :
2021-03-05 04:06:25 +00:00
note = self . getNote ( nid )
2021-01-18 06:13:27 +00:00
if note . hasTag ( tag_to_replace ) :
note . delTag ( tag_to_replace )
2021-03-05 04:06:25 +00:00
note . addTag ( replace_with_tag )
2021-01-18 06:13:27 +00:00
note . flush ( )
self . window ( ) . requireReset ( )
self . window ( ) . progress . finish ( )
self . window ( ) . reset ( )
2020-06-10 23:21:58 +00:00
@util.api ( )
def setEaseFactors ( self , cards , easeFactors ) :
couldSetEaseFactors = [ ]
2021-01-18 06:13:27 +00:00
for i , card in enumerate ( cards ) :
2021-03-05 04:06:25 +00:00
try :
ankiCard = self . getCard ( card )
except NotFoundError :
2020-06-10 23:21:58 +00:00
couldSetEaseFactors . append ( False )
2021-03-05 04:06:25 +00:00
continue
2020-06-10 23:21:58 +00:00
2021-03-05 04:06:25 +00:00
couldSetEaseFactors . append ( True )
2021-01-19 05:03:27 +00:00
ankiCard . factor = easeFactors [ i ]
2020-06-10 23:21:58 +00:00
ankiCard . flush ( )
return couldSetEaseFactors
2021-01-18 06:13:27 +00:00
2022-02-23 02:31:43 +00:00
@util.api ( )
def setSpecificValueOfCard ( self , card , keys ,
newValues , warning_check = False ) :
if isinstance ( card , list ) :
print ( " card has to be int, not list " )
return False
if not isinstance ( keys , list ) or not isinstance ( newValues , list ) :
print ( " keys and newValues have to be lists. " )
return False
if len ( newValues ) != len ( keys ) :
print ( " Invalid list lengths. " )
return False
for key in keys :
if key in [ " did " , " id " , " ivl " , " lapses " , " left " , " mod " , " nid " ,
" odid " , " odue " , " ord " , " queue " , " reps " , " type " , " usn " ] :
if warning_check is False :
return False
result = [ ]
try :
ankiCard = self . getCard ( card )
for i , key in enumerate ( keys ) :
setattr ( ankiCard , key , newValues [ i ] )
ankiCard . flush ( )
result . append ( True )
except Exception as e :
result . append ( [ False , str ( e ) ] )
return result
2021-01-18 06:13:27 +00:00
2020-06-10 23:21:58 +00:00
@util.api ( )
def getEaseFactors ( self , cards ) :
easeFactors = [ ]
for card in cards :
2021-03-05 04:06:25 +00:00
try :
ankiCard = self . getCard ( card )
except NotFoundError :
easeFactors . append ( None )
continue
2020-06-10 23:21:58 +00:00
easeFactors . append ( ankiCard . factor )
2018-01-14 11:26:37 +00:00
2020-06-10 23:21:58 +00:00
return easeFactors
2018-01-14 11:26:37 +00:00
2021-01-18 06:13:27 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2017-08-03 21:21:59 +00:00
def suspend ( self , cards , suspend = True ) :
2017-08-06 01:29:59 +00:00
for card in cards :
2018-05-07 00:52:24 +00:00
if self . suspended ( card ) == suspend :
2017-08-06 01:29:59 +00:00
cards . remove ( card )
2018-05-07 00:52:24 +00:00
if len ( cards ) == 0 :
return False
2017-08-06 01:29:59 +00:00
2018-05-07 00:52:24 +00:00
scheduler = self . scheduler ( )
self . startEditing ( )
if suspend :
scheduler . suspendCards ( cards )
else :
scheduler . unsuspendCards ( cards )
self . stopEditing ( )
return True
2017-08-06 01:29:59 +00:00
2018-03-31 21:40:01 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2018-05-06 19:59:31 +00:00
def unsuspend ( self , cards ) :
self . suspend ( cards , False )
2020-01-05 23:42:08 +00:00
@util.api ( )
2018-05-07 00:52:24 +00:00
def suspended ( self , card ) :
2021-03-05 04:06:25 +00:00
card = self . getCard ( card )
2018-05-06 19:59:31 +00:00
return card . queue == - 1
2017-08-06 01:29:59 +00:00
2018-03-31 21:40:01 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2017-08-12 14:57:28 +00:00
def areSuspended ( self , cards ) :
suspended = [ ]
for card in cards :
2021-03-05 04:06:25 +00:00
try :
suspended . append ( self . suspended ( card ) )
except NotFoundError :
suspended . append ( None )
2018-05-07 00:52:24 +00:00
2017-08-12 14:57:28 +00:00
return suspended
2020-01-05 23:42:08 +00:00
@util.api ( )
2017-08-12 14:57:28 +00:00
def areDue ( self , cards ) :
due = [ ]
for card in cards :
2018-05-07 00:52:24 +00:00
if self . findCards ( ' cid: {} is:new ' . format ( card ) ) :
2017-08-12 14:57:28 +00:00
due . append ( True )
else :
2018-05-07 00:52:24 +00:00
date , ivl = self . collection ( ) . db . all ( ' select id/1000.0, ivl from revlog where cid = ? ' , card ) [ - 1 ]
if ivl > = - 1200 :
2018-06-03 15:26:33 +00:00
due . append ( bool ( self . findCards ( ' cid: {} is:due ' . format ( card ) ) ) )
2017-08-12 14:57:28 +00:00
else :
2020-01-05 23:42:08 +00:00
due . append ( date - ivl < = time . time ( ) )
2017-08-12 14:57:28 +00:00
return due
2017-08-03 20:07:22 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2017-08-09 17:40:09 +00:00
def getIntervals ( self , cards , complete = False ) :
intervals = [ ]
for card in cards :
2018-05-07 00:52:24 +00:00
if self . findCards ( ' cid: {} is:new ' . format ( card ) ) :
2017-08-12 15:21:04 +00:00
intervals . append ( 0 )
2018-05-07 00:52:24 +00:00
else :
interval = self . collection ( ) . db . list ( ' select ivl from revlog where cid = ? ' , card )
if not complete :
interval = interval [ - 1 ]
intervals . append ( interval )
2017-08-12 15:21:04 +00:00
2017-08-09 17:40:09 +00:00
return intervals
2017-08-17 12:25:06 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2016-05-21 22:10:12 +00:00
def modelNames ( self ) :
2018-05-07 00:52:24 +00:00
return self . collection ( ) . models . allNames ( )
2016-05-21 22:10:12 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2021-05-07 02:11:03 +00:00
def createModel ( self , modelName , inOrderFields , cardTemplates , css = None , isCloze = False ) :
2019-02-22 18:44:51 +00:00
# https://github.com/dae/anki/blob/b06b70f7214fb1f2ce33ba06d2b095384b81f874/anki/stdmodels.py
2021-01-18 06:13:27 +00:00
if len ( inOrderFields ) == 0 :
2019-03-01 17:38:30 +00:00
raise Exception ( ' Must provide at least one field for inOrderFields ' )
2021-01-18 06:13:27 +00:00
if len ( cardTemplates ) == 0 :
2019-03-01 17:38:30 +00:00
raise Exception ( ' Must provide at least one card for cardTemplates ' )
2021-01-18 06:13:27 +00:00
if modelName in self . collection ( ) . models . allNames ( ) :
2019-03-01 17:38:30 +00:00
raise Exception ( ' Model name already exists ' )
2019-02-22 18:44:51 +00:00
collection = self . collection ( )
mm = collection . models
# Generate new Note
2020-06-03 03:27:33 +00:00
m = mm . new ( modelName )
2021-05-07 02:11:03 +00:00
if isCloze :
m [ ' type ' ] = MODEL_CLOZE
2019-02-22 18:44:51 +00:00
# Create fields and add them to Note
for field in inOrderFields :
2020-06-03 03:27:33 +00:00
fm = mm . newField ( field )
2019-02-22 18:44:51 +00:00
mm . addField ( m , fm )
2019-03-07 18:19:35 +00:00
2019-03-01 17:38:30 +00:00
# Add shared css to model if exists. Use default otherwise
if ( css is not None ) :
m [ ' css ' ] = css
2019-02-22 18:44:51 +00:00
# Generate new card template(s)
cardCount = 1
for card in cardTemplates :
2020-03-13 22:40:27 +00:00
cardName = ' Card ' + str ( cardCount )
if ' Name ' in card :
cardName = card [ ' Name ' ]
2020-06-03 03:27:33 +00:00
t = mm . newTemplate ( cardName )
2019-02-22 18:44:51 +00:00
cardCount + = 1
t [ ' qfmt ' ] = card [ ' Front ' ]
t [ ' afmt ' ] = card [ ' Back ' ]
mm . addTemplate ( m , t )
mm . add ( m )
return m
2020-01-05 23:42:08 +00:00
@util.api ( )
2017-08-21 16:15:11 +00:00
def modelNamesAndIds ( self ) :
models = { }
2018-05-07 00:52:24 +00:00
for model in self . modelNames ( ) :
models [ model ] = int ( self . collection ( ) . models . byName ( model ) [ ' id ' ] )
2017-08-21 16:15:11 +00:00
return models
2020-01-05 23:42:08 +00:00
@util.api ( )
2017-07-01 19:49:44 +00:00
def modelNameFromId ( self , modelId ) :
2018-05-07 00:52:24 +00:00
model = self . collection ( ) . models . get ( modelId )
if model is None :
raise Exception ( ' model was not found: {} ' . format ( modelId ) )
else :
return model [ ' name ' ]
2016-05-29 17:31:24 +00:00
2017-07-01 19:41:27 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2017-07-01 19:41:27 +00:00
def modelFieldNames ( self , modelName ) :
2018-05-07 00:52:24 +00:00
model = self . collection ( ) . models . byName ( modelName )
if model is None :
raise Exception ( ' model was not found: {} ' . format ( modelName ) )
else :
return [ field [ ' name ' ] for field in model [ ' flds ' ] ]
2016-05-21 22:10:12 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2017-08-21 14:10:57 +00:00
def modelFieldsOnTemplates ( self , modelName ) :
model = self . collection ( ) . models . byName ( modelName )
2018-05-07 00:52:24 +00:00
if model is None :
raise Exception ( ' model was not found: {} ' . format ( modelName ) )
2017-08-21 14:10:57 +00:00
2018-05-07 00:52:24 +00:00
templates = { }
for template in model [ ' tmpls ' ] :
fields = [ ]
for side in [ ' qfmt ' , ' afmt ' ] :
fieldsForSide = [ ]
2017-08-21 14:10:57 +00:00
2018-05-07 00:52:24 +00:00
# based on _fieldsOnTemplate from aqt/clayout.py
matches = re . findall ( ' {{ [^#/}]+?}} ' , template [ side ] )
for match in matches :
# remove braces and modifiers
match = re . sub ( r ' [ {} ] ' , ' ' , match )
match = match . split ( ' : ' ) [ - 1 ]
2017-08-21 14:10:57 +00:00
2018-05-07 00:52:24 +00:00
# for the answer side, ignore fields present on the question side + the FrontSide field
if match == ' FrontSide ' or side == ' afmt ' and match in fields [ 0 ] :
continue
fieldsForSide . append ( match )
2017-08-21 14:10:57 +00:00
2018-05-07 00:52:24 +00:00
fields . append ( fieldsForSide )
2017-08-21 14:10:57 +00:00
2018-05-07 00:52:24 +00:00
templates [ template [ ' name ' ] ] = fields
2017-08-21 14:10:57 +00:00
2018-05-07 00:52:24 +00:00
return templates
2017-08-21 14:10:57 +00:00
2021-01-18 06:13:27 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2019-10-27 20:41:53 +00:00
def modelTemplates ( self , modelName ) :
model = self . collection ( ) . models . byName ( modelName )
if model is None :
raise Exception ( ' model was not found: {} ' . format ( modelName ) )
templates = { }
for template in model [ ' tmpls ' ] :
templates [ template [ ' name ' ] ] = { ' Front ' : template [ ' qfmt ' ] , ' Back ' : template [ ' afmt ' ] }
return templates
2020-01-05 23:42:08 +00:00
@util.api ( )
2019-10-27 20:41:53 +00:00
def modelStyling ( self , modelName ) :
model = self . collection ( ) . models . byName ( modelName )
if model is None :
raise Exception ( ' model was not found: {} ' . format ( modelName ) )
return { ' css ' : model [ ' css ' ] }
2020-01-05 23:42:08 +00:00
@util.api ( )
2019-10-27 20:41:53 +00:00
def updateModelTemplates ( self , model ) :
models = self . collection ( ) . models
ankiModel = models . byName ( model [ ' name ' ] )
if ankiModel is None :
raise Exception ( ' model was not found: {} ' . format ( model [ ' name ' ] ) )
templates = model [ ' templates ' ]
for ankiTemplate in ankiModel [ ' tmpls ' ] :
template = templates . get ( ankiTemplate [ ' name ' ] )
if template :
qfmt = template . get ( ' Front ' )
if qfmt :
ankiTemplate [ ' qfmt ' ] = qfmt
afmt = template . get ( ' Back ' )
if afmt :
ankiTemplate [ ' afmt ' ] = afmt
2021-12-27 06:21:21 +00:00
self . save_model ( models , ankiModel )
2019-10-27 20:41:53 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2019-10-27 20:41:53 +00:00
def updateModelStyling ( self , model ) :
models = self . collection ( ) . models
ankiModel = models . byName ( model [ ' name ' ] )
if ankiModel is None :
raise Exception ( ' model was not found: {} ' . format ( model [ ' name ' ] ) )
ankiModel [ ' css ' ] = model [ ' css ' ]
2021-12-27 06:21:21 +00:00
self . save_model ( models , ankiModel )
2019-10-27 20:41:53 +00:00
2017-08-21 14:10:57 +00:00
2021-02-27 05:17:51 +00:00
@util.api ( )
def findAndReplaceInModels ( self , modelName , findText , replaceText , front = True , back = True , css = True ) :
if not modelName :
ankiModel = self . collection ( ) . models . allNames ( )
else :
model = self . collection ( ) . models . byName ( modelName )
if model is None :
raise Exception ( ' model was not found: {} ' . format ( modelName ) )
2022-03-30 18:34:58 +00:00
ankiModel = [ modelName ]
2021-02-27 05:17:51 +00:00
updatedModels = 0
for model in ankiModel :
model = self . collection ( ) . models . byName ( model )
checkForText = False
if css and findText in model [ ' css ' ] :
checkForText = True
2021-07-14 00:55:22 +00:00
model [ ' css ' ] = model [ ' css ' ] . replace ( findText , replaceText )
2021-02-27 05:17:51 +00:00
for tmpls in model . get ( ' tmpls ' ) :
if front and findText in tmpls [ ' qfmt ' ] :
checkForText = True
tmpls [ ' qfmt ' ] = tmpls [ ' qfmt ' ] . replace ( findText , replaceText )
if back and findText in tmpls [ ' afmt ' ] :
checkForText = True
2021-07-14 00:55:22 +00:00
tmpls [ ' afmt ' ] = tmpls [ ' afmt ' ] . replace ( findText , replaceText )
2021-12-27 06:21:21 +00:00
self . save_model ( self . collection ( ) . models , model )
2021-02-27 05:17:51 +00:00
if checkForText :
updatedModels + = 1
return updatedModels
2022-08-17 01:23:09 +00:00
@util.api ( )
def modelFieldRename ( self , modelName , oldFieldName , newFieldName ) :
#self.startEditing()
mm = self . collection ( ) . models
model = mm . byName ( modelName )
if model is None :
raise Exception ( ' model was not found: {} ' . format ( modelName ) )
fieldMap = mm . fieldMap ( model )
if oldFieldName not in fieldMap :
raise Exception ( ' field was not found in {} : {} ' . format ( modelName , oldFieldName ) )
field = fieldMap [ oldFieldName ] [ 1 ]
mm . renameField ( model , field , newFieldName )
self . save_model ( mm , model )
#self.stopEditing()
@util.api ( )
def modelFieldReposition ( self , modelName , fieldName , index ) :
mm = self . collection ( ) . models
model = mm . byName ( modelName )
if model is None :
raise Exception ( ' model was not found: {} ' . format ( modelName ) )
fieldMap = mm . fieldMap ( model )
if fieldName not in fieldMap :
raise Exception ( ' field was not found in {} : {} ' . format ( modelName , fieldName ) )
field = fieldMap [ fieldName ] [ 1 ]
mm . repositionField ( model , field , index )
self . save_model ( mm , model )
@util.api ( )
def modelFieldAdd ( self , modelName , fieldName , index = None ) :
#self.startEditing()
mm = self . collection ( ) . models
model = mm . byName ( modelName )
if model is None :
raise Exception ( ' model was not found: {} ' . format ( modelName ) )
# only adds the field if it doesn't already exist
fieldMap = mm . fieldMap ( model )
if fieldName not in fieldMap :
field = mm . newField ( fieldName )
mm . addField ( model , field )
# repositions, even if the field already exists
if index is not None :
fieldMap = mm . fieldMap ( model )
newField = fieldMap [ fieldName ] [ 1 ]
mm . repositionField ( model , newField , index )
self . save_model ( mm , model )
#self.stopEditing()
@util.api ( )
def modelFieldRemove ( self , modelName , fieldName ) :
#self.startEditing()
mm = self . collection ( ) . models
model = mm . byName ( modelName )
if model is None :
raise Exception ( ' model was not found: {} ' . format ( modelName ) )
fieldMap = mm . fieldMap ( model )
if fieldName not in fieldMap :
raise Exception ( ' field was not found in {} : {} ' . format ( modelName , fieldName ) )
field = fieldMap [ fieldName ] [ 1 ]
mm . removeField ( model , field )
self . save_model ( mm , model )
#self.stopEditing()
@util.api ( )
def editFieldNames ( self , modelName , actions ) :
actionToFuncMap = {
' rename ' : self . modelFieldRename ,
' reposition ' : self . modelFieldReposition ,
' add ' : self . modelFieldAdd ,
' remove ' : self . modelFieldRemove ,
}
for actionDict in actions :
action = actionDict [ ' action ' ]
if action not in actionToFuncMap :
raise Exception ( ' invalid edit field name action: {} ' . format ( action ) )
func = actionToFuncMap [ action ]
args = { k : v for k , v in actionDict . items ( ) if k != ' action ' }
func ( modelName = modelName , * * args )
2020-01-05 23:42:08 +00:00
@util.api ( )
2017-07-01 19:49:44 +00:00
def deckNameFromId ( self , deckId ) :
2018-05-07 00:52:24 +00:00
deck = self . collection ( ) . decks . get ( deckId )
if deck is None :
raise Exception ( ' deck was not found: {} ' . format ( deckId ) )
2021-01-18 06:13:27 +00:00
return deck [ ' name ' ]
2017-07-01 19:41:27 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2017-08-03 21:31:47 +00:00
def findNotes ( self , query = None ) :
2018-05-07 00:52:24 +00:00
if query is None :
2017-08-03 21:31:47 +00:00
return [ ]
2021-01-18 06:13:27 +00:00
return list ( map ( int , self . collection ( ) . findNotes ( query ) ) )
2017-08-03 21:31:47 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2017-08-03 21:31:47 +00:00
def findCards ( self , query = None ) :
2018-05-07 01:45:56 +00:00
if query is None :
2017-08-03 21:31:47 +00:00
return [ ]
2021-01-18 06:13:27 +00:00
return list ( map ( int , self . collection ( ) . findCards ( query ) ) )
2017-08-03 21:31:47 +00:00
2018-03-31 21:40:01 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2018-05-06 19:59:31 +00:00
def cardsInfo ( self , cards ) :
2018-01-06 19:48:25 +00:00
result = [ ]
for cid in cards :
try :
2021-03-05 04:06:25 +00:00
card = self . getCard ( cid )
2018-01-06 19:48:25 +00:00
model = card . model ( )
note = card . note ( )
fields = { }
for info in model [ ' flds ' ] :
order = info [ ' ord ' ]
name = info [ ' name ' ]
2018-01-09 13:09:38 +00:00
fields [ name ] = { ' value ' : note . fields [ order ] , ' order ' : order }
2018-03-31 21:40:01 +00:00
2018-01-06 19:48:25 +00:00
result . append ( {
' cardId ' : card . id ,
' fields ' : fields ,
' fieldOrder ' : card . ord ,
2021-01-18 06:13:27 +00:00
' question ' : util . cardQuestion ( card ) ,
' answer ' : util . cardAnswer ( card ) ,
2018-01-06 19:48:25 +00:00
' modelName ' : model [ ' name ' ] ,
2020-07-12 19:53:31 +00:00
' ord ' : card . ord ,
2018-01-06 19:48:25 +00:00
' deckName ' : self . deckNameFromId ( card . did ) ,
' css ' : model [ ' css ' ] ,
2018-03-31 21:40:01 +00:00
' factor ' : card . factor ,
#This factor is 10 times the ease percentage,
2018-01-06 19:48:25 +00:00
# so an ease of 310% would be reported as 3100
' interval ' : card . ivl ,
2020-07-12 19:53:31 +00:00
' note ' : card . nid ,
' type ' : card . type ,
' queue ' : card . queue ,
' due ' : card . due ,
' reps ' : card . reps ,
' lapses ' : card . lapses ,
' left ' : card . left ,
2021-08-25 03:55:23 +00:00
' mod ' : card . mod ,
2018-01-06 19:48:25 +00:00
} )
2021-03-05 04:06:25 +00:00
except NotFoundError :
# Anki will give a NotFoundError if the card ID does not exist.
2018-03-11 22:10:07 +00:00
# Best behavior is probably to add an 'empty card' to the
2018-01-06 19:48:25 +00:00
# returned result, so that the items of the input and return
# lists correspond.
result . append ( { } )
return result
2021-08-25 03:55:23 +00:00
@util.api ( )
def cardsModTime ( self , cards ) :
result = [ ]
for cid in cards :
try :
card = self . getCard ( cid )
result . append ( {
' cardId ' : card . id ,
' mod ' : card . mod ,
} )
except NotFoundError :
# Anki will give a NotFoundError if the card ID does not exist.
# Best behavior is probably to add an 'empty card' to the
# returned result, so that the items of the input and return
# lists correspond.
result . append ( { } )
return result
2018-03-31 21:40:01 +00:00
2021-03-05 04:02:57 +00:00
@util.api ( )
def forgetCards ( self , cards ) :
self . startEditing ( )
scids = anki . utils . ids2str ( cards )
self . collection ( ) . db . execute ( ' update cards set type=0, queue=0, left=0, ivl=0, due=0, odue=0, factor=0 where id in ' + scids )
self . stopEditing ( )
@util.api ( )
def relearnCards ( self , cards ) :
self . startEditing ( )
scids = anki . utils . ids2str ( cards )
self . collection ( ) . db . execute ( ' update cards set type=3, queue=1 where id in ' + scids )
self . stopEditing ( )
2021-07-14 00:55:22 +00:00
2021-03-05 04:02:57 +00:00
2020-07-12 19:53:31 +00:00
@util.api ( )
def cardReviews ( self , deck , startID ) :
2021-01-18 06:13:27 +00:00
return self . database ( ) . all (
' select id, cid, usn, ease, ivl, lastIvl, factor, time, type from revlog ' ' where id>? and cid in (select id from cards where did=?) ' ,
startID ,
self . decks ( ) . id ( deck )
)
2020-07-12 19:53:31 +00:00
@util.api ( )
def reloadCollection ( self ) :
self . collection ( ) . reset ( )
2021-01-18 06:13:27 +00:00
2020-07-12 19:53:31 +00:00
@util.api ( )
def getLatestReviewID ( self , deck ) :
2021-01-18 06:13:27 +00:00
return self . database ( ) . scalar (
2021-01-18 06:27:20 +00:00
' select max(id) from revlog where cid in (select id from cards where did=?) ' ,
2021-01-18 06:13:27 +00:00
self . decks ( ) . id ( deck )
) or 0
2020-07-12 19:53:31 +00:00
@util.api ( )
def insertReviews ( self , reviews ) :
2021-01-18 06:13:27 +00:00
if len ( reviews ) > 0 :
sql = ' insert into revlog(id,cid,usn,ease,ivl,lastIvl,factor,time,type) values '
for row in reviews :
sql + = ' ( %s ), ' % ' , ' . join ( map ( str , row ) )
sql = sql [ : - 1 ]
self . database ( ) . execute ( sql )
2020-07-12 19:53:31 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2018-05-06 19:59:31 +00:00
def notesInfo ( self , notes ) :
2018-01-06 19:48:25 +00:00
result = [ ]
for nid in notes :
try :
2021-03-05 04:06:25 +00:00
note = self . getNote ( nid )
2018-01-06 19:48:25 +00:00
model = note . model ( )
fields = { }
for info in model [ ' flds ' ] :
order = info [ ' ord ' ]
name = info [ ' name ' ]
2018-01-09 13:09:38 +00:00
fields [ name ] = { ' value ' : note . fields [ order ] , ' order ' : order }
2018-03-31 21:40:01 +00:00
2018-01-06 19:48:25 +00:00
result . append ( {
' noteId ' : note . id ,
' tags ' : note . tags ,
' fields ' : fields ,
' modelName ' : model [ ' name ' ] ,
2018-05-07 00:52:24 +00:00
' cards ' : self . collection ( ) . db . list ( ' select id from cards where nid = ? order by ord ' , note . id )
2018-01-06 19:48:25 +00:00
} )
2021-03-05 04:06:25 +00:00
except NotFoundError :
# Anki will give a NotFoundError if the note ID does not exist.
2018-03-11 22:10:07 +00:00
# Best behavior is probably to add an 'empty card' to the
2018-01-06 19:48:25 +00:00
# returned result, so that the items of the input and return
# lists correspond.
result . append ( { } )
2018-05-07 00:52:24 +00:00
2018-01-06 19:48:25 +00:00
return result
2017-08-03 21:31:47 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2019-02-26 17:28:36 +00:00
def deleteNotes ( self , notes ) :
try :
self . collection ( ) . remNotes ( notes )
finally :
self . stopEditing ( )
2021-01-18 06:13:27 +00:00
2021-01-05 02:01:56 +00:00
@util.api ( )
def removeEmptyNotes ( self ) :
for model in self . collection ( ) . models . all ( ) :
if self . collection ( ) . models . useCount ( model ) == 0 :
self . collection ( ) . models . rem ( model )
self . window ( ) . requireReset ( )
2017-08-13 09:05:56 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2017-08-09 18:05:00 +00:00
def cardsToNotes ( self , cards ) :
2017-08-12 14:57:28 +00:00
return self . collection ( ) . db . list ( ' select distinct nid from cards where id in ' + anki . utils . ids2str ( cards ) )
2017-08-09 18:05:00 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2017-07-04 19:35:04 +00:00
def guiBrowse ( self , query = None ) :
2017-05-28 22:54:28 +00:00
browser = aqt . dialogs . open ( ' Browser ' , self . window ( ) )
2017-05-27 12:14:40 +00:00
browser . activateWindow ( )
2017-05-28 22:54:28 +00:00
2017-07-04 19:35:04 +00:00
if query is not None :
2017-05-27 12:14:40 +00:00
browser . form . searchEdit . lineEdit ( ) . setText ( query )
2017-07-04 19:35:04 +00:00
if hasattr ( browser , ' onSearch ' ) :
browser . onSearch ( )
else :
browser . onSearchActivated ( )
2017-05-28 22:54:28 +00:00
2021-09-15 03:30:36 +00:00
return self . findCards ( query )
2017-05-27 12:14:40 +00:00
2022-03-30 19:26:26 +00:00
@util.api ( )
def guiEditNote ( self , note ) :
Edit . open_dialog_and_show_note_with_id ( note )
2021-12-06 16:59:10 +00:00
@util.api ( )
def guiSelectedNotes ( self ) :
( creator , instance ) = aqt . dialogs . _dialogs [ ' Browser ' ]
if instance is None :
return [ ]
return instance . selectedNotes ( )
2017-05-27 12:14:40 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2019-01-17 22:08:52 +00:00
def guiAddCards ( self , note = None ) :
if note is not None :
collection = self . collection ( )
2019-01-17 23:40:16 +00:00
deck = collection . decks . byName ( note [ ' deckName ' ] )
if deck is None :
raise Exception ( ' deck was not found: {} ' . format ( note [ ' deckName ' ] ) )
2021-01-18 06:13:27 +00:00
collection . decks . select ( deck [ ' id ' ] )
2019-01-31 23:15:32 +00:00
savedMid = deck . pop ( ' mid ' , None )
2019-01-17 23:40:16 +00:00
2019-01-17 22:08:52 +00:00
model = collection . models . byName ( note [ ' modelName ' ] )
if model is None :
raise Exception ( ' model was not found: {} ' . format ( note [ ' modelName ' ] ) )
2021-01-18 06:13:27 +00:00
collection . models . setCurrent ( model )
collection . models . update ( model )
2019-01-17 22:08:52 +00:00
2019-05-04 21:24:13 +00:00
ankiNote = anki . notes . Note ( collection , model )
# fill out card beforehand, so we can be sure of the note id
if ' fields ' in note :
for name , value in note [ ' fields ' ] . items ( ) :
if name in ankiNote :
ankiNote [ name ] = value
2021-06-21 03:35:09 +00:00
self . addMediaFromNote ( ankiNote , note )
2019-05-04 21:24:13 +00:00
if ' tags ' in note :
ankiNote . tags = note [ ' tags ' ]
2019-01-24 06:07:53 +00:00
def openNewWindow ( ) :
2019-05-04 21:24:13 +00:00
nonlocal ankiNote
2019-01-24 06:07:53 +00:00
addCards = aqt . dialogs . open ( ' AddCards ' , self . window ( ) )
2019-01-31 23:15:32 +00:00
if savedMid :
deck [ ' mid ' ] = savedMid
2022-04-12 18:50:36 +00:00
addCards . editor . set_note ( ankiNote )
2019-01-24 06:07:53 +00:00
addCards . activateWindow ( )
2019-01-24 07:36:11 +00:00
aqt . dialogs . open ( ' AddCards ' , self . window ( ) )
2019-05-04 21:24:13 +00:00
addCards . setAndFocusNote ( addCards . editor . note )
currentWindow = aqt . dialogs . _dialogs [ ' AddCards ' ] [ 1 ]
2019-01-24 06:07:53 +00:00
if currentWindow is not None :
2020-01-05 19:42:59 +00:00
currentWindow . closeWithCallback ( openNewWindow )
2019-01-24 06:07:53 +00:00
else :
openNewWindow ( )
2019-05-04 21:24:13 +00:00
return ankiNote . id
2019-05-04 21:24:13 +00:00
2019-01-24 06:07:53 +00:00
else :
addCards = aqt . dialogs . open ( ' AddCards ' , self . window ( ) )
addCards . activateWindow ( )
2017-05-27 12:14:40 +00:00
2019-05-04 21:24:13 +00:00
return addCards . editor . note . id
2021-01-18 06:13:27 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2017-07-01 19:41:27 +00:00
def guiReviewActive ( self ) :
2017-07-03 00:27:31 +00:00
return self . reviewer ( ) . card is not None and self . window ( ) . state == ' review '
2017-07-01 19:41:27 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2017-07-01 19:41:27 +00:00
def guiCurrentCard ( self ) :
2017-07-01 19:49:44 +00:00
if not self . guiReviewActive ( ) :
2018-03-11 22:10:07 +00:00
raise Exception ( ' Gui review is not currently active. ' )
2017-07-01 19:41:27 +00:00
reviewer = self . reviewer ( )
card = reviewer . card
2017-07-03 00:52:57 +00:00
model = card . model ( )
note = card . note ( )
fields = { }
for info in model [ ' flds ' ] :
2017-07-05 20:01:13 +00:00
order = info [ ' ord ' ]
name = info [ ' name ' ]
fields [ name ] = { ' value ' : note . fields [ order ] , ' order ' : order }
2021-01-18 06:13:27 +00:00
buttonList = reviewer . _answerButtonList ( )
return {
' cardId ' : card . id ,
' fields ' : fields ,
' fieldOrder ' : card . ord ,
' question ' : util . cardQuestion ( card ) ,
' answer ' : util . cardAnswer ( card ) ,
' buttons ' : [ b [ 0 ] for b in buttonList ] ,
' nextReviews ' : [ reviewer . mw . col . sched . nextIvlStr ( reviewer . card , b [ 0 ] , True ) for b in buttonList ] ,
' modelName ' : model [ ' name ' ] ,
' deckName ' : self . deckNameFromId ( card . did ) ,
' css ' : model [ ' css ' ] ,
' template ' : card . template ( ) [ ' name ' ]
}
2017-06-29 04:17:11 +00:00
2017-06-02 12:19:33 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2017-08-16 12:04:05 +00:00
def guiStartCardTimer ( self ) :
if not self . guiReviewActive ( ) :
return False
card = self . reviewer ( ) . card
if card is not None :
card . startTimer ( )
return True
2021-01-18 06:13:27 +00:00
return False
2017-08-16 12:04:05 +00:00
2018-03-31 21:40:01 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2017-06-16 16:17:53 +00:00
def guiShowQuestion ( self ) :
2017-07-01 19:41:27 +00:00
if self . guiReviewActive ( ) :
self . reviewer ( ) . _showQuestion ( )
return True
2021-01-18 06:13:27 +00:00
return False
2017-06-02 12:19:33 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2017-06-16 16:17:53 +00:00
def guiShowAnswer ( self ) :
2017-07-01 19:41:27 +00:00
if self . guiReviewActive ( ) :
2017-06-02 12:19:33 +00:00
self . window ( ) . reviewer . _showAnswer ( )
2017-07-01 19:41:27 +00:00
return True
2021-01-18 06:13:27 +00:00
return False
2017-06-02 12:19:33 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2017-07-01 20:16:51 +00:00
def guiAnswerCard ( self , ease ) :
2017-07-01 19:41:27 +00:00
if not self . guiReviewActive ( ) :
2017-06-29 04:17:11 +00:00
return False
2017-07-01 19:41:27 +00:00
reviewer = self . reviewer ( )
if reviewer . state != ' answer ' :
2017-06-29 04:17:11 +00:00
return False
2017-07-01 20:16:51 +00:00
if ease < = 0 or ease > self . scheduler ( ) . answerButtons ( reviewer . card ) :
2017-06-29 04:17:11 +00:00
return False
2017-06-02 12:19:33 +00:00
2017-07-01 19:41:27 +00:00
reviewer . _answerCard ( ease )
return True
2017-06-02 12:19:33 +00:00
2017-07-03 00:27:31 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2017-07-02 17:35:14 +00:00
def guiDeckOverview ( self , name ) :
collection = self . collection ( )
if collection is not None :
deck = collection . decks . byName ( name )
2017-07-02 20:38:08 +00:00
if deck is not None :
2017-07-02 17:35:14 +00:00
collection . decks . select ( deck [ ' id ' ] )
self . window ( ) . onOverview ( )
return True
2017-07-03 00:27:31 +00:00
2017-07-02 17:35:14 +00:00
return False
2017-07-03 00:27:31 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2017-07-02 17:35:14 +00:00
def guiDeckBrowser ( self ) :
2017-07-03 00:27:31 +00:00
self . window ( ) . moveToState ( ' deckBrowser ' )
2020-01-05 23:42:08 +00:00
@util.api ( )
2017-07-03 00:27:31 +00:00
def guiDeckReview ( self , name ) :
if self . guiDeckOverview ( name ) :
self . window ( ) . moveToState ( ' review ' )
return True
2021-01-18 06:13:27 +00:00
return False
2017-07-03 00:27:31 +00:00
2018-03-31 21:40:01 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2017-08-29 02:24:08 +00:00
def guiExitAnki ( self ) :
timer = QTimer ( )
2020-01-05 23:42:08 +00:00
timer . timeout . connect ( self . window ( ) . close )
2017-08-29 02:24:08 +00:00
timer . start ( 1000 ) # 1s should be enough to allow the response to be sent.
2017-06-02 12:19:33 +00:00
2018-03-31 21:40:01 +00:00
2021-07-14 00:55:22 +00:00
@util.api ( )
def guiCheckDatabase ( self ) :
self . window ( ) . onCheckDB ( )
return True
2020-01-05 23:42:08 +00:00
@util.api ( )
2018-05-06 19:59:31 +00:00
def addNotes ( self , notes ) :
results = [ ]
for note in notes :
try :
2018-05-06 20:24:40 +00:00
results . append ( self . addNote ( note ) )
2021-01-18 06:13:27 +00:00
except :
2018-05-06 19:59:31 +00:00
results . append ( None )
2018-03-31 21:40:01 +00:00
2018-05-06 19:59:31 +00:00
return results
2018-01-06 19:48:25 +00:00
2018-03-31 21:40:01 +00:00
2020-01-05 23:42:08 +00:00
@util.api ( )
2018-05-06 19:59:31 +00:00
def canAddNotes ( self , notes ) :
results = [ ]
for note in notes :
2018-05-06 20:24:40 +00:00
results . append ( self . canAddNote ( note ) )
2018-03-31 21:40:01 +00:00
2018-05-06 19:59:31 +00:00
return results
2018-02-21 13:16:52 +00:00
2020-03-17 05:29:49 +00:00
@util.api ( )
def exportPackage ( self , deck , path , includeSched = False ) :
collection = self . collection ( )
if collection is not None :
deck = collection . decks . byName ( deck )
if deck is not None :
exporter = AnkiPackageExporter ( collection )
2020-04-22 01:22:10 +00:00
exporter . did = deck [ ' id ' ]
2020-03-17 05:29:49 +00:00
exporter . includeSched = includeSched
exporter . exportInto ( path )
return True
2021-01-18 06:13:27 +00:00
2020-03-17 05:29:49 +00:00
return False
2021-01-18 06:13:27 +00:00
2020-05-01 16:19:47 +00:00
@util.api ( )
def importPackage ( self , path ) :
collection = self . collection ( )
if collection is not None :
try :
self . startEditing ( )
importer = AnkiPackageImporter ( collection , path )
importer . run ( )
except :
self . stopEditing ( )
raise
else :
self . stopEditing ( )
return True
return False
2020-03-17 05:29:49 +00:00
2022-05-20 21:00:38 +00:00
@util.api ( )
def apiReflect ( self , scopes = None , actions = None ) :
if not isinstance ( scopes , list ) :
raise Exception ( ' scopes has invalid value ' )
if not ( actions is None or isinstance ( actions , list ) ) :
raise Exception ( ' actions has invalid value ' )
cls = type ( self )
scopes2 = [ ]
result = { ' scopes ' : scopes2 }
if ' actions ' in scopes :
if actions is None :
actions = dir ( cls )
methodNames = [ ]
for methodName in actions :
if not isinstance ( methodName , str ) :
pass
method = getattr ( cls , methodName , None )
if method is not None and getattr ( method , ' api ' , False ) :
methodNames . append ( methodName )
scopes2 . append ( ' actions ' )
result [ ' actions ' ] = methodNames
return result
2016-05-21 22:10:12 +00:00
#
2018-05-07 00:52:24 +00:00
# Entry
2016-05-21 22:10:12 +00:00
#
2022-03-30 18:43:31 +00:00
# when run inside Anki, `__name__` would be either numeric,
# or, if installed via `link.sh`, `AnkiConnectDev`
if __name__ != " plugin " :
2022-04-20 17:30:20 +00:00
if platform . system ( ) == " Windows " and anki_version == ( 2 , 1 , 50 ) :
util . patch_anki_2_1_50_having_null_stdout_on_windows ( )
2022-04-10 23:10:27 +00:00
Edit . register_with_anki ( )
2022-03-30 19:26:26 +00:00
2022-03-30 18:43:31 +00:00
ac = AnkiConnect ( )
ac . initLogging ( )
ac . startWebServer ( )