blob: 82fac8cf1e3c3d0ba69aa279cf6938f8045fca1e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
(require 'mastodon-auth)
(require 'mastodon-http)
(defgroup mastodon-toot nil
"Capture Mastodon toots."
:group 'mastodon)
(defun mastodon-new-toot ()
(interactive)
(progn
(switch-to-buffer-other-window (get-buffer-create "*new toot*"))
(mastodon-toot-mode t)))
(defun mastodon-toot--send ()
(interactive)
(let ((toot (buffer-string))
(endpoint (mastodon--api-for "statuses")))
(progn
(kill-buffer-and-window)
(mastodon--http-post endpoint
(lambda (status) (switch-to-buffer (current-buffer))) ;; FIXME
`(("status" . ,toot)
("visibility" . "public"))
`(("Authorization" . ,(concat
"Bearer "
(mastodon--access-token))))))))
(defun mastodon-toot--cancel ()
(interactive)
(kill-buffer-and-window))
(defvar mastodon-toot-mode-map
(let ((map (make-sparse-keymap)))
(define-key map (kbd "C-c C-c") #'mastodon-toot--send)
(define-key map (kbd "C-c C-k") #'mastodon-toot--cancel)
map)
"Keymap for `mastodon-toot-mode'.")
(define-minor-mode mastodon-toot-mode
"Minor mode to capture Mastodon toots."
:group 'mastodon-toot
:keymap mastodon-toot-mode-map
:global nil)
(provide 'mastodon-toot)
|