mirror of
https://github.com/mentos1386/zdravko.git
synced 2024-11-22 15:53:45 +00:00
35 lines
849 B
Go
35 lines
849 B
Go
package handlers
|
|
|
|
import (
|
|
"encoding/json"
|
|
"net/http"
|
|
)
|
|
|
|
type ApiV1WorkersConnectGETResponse struct {
|
|
Endpoint string `json:"endpoint"`
|
|
Group string `json:"group"`
|
|
Slug string `json:"slug"`
|
|
}
|
|
|
|
func (h *BaseHandler) ApiV1WorkersConnectGET(w http.ResponseWriter, r *http.Request, principal *AuthenticatedPrincipal) {
|
|
// Json response containing temporal endpoint
|
|
w.Header().Set("Content-Type", "application/json")
|
|
|
|
response := ApiV1WorkersConnectGETResponse{
|
|
Endpoint: h.config.Temporal.ServerHost,
|
|
Group: principal.Worker.Group,
|
|
Slug: principal.Worker.Slug,
|
|
}
|
|
|
|
responseJson, err := json.Marshal(response)
|
|
if err != nil {
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
return
|
|
}
|
|
|
|
_, err = w.Write(responseJson)
|
|
if err != nil {
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
return
|
|
}
|
|
}
|