forked from TruthHun/DocHub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
60 lines (51 loc) · 2.5 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
package main
import (
"fmt"
"github.com/TruthHun/DocHub/controllers/HomeControllers"
"github.com/TruthHun/DocHub/helper"
"github.com/TruthHun/DocHub/models"
_ "github.com/TruthHun/DocHub/routers"
"github.com/astaxie/beego"
)
func main() {
//定义错误和异常处理控制器
beego.ErrorController(&HomeControllers.BaseController{})
beego.Run()
}
//初始化函数
func init() {
fmt.Println("")
fmt.Println("Powered By DocHub")
fmt.Println("Version:", helper.VERSION)
fmt.Println("")
//sitemap静态目录
beego.SetStaticPath("/sitemap", "sitemap")
//初始化日志
helper.InitLogs()
//初始化分词器
go helper.Segmenter.LoadDictionary("./dictionary/dictionary.txt")
beego.AddFuncMap("TimestampFormat", helper.TimestampFormat)
beego.AddFuncMap("Interface2Int", helper.Interface2Int)
beego.AddFuncMap("Interface2String", helper.Interface2String)
beego.AddFuncMap("Default", helper.Default)
beego.AddFuncMap("FormatByte", helper.FormatByte)
beego.AddFuncMap("CalcInt", helper.CalcInt)
beego.AddFuncMap("StarVal", helper.StarVal)
beego.AddFuncMap("Equal", helper.Equal)
beego.AddFuncMap("SimpleList", models.NewDocument().TplSimpleList) //简易的文档列表
beego.AddFuncMap("HandlePageNum", helper.HandlePageNum) //处理文档页码为0的显示问题
beego.AddFuncMap("DoesCollect", models.DoesCollect) //判断用户是否已收藏了该文档
beego.AddFuncMap("DoesSign", models.NewSign().DoesSign) //用户今日是否已签到
beego.AddFuncMap("Friends", models.NewFriend().Friends) //友情链接
beego.AddFuncMap("DefPic", models.NewOss().DefaultPicture) //获取默认图片
beego.AddFuncMap("CategoryName", models.NewCategory().GetTitleById) //根据分类id获取分类名称
beego.AddFuncMap("IsIllegal", models.NewDocument().IsIllegal) //根据md5判断文档是否是非法文档
beego.AddFuncMap("IsRemark", models.NewDocumentRemark().IsRemark) //根据文档是否存在备注
beego.AddFuncMap("Xmd5", helper.Xmd5) //xmd5,MD5扩展加密
beego.AddFuncMap("BuildURL", helper.BuildURL) //创建URL
beego.AddFuncMap("HeightLight", helper.HeightLight) //高亮
beego.AddFuncMap("ReportReason", models.NewSys().GetReportReason) //举报原因
beego.AddFuncMap("GetDescByMd5", models.NewDocText().GetDescByMd5)
beego.AddFuncMap("GetDescByDsId", models.NewDocText().GetDescByDsId)
beego.AddFuncMap("GetDescByDid", models.NewDocText().GetDescByDid)
}