forked from micheartin/docgen-yes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
util.go
63 lines (54 loc) · 1.18 KB
/
util.go
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package docgen
import (
"go/build"
"os"
)
func copyDocRouter(dr DocRouter) DocRouter {
var (
cloneRouter func(dr DocRouter) DocRouter
cloneRoutes func(drt DocRoutes) DocRoutes
)
cloneRoutes = func(drts DocRoutes) DocRoutes {
rts := DocRoutes{}
for pat, drt := range drts {
rt := DocRoute{
Pattern: drt.Pattern,
Handlers: map[string]DocHandler{},
Router: &DocRouter{
Middlewares: []DocMiddleware{},
Routes: map[string]DocRoute{},
},
}
if len(drt.Handlers) > 0 {
rt.Handlers = DocHandlers{}
for meth, dh := range drt.Handlers {
rt.Handlers[meth] = dh
}
}
if drt.Router != nil {
rr := cloneRouter(*drt.Router)
rt.Router = &rr
}
rts[pat] = rt
}
return rts
}
cloneRouter = func(dr DocRouter) DocRouter {
cr := DocRouter{
Middlewares: []DocMiddleware{},
Routes: map[string]DocRoute{},
}
cr.Middlewares = make([]DocMiddleware, len(dr.Middlewares))
copy(cr.Middlewares, dr.Middlewares)
cr.Routes = cloneRoutes(dr.Routes)
return cr
}
return cloneRouter(dr)
}
func getGoPath() string {
goPath := os.Getenv("GOPATH")
if goPath == "" {
goPath = build.Default.GOPATH
}
return goPath
}