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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
|
;;; mastodon-auth.el --- Auth functions for mastodon.el
;; Copyright (C) 2017 Johnson Denen
;; Author: Johnson Denen <johnson.denen@gmail.com>
;; Homepage: https://github.com/jdenen/mastodon.el
;; This file is not part of GNU Emacs.
;; This file is part of mastodon.el.
;; mastodon.el 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.
;; mastodon.el 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 mastodon.el. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;; mastodon-auth.el supports authorizing and authenticating with Mastodon.
;;; Code:
(require 'plstore)
(require 'mastodon)
(require 'mastodon-http)
(defgroup mastodon-auth nil
"Authenticate with Mastodon."
:prefix "mastodon-auth-"
:group 'mastodon)
(defvar mastodon--client-app-plist nil)
(defvar mastodon--api-token-string nil)
(defun mastodon-auth--registration-success ()
(let ((client-data (mastodon--json-hash-table)))
(setq mastodon--client-app-plist
`(:client_id
,(gethash "client_id" client-data)
:client_secret
,(gethash "client_secret" client-data)))))
(defun mastodon--register-client-app-triage (status)
"Callback function to triage `mastodon--register-client-app' response.
STATUS is passed by `url-retrieve'."
(mastodon--http-response-triage status
'mastodon-auth--registration-success))
(defun mastodon--register-client-app ()
"Add `:client_id' and `client_secret' to `mastodon--client-plist'."
(mastodon--http-post (mastodon--api-for "apps")
'mastodon--register-client-app-triage
'(("client_name" . "mastodon.el")
("redirect_uris" . "urn:ietf:wg:oauth:2.0:oob")
("scopes" . "read write follow")
("website" . "https://github.com/jdenen/mastodon.el"))))
(defun mastodon--register-and-return-client-app ()
"Register `mastodon' with an instance. Return `mastodon--client-app-plist'."
(mastodon--register-client-app))
(defun mastodon--store-client-id-and-secret ()
"Store `:client_id' and `:client_secret' in a plstore."
(let ((client-plist (mastodon--register-and-return-client-app))
(plstore (plstore-open mastodon-token-file)))
(plstore-put plstore "mastodon" `(:client_id
,(plist-get client-plist :client_id)
:client_secret
,(plist-get client-plist :client_secret))
nil)
(plstore-save plstore)
client-plist))
(defun mastodon--client-app ()
"Return `mastodon--client-app-plist'.
If not set, retrieves client data from `mastodon-token-file'.
If no data can be found in the token file, registers the app and stores its data via `mastodon--store-client-id-and-secret'."
(if (plist-get mastodon--client-app-plist :client_secret)
mastodon--client-app-plist
(let* ((plstore (plstore-open mastodon-token-file))
(mastodon (plstore-get plstore "mastodon")))
(if mastodon
(progn
(setq mastodon--client-app-plist (delete "mastodon" mastodon))
mastodon--client-app-plist)
(progn
(setq mastodon--client-app-plist (mastodon--store-client-id-and-secret))
mastodon--client-app-plist)))))
(defun mastodon--get-access-token-triage (status)
"Callback function to triage `mastodon--get-access-token' response.
STATUS is passed by `url-retrieve'."
(mastodon--http-response-triage status
(lambda ()
(let ((token-data (mastodon--json-hash-table)))
(progn
(setq mastodon--api-token-string (gethash "access_token" token-data))
mastodon--api-token-string)))))
(defun mastodon--get-access-token ()
"Retrieve access token from instance.
Authenticates with email address and password. Neither are not stored."
(mastodon--http-post (concat mastodon-instance-url "/oauth/token")
'mastodon--get-access-token-triage
`(("client_id" . ,(plist-get (mastodon--client-app) :client_id))
("client_secret" . ,(plist-get (mastodon--client-app) :client_secret))
("grant_type" . "password")
("username" . ,(read-string "Email: "))
("password" . ,(read-passwd "Password: "))
("scope" . "read write follow"))))
(defun mastodon--access-token ()
"Return `mastodon--api-token-string'.
If not set, retrieves token with `mastodon--get-access-token'."
(if mastodon--api-token-string
mastodon--api-token-string
(progn
(mastodon--get-access-token)
(while (not mastodon--api-token-string)
(sleep-for 1)
(mastodon--access-token))
mastodon--api-token-string)))
(provide 'mastodon-auth)
;;; mastodon-auth.el ends here
|