masto.go (view raw)
1package main
2
3import (
4 "database/sql"
5 "fmt"
6 "net/http"
7
8 "humungus.tedunangst.com/r/webs/junk"
9 "humungus.tedunangst.com/r/webs/login"
10)
11
12func showoauthlogin(rw http.ResponseWriter, r *http.Request) {
13 templinfo := make(map[string]interface{})
14 templinfo = getInfo(r)
15 templinfo["ClientID"] = r.URL.Query().Get("client_id")
16 templinfo["RedirectURI"] = r.URL.Query().Get("redirect_uri")
17
18 if err := readviews.Execute(rw, "oauthlogin.html", templinfo); err != nil {
19 elog.Println(err)
20 }
21}
22
23// https://docs.joinmastodon.org/methods/apps/#create
24func apiapps(rw http.ResponseWriter, r *http.Request) {
25 if err := r.ParseForm(); err != nil {
26 http.Error(rw, "invalid input", http.StatusUnprocessableEntity)
27 elog.Println(err)
28 return
29 }
30 clientName := r.Form.Get("client_name")
31 redirectURI := r.Form.Get("redirect_uris")
32 scopes := r.Form.Get("scopes")
33 website := r.Form.Get("website")
34 clientID := tokengen()
35 clientSecret := tokengen()
36 vapidKey := tokengen()
37
38 _, err := stmtSaveMastoApp.Exec(clientName, redirectURI, scopes, clientID, clientSecret, vapidKey, "")
39 if err != nil {
40 elog.Printf("error saving masto app: %v", err)
41 http.Error(rw, "error saving masto app", http.StatusUnprocessableEntity)
42 return
43 }
44
45 j := junk.New()
46 j["id"] = fmt.Sprintf("%d", snowflake())
47 j["website"] = website
48 j["name"] = clientName
49 j["redirect_uri"] = redirectURI
50 j["client_id"] = clientID
51 j["client_secret"] = clientSecret
52 j["vapid_key"] = vapidKey
53
54 fmt.Println(j.ToString())
55 goodjunk(rw, j)
56}
57
58// https://docs.joinmastodon.org/methods/oauth/#authorize
59func oauthorize(rw http.ResponseWriter, r *http.Request) {
60 clientID := r.FormValue("client_id")
61 redirectURI := r.FormValue("redirect_uri")
62
63 err := stmtCheckClientId.QueryRow(clientID).Scan()
64 if err == sql.ErrNoRows {
65 elog.Println("oauth: no such client:", clientID)
66 rw.WriteHeader(http.StatusUnauthorized)
67 return
68 }
69
70 var nrw NotResponseWriter
71 login.LoginFunc(&nrw, r)
72
73 _, err = stmtSaveMastoAppToken.Exec(nrw.auth)
74 if err != nil {
75 elog.Println("oauth: failed to save masto app token", err)
76 rw.WriteHeader(http.StatusInternalServerError)
77 return
78 }
79
80 http.Redirect(rw, r, redirectURI+"?code="+nrw.auth, http.StatusFound)
81 rw.Header().Set("Location", redirectURI+"?code="+nrw.auth)
82 rw.WriteHeader(302)
83 return
84}
85
86// https://docs.joinmastodon.org/methods/instance/#v2
87func instance(rw http.ResponseWriter, r *http.Request) {
88 j := junk.New()
89
90 var servername string
91 if err := getconfig("servername", &servername); err != nil {
92 http.Error(rw, "getting servername", http.StatusInternalServerError)
93 return
94 }
95
96 j["uri"] = servername
97 j["title"] = "honk"
98 j["description"] = "federated honk conveyance"
99 j["version"] = "develop"
100
101 thumbnail := junk.New()
102 thumbnail["url"] = fmt.Sprintf("https://%s/icon.png", servername)
103 j["thumbnail"] = thumbnail
104 j["languages"] = []string{"en"}
105
106 config := junk.New()
107
108 a := junk.New()
109 a["max_featured_tags"] = 10
110 config["accounts"] = a
111
112 s := junk.New()
113 s["max_characters"] = 5000
114 s["max_media_attachments"] = 1
115 s["characters_reserved_per_url"] = 23
116 config["statuses"] = s
117
118 m := junk.New()
119 m["supported_mime_types"] = []string{
120 "image/jpeg",
121 "image/png",
122 "image/gif",
123 "image/heic",
124 "image/heif",
125 "image/webp",
126 "image/avif",
127 "video/webm",
128 "video/mp4",
129 "video/quicktime",
130 "video/ogg",
131 "audio/wave",
132 "audio/wav",
133 "audio/x-wav",
134 "audio/x-pn-wave",
135 "audio/vnd.wave",
136 "audio/ogg",
137 "audio/vorbis",
138 "audio/mpeg",
139 "audio/mp3",
140 "audio/webm",
141 "audio/flac",
142 "audio/aac",
143 "audio/m4a",
144 "audio/x-m4a",
145 "audio/mp4",
146 "audio/3gpp",
147 "video/x-ms-asf",
148 }
149
150 m["image_size_limit"] = 10485760
151 m["image_matrix_limit"] = 16777216
152 m["video_size_limit"] = 41943040
153 m["video_frame_rate_limit"] = 60
154 m["video_matrix_limit"] = 2304000
155 j["media_attachments"] = m
156
157 rw.WriteHeader(http.StatusOK)
158 rw.Write(j.ToBytes())
159
160 return
161}