forked from gramework/gramework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinfrastructure.go
More file actions
35 lines (31 loc) · 818 Bytes
/
infrastructure.go
File metadata and controls
35 lines (31 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package gramework
import (
"time"
"github.com/gramework/gramework/infrastructure"
)
var infrastructureServiceRegistrationErr = map[string]string{
"error": "can't parse the query",
}
// ServeInfrastructure serves Infrastructure info
// It's an integration of our module
func (app *App) ServeInfrastructure(i *infrastructure.Infrastructure) {
app.GET("/infrastructure", func(ctx *Context) {
i.Lock.RLock()
i.CurrentTimestamp = time.Now().UnixNano()
ctx.CORS()
ctx.JSON(i)
i.Lock.RUnlock()
})
app.POST("/infrastructure/register/service", func(ctx *Context) {
s := infrastructure.Service{
Addresses: make([]infrastructure.Address, 0),
}
_, err := ctx.UnJSONBytes(ctx.PostBody(), &s)
if err != nil {
ctx.JSONError(err.Error())
return
}
i.MergeService(s.Name, s)
ctx.JSON(s)
})
}