mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-19 16:10:12 +01:00
🎨 数据历史文档中支持操作类型过滤 https://github.com/siyuan-note/siyuan/issues/5754
This commit is contained in:
parent
bd0ec0dcf2
commit
5be606ad3c
3 changed files with 60 additions and 3 deletions
|
|
@ -44,9 +44,11 @@ func searchHistory(c *gin.Context) {
|
||||||
if nil != arg["op"] {
|
if nil != arg["op"] {
|
||||||
op = arg["op"].(string)
|
op = arg["op"].(string)
|
||||||
}
|
}
|
||||||
histories := model.FullTextSearchHistory(query, op, page)
|
histories, pageCount, totalCount := model.FullTextSearchHistory(query, op, page)
|
||||||
ret.Data = map[string]interface{}{
|
ret.Data = map[string]interface{}{
|
||||||
"histories": histories,
|
"histories": histories,
|
||||||
|
"pageCount": pageCount,
|
||||||
|
"totalCount": totalCount,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -21,6 +21,7 @@ import (
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io/fs"
|
"io/fs"
|
||||||
|
"math"
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"sort"
|
"sort"
|
||||||
|
|
@ -275,7 +276,7 @@ func GetDocHistory(boxID string, page int) (ret []*History, err error) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
func FullTextSearchHistory(query, op string, page int) (ret []*History) {
|
func FullTextSearchHistory(query, op string, page int) (ret []*History, pageCount, totalCount int) {
|
||||||
query = gulu.Str.RemoveInvisible(query)
|
query = gulu.Str.RemoveInvisible(query)
|
||||||
query = stringQuery(query)
|
query = stringQuery(query)
|
||||||
|
|
||||||
|
|
@ -288,9 +289,19 @@ func FullTextSearchHistory(query, op string, page int) (ret []*History) {
|
||||||
if "all" != op {
|
if "all" != op {
|
||||||
stmt += " AND op = '" + op + "'"
|
stmt += " AND op = '" + op + "'"
|
||||||
}
|
}
|
||||||
|
countStmt := strings.ReplaceAll(stmt, "SELECT *", "SELECT COUNT(*) AS total")
|
||||||
stmt += " ORDER BY created DESC LIMIT " + strconv.Itoa(from) + ", " + strconv.Itoa(to)
|
stmt += " ORDER BY created DESC LIMIT " + strconv.Itoa(from) + ", " + strconv.Itoa(to)
|
||||||
sqlHistories := sql.SelectHistoriesRawStmt(stmt)
|
sqlHistories := sql.SelectHistoriesRawStmt(stmt)
|
||||||
ret = fromSQLHistories(sqlHistories)
|
ret = fromSQLHistories(sqlHistories)
|
||||||
|
result, err := sql.QueryHistory(countStmt)
|
||||||
|
if nil != err {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if 1 > len(result) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
totalCount = int(result[0]["matches"].(int64))
|
||||||
|
pageCount = int(math.Ceil(float64(totalCount) / float64(pageSize)))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -18,6 +18,7 @@ package sql
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"database/sql"
|
"database/sql"
|
||||||
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
|
|
@ -33,6 +34,49 @@ type History struct {
|
||||||
Path string
|
Path string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func QueryHistory(stmt string) (ret []map[string]interface{}, err error) {
|
||||||
|
ret = []map[string]interface{}{}
|
||||||
|
rows, err := queryHistory(stmt)
|
||||||
|
if nil != err {
|
||||||
|
logging.LogWarnf("sql query [%s] failed: %s", stmt, err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
defer rows.Close()
|
||||||
|
|
||||||
|
cols, _ := rows.Columns()
|
||||||
|
if nil == cols {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
for rows.Next() {
|
||||||
|
columns := make([]interface{}, len(cols))
|
||||||
|
columnPointers := make([]interface{}, len(cols))
|
||||||
|
for i := range columns {
|
||||||
|
columnPointers[i] = &columns[i]
|
||||||
|
}
|
||||||
|
|
||||||
|
if err = rows.Scan(columnPointers...); nil != err {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
m := make(map[string]interface{})
|
||||||
|
for i, colName := range cols {
|
||||||
|
val := columnPointers[i].(*interface{})
|
||||||
|
m[colName] = *val
|
||||||
|
}
|
||||||
|
ret = append(ret, m)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func queryHistory(query string, args ...interface{}) (*sql.Rows, error) {
|
||||||
|
query = strings.TrimSpace(query)
|
||||||
|
if "" == query {
|
||||||
|
return nil, errors.New("statement is empty")
|
||||||
|
}
|
||||||
|
return historyDB.Query(query, args...)
|
||||||
|
}
|
||||||
|
|
||||||
func SelectHistoriesRawStmt(stmt string) (ret []*History) {
|
func SelectHistoriesRawStmt(stmt string) (ret []*History) {
|
||||||
rows, err := historyDB.Query(stmt)
|
rows, err := historyDB.Query(stmt)
|
||||||
if nil != err {
|
if nil != err {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue