Updating twilio config.

This commit is contained in:
K. Isom 2021-04-19 13:16:56 -07:00
parent 612599a032
commit e6417371c4
2 changed files with 52 additions and 46 deletions

50
conn/twilio/handler.go Normal file
View File

@ -0,0 +1,50 @@
package http
import (
"context"
"log"
"net/http"
"kas/cps"
)
func handler(w http.ResponseWriter, r *http.Request) {
if r.Method != http.MethodPost {
log.Printf("twilio receive hook: received %s request; only %s requests are supported",
r.Method, http.MethodPost)
http.Error(w, "invalid request", http.StatusBadRequest)
return
}
err := r.ParseForm()
if err != nil {
log.Printf("twilio receive hook: couldn't parse form contents: %s", err)
http.Error(w, "invalid request", http.StatusBadRequest)
return
}
message, err := MessageFromValues(r.Form)
if err != nil {
log.Printf("twilio receive hook: received an invalid message: %s", err)
http.Error(w, "invalid request", http.StatusBadRequest)
return
}
if !config.NumberAuthorized(message.Source) {
log.Printf("twilio receive hook: received message from unknown sender %v", message)
http.Error(w, "not authorized", http.StatusUnauthorized)
return
}
w.Write([]byte("accepted"))
response, err := cps.Handle(context.Background(), message.Body)
if err != nil {
log.Printf("twilio receive hook: %s", err)
}
err = Send(message.Source, response.String())
if err != nil {
log.Printf("twilio receive hook: %s", err)
}
}

View File

@ -1,53 +1,9 @@
package twilio
import (
"context"
"kas/cps"
"log"
"net/http"
"kas/conn/http"
)
func handler(w http.ResponseWriter, r *http.Request) {
if r.Method != http.MethodPost {
log.Printf("twilio receive hook: received %s request; only %s requests are supported",
r.Method, http.MethodPost)
http.Error(w, "invalid request", http.StatusBadRequest)
return
}
err := r.ParseForm()
if err != nil {
log.Printf("twilio receive hook: couldn't parse form contents: %s", err)
http.Error(w, "invalid request", http.StatusBadRequest)
return
}
message, err := MessageFromValues(r.Form)
if err != nil {
log.Printf("twilio receive hook: received an invalid message: %s", err)
http.Error(w, "invalid request", http.StatusBadRequest)
return
}
if !config.NumberAuthorized(message.Source) {
log.Printf("twilio receive hook: received message from unknown sender %v", message)
http.Error(w, "not authorized", http.StatusUnauthorized)
return
}
w.Write([]byte("accepted"))
response, err := cps.Handle(context.Background(), message.Body)
if err != nil {
log.Printf("twilio receive hook: %s", err)
}
err = Send(message.Source, response.String())
if err != nil {
log.Printf("twilio receive hook: %s", err)
}
}
func Start() error {
func Start() {
http.AddRoute("/twilio", handler)
}