blob: 42e64cf9ca4ef799934b9efdd649497556877988 (
plain) (
tree)
|
|
package main
import (
"net/http"
"net/url"
)
const (
errSrcInvalid = "source contains no valid URL"
)
// endpoint is a webmention receiver.
type endpoint struct {
allowPrefix string
}
// ServeHTTP is http.Handler implementation.
func (ep endpoint) ServeHTTP(w http.ResponseWriter, r *http.Request) {
_, err := url.Parse(r.PostFormValue("source"))
if err != nil {
w.WriteHeader(http.StatusBadRequest)
w.Write([]byte(errSrcInvalid))
}
}
|