-
-
Notifications
You must be signed in to change notification settings - Fork 99
/
main.go
140 lines (120 loc) · 3.88 KB
/
main.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
// Pipe - A small and beautiful blogging platform written in golang.
// Copyright (c) 2017-present, b3log.org
//
// Pipe is licensed under Mulan PSL v2.
// You can use this software according to the terms and conditions of the Mulan PSL v2.
// You may obtain a copy of Mulan PSL v2 at:
// http://license.coscl.org.cn/MulanPSL2
// THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
// See the Mulan PSL v2 for more details.
package main
import (
"io"
"io/ioutil"
"math/rand"
"net/http"
_ "net/http/pprof"
"os"
"os/signal"
"path/filepath"
"strings"
"syscall"
"time"
"github.com/88250/gulu"
"github.com/88250/pipe/controller"
"github.com/88250/pipe/cron"
"github.com/88250/pipe/i18n"
"github.com/88250/pipe/model"
"github.com/88250/pipe/service"
"github.com/88250/pipe/theme"
"github.com/88250/pipe/util"
"github.com/gin-gonic/gin"
)
// Logger
var logger *gulu.Logger
// The only one init function in pipe.
func init() {
rand.Seed(time.Now().UTC().UnixNano())
gulu.Log.SetLevel("debug")
logger = gulu.Log.NewLogger(os.Stdout)
model.LoadConf()
i18n.Load()
theme.Load()
replaceServerConf()
if "dev" == model.Conf.RuntimeMode {
gin.SetMode(gin.DebugMode)
} else {
gin.SetMode(gin.ReleaseMode)
}
gin.DefaultWriter = io.MultiWriter(os.Stdout)
}
// Entry point.
func main() {
service.ConnectDB()
service.Upgrade.Perform()
cron.Start()
router := controller.MapRoutes()
server := &http.Server{
Addr: "0.0.0.0:" + model.Conf.Port,
Handler: router,
}
go http.ListenAndServe("0.0.0.0:8154", nil)
handleSignal(server)
logger.Infof("Pipe (v%s) is running [%s]", util.Version, model.Conf.Server)
if err := server.ListenAndServe(); nil != err {
logger.Fatalf("listen and serve failed: " + err.Error())
}
}
// handleSignal handles system signal for graceful shutdown.
func handleSignal(server *http.Server) {
c := make(chan os.Signal)
signal.Notify(c, syscall.SIGINT, syscall.SIGQUIT, syscall.SIGTERM)
go func() {
s := <-c
logger.Infof("got signal [%s], exiting pipe now", s)
if err := server.Close(); nil != err {
logger.Errorf("server close failed: " + err.Error())
}
service.DisconnectDB()
logger.Infof("Pipe exited")
os.Exit(0)
}()
}
func replaceServerConf() {
path := "theme/sw.min.js.tpl"
if gulu.File.IsExist(path) {
data, err := ioutil.ReadFile(path)
if nil != err {
logger.Fatal("read file [" + path + "] failed: " + err.Error())
}
content := string(data)
content = strings.Replace(content, "http://server.tpl.json", model.Conf.Server, -1)
content = strings.Replace(content, "http://staticserver.tpl.json", model.Conf.StaticServer, -1)
content = strings.Replace(content, "${StaticResourceVersion}", model.Conf.StaticResourceVersion, -1)
writePath := strings.TrimSuffix(path, ".tpl")
if err = ioutil.WriteFile(writePath, []byte(content), 0644); nil != err {
logger.Fatal("replace sw.min.js in [" + path + "] failed: " + err.Error())
}
}
if gulu.File.IsExist("console/dist/") {
err := filepath.Walk("console/dist/", func(path string, f os.FileInfo, err error) error {
if strings.HasSuffix(path, ".tpl") {
data, err := ioutil.ReadFile(path)
if nil != err {
logger.Fatal("read file [" + path + "] failed: " + err.Error())
}
content := string(data)
content = strings.Replace(content, "http://server.tpl.json", model.Conf.Server, -1)
content = strings.Replace(content, "http://staticserver.tpl.json", model.Conf.StaticServer, -1)
writePath := strings.TrimSuffix(path, ".tpl")
if err = ioutil.WriteFile(writePath, []byte(content), 0644); nil != err {
logger.Fatal("replace server conf in [" + writePath + "] failed: " + err.Error())
}
}
return err
})
if nil != err {
logger.Fatal("replace server conf in [theme] failed: " + err.Error())
}
}
}