forked from b3log/pipe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindexctl.go
81 lines (66 loc) · 2.26 KB
/
indexctl.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
// Pipe - A small and beautiful blogging platform written in golang.
// Copyright (C) 2017-2019, b3log.org & hacpai.com
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
package controller
import (
"net/http"
"path/filepath"
"text/template"
"github.com/b3log/pipe/model"
"github.com/b3log/pipe/service"
"github.com/b3log/pipe/util"
"github.com/gin-gonic/gin"
)
func showIndexAction(c *gin.Context) {
t, err := template.ParseFiles(filepath.ToSlash(filepath.Join(model.Conf.StaticRoot, "console/dist/index.html")))
if nil != err {
logger.Errorf("load index page failed: " + err.Error())
c.String(http.StatusNotFound, "load index page failed")
return
}
t.Execute(c.Writer, nil)
}
func showStartPageAction(c *gin.Context) {
t, err := template.ParseFiles(filepath.ToSlash(filepath.Join(model.Conf.StaticRoot, "console/dist/start/index.html")))
if nil != err {
logger.Errorf("load start page failed: " + err.Error())
c.String(http.StatusNotFound, "load start page failed")
return
}
t.Execute(c.Writer, nil)
}
func showPlatInfoAction(c *gin.Context) {
result := util.NewResult()
defer c.JSON(http.StatusOK, result)
data := map[string]interface{}{}
data["version"] = model.Version
data["database"] = service.Database()
data["mode"] = model.Conf.RuntimeMode
data["server"] = model.Conf.Server
data["staticServer"] = model.Conf.StaticServer
data["staticResourceVer"] = model.Conf.StaticResourceVersion
result.Data = data
}
func showTopBlogsAction(c *gin.Context) {
result := util.NewResult()
defer c.JSON(http.StatusOK, result)
blogs := service.User.GetTopBlogs(10)
for _, blog := range blogs {
blog.ID = 0
blog.UserID = 0
blog.UserRole = 0
}
result.Data = blogs
}