Updating twilio config.
This commit is contained in:
parent
612599a032
commit
e6417371c4
|
@ -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)
|
||||
}
|
||||
}
|
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue