1
0
mirror of https://github.com/gusaul/grpcox.git synced 2024-09-29 04:10:39 +00:00
grpcox/handler/types.go
2018-11-05 02:56:06 +07:00

45 lines
888 B
Go

package handler
import (
"encoding/json"
"html/template"
"net/http"
"regexp"
)
var (
reGetFuncArg *regexp.Regexp
indexHTML *template.Template
)
func init() {
reGetFuncArg = regexp.MustCompile("\\( (.*) \\) returns")
indexHTML = template.Must(template.New("index.html").Delims("{[", "]}").ParseFiles("index/index.html"))
}
// Response - Standar ajax Response
type Response struct {
Error string `json:"error,omitempty"`
Data interface{} `json:"data"`
}
func writeError(w http.ResponseWriter, err error) {
e, _ := json.Marshal(Response{
Error: err.Error(),
})
w.Header().Set("Content-Type", "application/json")
w.WriteHeader(http.StatusOK)
w.Write(e)
}
func response(w http.ResponseWriter, data interface{}) {
e, _ := json.Marshal(Response{
Data: data,
})
w.Header().Set("Content-Type", "application/json")
w.WriteHeader(http.StatusOK)
w.Write(e)
}