Add support for updating note tags

This commit is contained in:
louie 2018-01-14 18:13:23 +08:00
parent 761e2c29cc
commit 07c34fd5d2

View file

@ -81,7 +81,7 @@ With prefix, only insert the deck name."
(err (alist-get 'error response)) (err (alist-get 'error response))
result deckname) result deckname)
(when err (error "Error fetching deck names: %s" err)) (when err (error "Error fetching deck names: %s" err))
(setq result (append (sort (alist-get 'result response) #'string-lessp) nil) (setq result (sort (alist-get 'result response) #'string-lessp)
deckname (completing-read "Choose a deck: " result)) deckname (completing-read "Choose a deck: " result))
(unless prefix (org-insert-heading-respect-content)) (unless prefix (org-insert-heading-respect-content))
(insert deckname) (insert deckname)
@ -101,7 +101,7 @@ note type."
note-type note-heading fields) note-type note-heading fields)
(when err (error "Error fetching note types: %s" err)) (when err (error "Error fetching note types: %s" err))
(setq note-types (append (sort note-types #'string-lessp) nil) (setq note-types (sort note-types #'string-lessp)
note-type (completing-read "Choose a note type: " note-types)) note-type (completing-read "Choose a note type: " note-types))
(message "Fetching note fields...") (message "Fetching note fields...")
(setq response (anki-editor--anki-connect-invoke "modelFieldNames" 5 `((modelName . ,note-type))) (setq response (anki-editor--anki-connect-invoke "modelFieldNames" 5 `((modelName . ,note-type)))
@ -199,8 +199,20 @@ note type."
"updateNoteFields" 5 `((note . ,(anki-editor--anki-connect-map-note note))))) "updateNoteFields" 5 `((note . ,(anki-editor--anki-connect-map-note note)))))
(err (alist-get 'error response))) (err (alist-get 'error response)))
(when err (error err)) (when err (error err))
;; TODO: Update tags ;; update tags
)) (let (existing-note added-tags removed-tags)
(setq response (anki-editor--anki-connect-invoke "notesInfo" 5 `(("notes" . (,(alist-get 'note-id note)))))
err (alist-get 'error response))
(when err (error err))
(setq existing-note (car (alist-get 'result response))
added-tags (cl-set-difference (alist-get 'tags note) (alist-get 'tags existing-note) :test #'string-equal)
removed-tags (cl-set-difference (alist-get 'tags existing-note) (alist-get 'tags note) :test #'string-equal))
(when added-tags
(anki-editor--anki-connect-invoke "addTags" 5 `(("notes" . (,(alist-get 'note-id note)))
("tags" . ,(mapconcat #'identity added-tags " ")))))
(when removed-tags
(anki-editor--anki-connect-invoke "removeTags" 5 `(("notes" . (,(alist-get 'note-id note)))
("tags" . ,(mapconcat #'identity removed-tags " "))))))))
(defun anki-editor--set-failure-reason (reason) (defun anki-editor--set-failure-reason (reason)
(org-set-property (substring (symbol-name anki-editor-note-failure-reason-prop) 1) reason)) (org-set-property (substring (symbol-name anki-editor-note-failure-reason-prop) 1) reason))
@ -341,10 +353,12 @@ note type."
anki-editor-anki-connect-listening-port anki-editor-anki-connect-listening-port
request-tempfile))) request-tempfile)))
resp error) resp error)
(when (file-exists-p request-tempfile) (delete-file request-tempfile)) (when (file-exists-p request-tempfile) (delete-file request-tempfile))
(condition-case err (condition-case err
(let ((json-array-type 'list))
(setq resp (json-read-from-string raw-resp) (setq resp (json-read-from-string raw-resp)
error (alist-get 'error resp)) error (alist-get 'error resp)))
(error (setq error (error (setq error
(format "Unexpected error communicating with anki-connect: %s, the response was %s" (format "Unexpected error communicating with anki-connect: %s, the response was %s"
(error-message-string err) (error-message-string err)