mindoc/controllers/SearchController.go

123 lines
3.2 KiB
Go
Raw Permalink Normal View History

2017-05-02 18:09:46 +08:00
package controllers
import (
"strconv"
"strings"
"github.com/beego/beego/v2/core/logs"
"github.com/beego/i18n"
"github.com/mindoc-org/mindoc/conf"
"github.com/mindoc-org/mindoc/models"
"github.com/mindoc-org/mindoc/utils"
"github.com/mindoc-org/mindoc/utils/pagination"
"github.com/mindoc-org/mindoc/utils/sqltil"
2017-05-02 18:09:46 +08:00
)
type SearchController struct {
BaseController
}
//搜索首页
func (c *SearchController) Index() {
2017-05-02 18:09:46 +08:00
c.Prepare()
c.TplName = "search/index.tpl"
//如果没有开启你们访问则跳转到登录
if !c.EnableAnonymous && c.Member == nil {
2018-03-13 19:20:50 +08:00
c.Redirect(conf.URLFor("AccountController.Login"), 302)
return
}
2017-05-05 11:43:47 +08:00
2017-05-02 18:09:46 +08:00
keyword := c.GetString("keyword")
pageIndex, _ := c.GetInt("page", 1)
2017-05-02 18:09:46 +08:00
c.Data["BaseUrl"] = c.BaseUrl()
if keyword != "" {
c.Data["Keyword"] = keyword
memberId := 0
2017-05-02 18:09:46 +08:00
if c.Member != nil {
memberId = c.Member.MemberId
2017-05-02 18:09:46 +08:00
}
2018-12-24 15:23:17 +08:00
searchResult, totalCount, err := models.NewDocumentSearchResult().FindToPager(sqltil.EscapeLike(keyword), pageIndex, conf.PageSize, memberId)
2017-05-02 18:09:46 +08:00
if err != nil {
logs.Error("搜索失败 ->", err)
2017-05-02 18:09:46 +08:00
return
}
if totalCount > 0 {
pager := pagination.NewPagination(c.Ctx.Request, totalCount, conf.PageSize, c.BaseUrl())
2018-01-26 18:07:55 +08:00
c.Data["PageHtml"] = pager.HtmlPages()
} else {
2017-05-02 18:09:46 +08:00
c.Data["PageHtml"] = ""
}
if len(searchResult) > 0 {
keywords := strings.Split(keyword, " ")
2017-05-02 18:09:46 +08:00
2018-11-29 15:11:34 +08:00
for _, item := range searchResult {
for _, word := range keywords {
2018-11-29 15:11:34 +08:00
item.DocumentName = strings.Replace(item.DocumentName, word, "<em>"+word+"</em>", -1)
if item.Description != "" {
src := item.Description
2017-05-02 18:09:46 +08:00
2018-11-29 15:11:34 +08:00
r := []rune(utils.StripTags(item.Description))
2017-05-03 16:03:51 +08:00
2018-11-29 15:11:34 +08:00
if len(r) > 100 {
src = string(r[:100])
} else {
src = string(r)
}
item.Description = strings.Replace(src, word, "<em>"+word+"</em>", -1)
2017-05-02 18:09:46 +08:00
}
}
if item.Identify == "" {
2017-05-02 18:09:46 +08:00
item.Identify = strconv.Itoa(item.DocumentId)
}
if item.ModifyTime.IsZero() {
item.ModifyTime = item.CreateTime
}
}
}
c.Data["Lists"] = searchResult
2017-05-02 18:09:46 +08:00
}
}
//搜索用户
func (c *SearchController) User() {
c.Prepare()
key := c.Ctx.Input.Param(":key")
keyword := strings.TrimSpace(c.GetString("q"))
if key == "" || keyword == "" {
c.JsonResult(404, i18n.Tr(c.Lang, "message.param_error"))
}
2018-12-24 15:23:17 +08:00
keyword = sqltil.EscapeLike(keyword)
book, err := models.NewBookResult().FindByIdentify(key, c.Member.MemberId)
if err != nil {
if err == models.ErrPermissionDenied {
c.JsonResult(403, i18n.Tr(c.Lang, "message.no_permission"))
}
c.JsonResult(500, i18n.Tr(c.Lang, "message.item_not_exist"))
}
//members, err := models.NewMemberRelationshipResult().FindNotJoinUsersByAccount(book.BookId, 10, "%"+keyword+"%")
members, err := models.NewMemberRelationshipResult().FindNotJoinUsersByAccountOrRealName(book.BookId, 10, "%"+keyword+"%")
if err != nil {
logs.Error("查询用户列表出错:" + err.Error())
c.JsonResult(500, err.Error())
}
result := models.SelectMemberResult{}
items := make([]models.KeyValueItem, 0)
for _, member := range members {
item := models.KeyValueItem{}
item.Id = member.MemberId
item.Text = member.Account + "[" + member.RealName + "]"
items = append(items, item)
}
result.Result = items
c.JsonResult(0, "OK", result)
}