Process PostForm
This commit is contained in:
parent
c13b259763
commit
c8d4779e94
|
|
@ -195,8 +195,10 @@ func (h *microsubHandler) checkAuthToken(header string, token *TokenResponse) bo
|
||||||
}
|
}
|
||||||
|
|
||||||
func (h *microsubHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
func (h *microsubHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
||||||
|
r.ParseForm()
|
||||||
log.Printf("%s %s\n", r.Method, r.URL)
|
log.Printf("%s %s\n", r.Method, r.URL)
|
||||||
log.Println(r.URL.Query())
|
log.Println(r.URL.Query())
|
||||||
|
log.Println(r.PostForm)
|
||||||
authorization := r.Header.Get("Authorization")
|
authorization := r.Header.Get("Authorization")
|
||||||
|
|
||||||
var token TokenResponse
|
var token TokenResponse
|
||||||
|
|
@ -305,6 +307,7 @@ func (h *microsubHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
||||||
method := values.Get("method")
|
method := values.Get("method")
|
||||||
|
|
||||||
if method == "mark_read" {
|
if method == "mark_read" {
|
||||||
|
values = r.PostForm
|
||||||
channel := values.Get("channel")
|
channel := values.Get("channel")
|
||||||
if uids, e := values["entry"]; e {
|
if uids, e := values["entry"]; e {
|
||||||
h.Backend.MarkRead(channel, uids)
|
h.Backend.MarkRead(channel, uids)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user