aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon-transient.el
diff options
context:
space:
mode:
authormarty hiatt <martianhiatus@riseup.net>2024-10-10 10:28:51 +0200
committermarty hiatt <martianhiatus@riseup.net>2024-10-10 10:28:51 +0200
commit6d20b69857f207963a6f9be8528c1c7e84d52c7e (patch)
tree16fdb6d6fa5244707722b951d8c1916c52c2b11d /lisp/mastodon-transient.el
parent6d2865f5034043be7f3653f44f533ebb969e79c5 (diff)
parent5b8d8f7c0f21c1a8428c2c8ad1b3f4e71ca5ffd4 (diff)
Merge branch 'develop' into unread-notifs
Diffstat (limited to 'lisp/mastodon-transient.el')
-rw-r--r--lisp/mastodon-transient.el91
1 files changed, 56 insertions, 35 deletions
diff --git a/lisp/mastodon-transient.el b/lisp/mastodon-transient.el
index abb845a..fe70eac 100644
--- a/lisp/mastodon-transient.el
+++ b/lisp/mastodon-transient.el
@@ -28,6 +28,9 @@
;;; UTILS
+;; some JSON fields that are returned under the "source" field need to be
+;; sent back in the format source[key], while some others are sent kust as
+;; key:
(defun mastodon-transient-parse-source-key (key)
"Parse mastodon source KEY.
If KEY needs to be source[key], format like so, else just return
@@ -54,22 +57,23 @@ the inner key part."
;; fields utils:
;; 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))))))
+(defun mastodon-transient--fields-alist (fields)
+ "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."
@@ -86,11 +90,9 @@ the inner key part."
(transient-define-suffix mastodon-user-settings-update (&optional args)
"Update current user settings on the server."
:transient 'transient--do-exit
- ;; interactive receives args from the prefix:
(interactive (list (transient-args 'mastodon-user-settings)))
- (let* ((only-changed (tp-only-changed-args args))
- (arrays (tp-dots-to-arrays only-changed))
- (strs (tp-bools-to-strs arrays)) ;; we can't PATCH json
+ (let* ((parsed (tp-parse-args-for-send args :strings))
+ (strs (mastodon-transient-parse-source-keys parsed))
(url (mastodon-http--api "accounts/update_credentials"))
(resp (mastodon-http--patch url strs))) ;; :json fails
(mastodon-http--triage
@@ -148,25 +150,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-alist 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 +197,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