diff options
author | marty hiatt <martianhiatus@riseup.net> | 2024-10-08 21:17:28 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus@riseup.net> | 2024-10-08 21:17:55 +0200 |
commit | 228a00c273ad9ded168ec77736d3cbdde36bd80b (patch) | |
tree | 87621932a2638b420fa2567377d6f2a04670953a /lisp/mastodon-transient.el | |
parent | 4bef5506c12495861def5507660397f49c89cb29 (diff) |
transient: fix profile fields using alist args
Diffstat (limited to 'lisp/mastodon-transient.el')
-rw-r--r-- | lisp/mastodon-transient.el | 80 |
1 files changed, 50 insertions, 30 deletions
diff --git a/lisp/mastodon-transient.el b/lisp/mastodon-transient.el index abb845a..9b8d738 100644 --- a/lisp/mastodon-transient.el +++ b/lisp/mastodon-transient.el @@ -55,21 +55,22 @@ the inner key part." ;; to PATCH fields, we just need fields[x][name] and fields[x][value] (defun mastodon-transient-fields-to-transient (fields) - "Convert fields in FIELDS to transient key=val args." - (flatten-tree - (cl-loop - for f in fields - for count from 1 to 5 - collect - (cl-loop for x in f - collect - (concat "fields." (number-to-string count) - "." (symbol-name (car x)) - "=" (cdr x)))))) + "Convert fields in FIELDS to numbered conses. +The keys in the data are not numbered, so we convert the key into +the format fields.X.keyname." + (cl-loop + for f in fields + for count from 1 to 5 + collect + (cl-loop for x in f + collect + (cons (concat "fields." (number-to-string count) + "." (symbol-name (car x))) + (cdr x))))) (defun mastodon-transient-field-dot-to-array (key) "Convert KEY from tp dot annotation to array[key] annotation." - (tp-dot-to-array key nil "_attributes")) + (tp-dot-to-array (symbol-name key) nil "_attributes")) (defun mastodon-transient-dot-fields-to-arrays (alist) "Parse fields ALIST in dot notation to array notation." @@ -148,25 +149,26 @@ the inner key part." "Update current user profile fields." :transient 'transient--do-return (interactive (list (transient-args 'mastodon-profile-fields))) - (let* ((alist (tp-transient-to-alist args)) - ;; FIXME: maybe only changed also won't work with fields, as + (let* (;; FIXME: maybe only changed also won't work with fields, as ;; perhaps what is PATCHed overwrites whatever is on the server? ;; (only-changed (tp-only-changed-args alist)) - (arrays (mastodon-transient-dot-fields-to-arrays alist)) + (arrays (mastodon-transient-dot-fields-to-arrays args)) (endpoint "accounts/update_credentials") (url (mastodon-http--api endpoint)) (resp (mastodon-http--patch url arrays))) ; :json))) (mastodon-http--triage resp (lambda (_) (message "Fields updated!"))))) +(defun mastodon-transient-fetch-fields () + "Fetch profile fields (metadata)." + (tp-return-data #'mastodon-transient-get-creds nil 'fields) + (setq tp-server-settings + (mastodon-transient-fields-to-transient tp-server-settings))) + (transient-define-prefix mastodon-profile-fields () "A transient for setting profile fields." :value - (lambda () - (tp-return-data #'mastodon-transient-get-creds nil 'fields) - (setq tp-server-settings - (mastodon-transient-fields-to-transient - tp-server-settings))) + (lambda () (mastodon-transient-fetch-fields)) [:description "Fields" ["Name" @@ -194,16 +196,34 @@ the inner key part." "An infix option class for our options. We always read.") -(cl-defmethod tp-arg-changed-p ((_obj mastodon-transient-field) pair) - "T if value of OBJ is changed. -PAIR is a transient arg of the form \"fields.1.name=val\"." - (let* ((pair-split (split-string pair "=")) - (keys-split (split-string (car pair-split) "\\.")) - (num (1- (string-to-number (nth 1 keys-split)))) - (server-key (intern (nth 2 keys-split))) - (server-elt (nth num tp-server-settings)) - (value (when pair (cadr pair-split)))) - (not (equal value (alist-get server-key server-elt))))) +(cl-defmethod transient-init-value ((obj mastodon-transient-field)) + "Initialize value of OBJ." + (let* ((prefix-val (oref transient--prefix value)) + (arg (oref obj alist-key))) + (oset obj value + (tp-get-server-val obj prefix-val)))) + +(cl-defmethod tp-get-server-val ((obj mastodon-transient-field) data) + "Return the server value for OBJ from DATA. +If OBJ's key has dotted notation, drill down into the alist. Currently +only one level of nesting is supported." + ;; TODO: handle nested alist keys + (let* ((key (oref obj alist-key)) + (split (split-string (symbol-name key) "\\.")) + (num (string-to-number (cadr split)))) + (alist-get key + (nth (1- num) data) nil nil #'string=))) + +(cl-defmethod tp-arg-changed-p ((_obj mastodon-transient-field) cons) + "T if value of OBJ is changed from the server value. +CONS is a cons of the form \"(fields.1.name . val)\"." + (let* ((key-split (split-string + (symbol-to-string (car cons)) "\\.")) + (num (1- (string-to-number (nth 1 key-split)))) + (server-key (symbol-name (car cons))) + (server-elt (nth num tp-server-settings))) + (not (equal (cdr cons) + (alist-get server-key server-elt nil nil #'string=))))) (provide 'mastodon-transient) ;;; mastodon-transient.el ends here |