all repos — honk @ 22c10e0bbc0c2135b57fd2e1ac96c9074350cc8e

my fork of honk

masto.go (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
package main

import (
	"net/http"

	"humungus.tedunangst.com/r/webs/junk"
)

func badjunk(rw http.ResponseWriter, j junk.Junk) {
	elog.Printf("oauthorize: bad junk: %v", j)
	http.Error(rw, "oauthorize: bad junk", http.StatusBadRequest)
}

func oauthorize(rw http.ResponseWriter, r *http.Request) {
	j, err := junk.Read(r.Body)
	if err != nil {
		badjunk(rw, j)
	}

	dlog.Println(j)
}