gtranslate/api.go

33 lines
671 B
Go
Raw Normal View History

2021-01-22 20:42:13 +00:00
package main
import (
"net/http"
)
func CreateApiHandler(settings *TranslateSettings) func(w http.ResponseWriter, req *http.Request) {
return func(w http.ResponseWriter, req *http.Request) {
from := req.FormValue("from")
if from == "" {
writeError(w, 400, "'from' field is missing")
return
}
to := req.FormValue("to")
if to == "" {
writeError(w, 400, "'to' field is missing")
return
}
text := req.FormValue("text")
if text == "" {
writeError(w, 400, "'text' field is missing")
return
}
translation, err := Translate(settings, from, to, text)
if err != nil {
writeError(w, 500, err)
}
w.Write([]byte(translation))
}
}