mirror of
https://github.com/go-micro/go-micro.git
synced 2025-03-29 20:39:48 +02:00
43 lines
1004 B
Go
43 lines
1004 B
Go
package handler
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"net/http"
|
|
"time"
|
|
|
|
example "github.com/micro/go-micro/examples/template/srv/proto/example"
|
|
"github.com/micro/go-micro/v2/client"
|
|
)
|
|
|
|
func ExampleCall(w http.ResponseWriter, r *http.Request) {
|
|
// decode the incoming request as json
|
|
var request map[string]interface{}
|
|
if err := json.NewDecoder(r.Body).Decode(&request); err != nil {
|
|
http.Error(w, err.Error(), 500)
|
|
return
|
|
}
|
|
|
|
// call the backend service
|
|
exampleClient := example.NewExampleService("go.micro.srv.template", client.DefaultClient)
|
|
rsp, err := exampleClient.Call(context.TODO(), &example.Request{
|
|
Name: request["name"].(string),
|
|
})
|
|
if err != nil {
|
|
http.Error(w, err.Error(), 500)
|
|
return
|
|
}
|
|
|
|
// we want to augment the response
|
|
response := map[string]interface{}{
|
|
"msg": rsp.Msg,
|
|
"ref": time.Now().UnixNano(),
|
|
}
|
|
|
|
// encode and write the response as json
|
|
if err := json.NewEncoder(w).Encode(response); err != nil {
|
|
http.Error(w, err.Error(), 500)
|
|
return
|
|
}
|
|
}
|