forked from unknwon/gowalker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gowalker.go
97 lines (84 loc) · 2.44 KB
/
gowalker.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
// Copyright 2014 Unknwon
//
// Licensed under the Apache License, Version 2.0 (the "License"): you may
// not use this file except in compliance with the License. You may obtain
// a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
// License for the specific language governing permissions and limitations
// under the License.
// Go Walker is a server that generates Go projects API documentation on the fly.
package main
import (
"fmt"
"net/http"
"strings"
"github.com/go-macaron/i18n"
"github.com/go-macaron/pongo2"
"github.com/go-macaron/session"
"github.com/prometheus/client_golang/prometheus/promhttp"
log "gopkg.in/clog.v1"
"gopkg.in/macaron.v1"
"github.com/unknwon/gowalker/internal/context"
_ "github.com/unknwon/gowalker/internal/prometheus"
"github.com/unknwon/gowalker/internal/route"
"github.com/unknwon/gowalker/internal/route/apiv1"
"github.com/unknwon/gowalker/internal/setting"
)
const Version = "2.5.3.1020"
func init() {
setting.AppVer = Version
}
// newMacaron initializes Macaron instance.
func newMacaron() *macaron.Macaron {
m := macaron.New()
if !setting.DisableRouterLog {
m.Use(macaron.Logger())
}
m.Use(macaron.Recovery())
m.Use(macaron.Static("public",
macaron.StaticOptions{
SkipLogging: setting.ProdMode,
},
))
m.Use(macaron.Static("raw",
macaron.StaticOptions{
Prefix: "raw",
SkipLogging: setting.ProdMode,
}))
m.Use(pongo2.Pongoer(pongo2.Options{
IndentJSON: !setting.ProdMode,
}))
m.Use(i18n.I18n())
m.Use(session.Sessioner())
m.Use(context.Contexter())
return m
}
func main() {
log.Info("Go Walker %s", Version)
log.Info("Run Mode: %s", strings.Title(macaron.Env))
m := newMacaron()
m.Get("/", route.Home)
m.Get("/search", route.Search)
m.Get("/search/json", route.SearchJSON)
m.Group("/api", func() {
m.Group("/v1", func() {
m.Get("/badge", apiv1.Badge)
})
})
m.Get("/-/metrics", promhttp.Handler())
m.Get("/robots.txt", func() string {
return `User-agent: *
Disallow: /search`
})
m.Get("/*", route.Docs)
listenAddr := fmt.Sprintf("0.0.0.0:%d", setting.HTTPPort)
log.Info("Listen: http://%s", listenAddr)
if err := http.ListenAndServe(listenAddr, m); err != nil {
log.Fatal(2, "Failed to start server: %v", err)
}
}