2023-06-24 20:39:55 +08:00
|
|
|
|
// SiYuan - Refactor your thinking
|
2022-10-30 23:06:12 +08:00
|
|
|
|
// Copyright (c) 2020-present, b3log.org
|
|
|
|
|
|
//
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
|
|
// it under the terms of the GNU Affero 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 Affero General Public License for more details.
|
|
|
|
|
|
//
|
|
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
|
|
package api
|
|
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
|
|
|
|
"github.com/88250/gulu"
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
|
|
"github.com/siyuan-note/siyuan/kernel/model"
|
|
|
|
|
|
"github.com/siyuan-note/siyuan/kernel/util"
|
|
|
|
|
|
)
|
|
|
|
|
|
|
2022-12-10 17:07:33 +08:00
|
|
|
|
func getRecentDocs(c *gin.Context) {
|
|
|
|
|
|
ret := gulu.Ret.NewResult()
|
|
|
|
|
|
defer c.JSON(http.StatusOK, ret)
|
|
|
|
|
|
|
2025-10-24 11:12:14 +08:00
|
|
|
|
// 获取排序参数
|
2025-10-24 11:41:18 +08:00
|
|
|
|
sortBy := "viewedAt" // 默认按浏览时间排序,openAt:按打开时间排序,closedAt:按关闭时间排序
|
2025-11-01 10:36:47 +08:00
|
|
|
|
|
|
|
|
|
|
// 兼容旧版接口,不能直接使用 util.JsonArg()
|
|
|
|
|
|
arg := map[string]interface{}{}
|
|
|
|
|
|
if err := c.ShouldBindJSON(&arg); err == nil {
|
|
|
|
|
|
if arg["sortBy"] != nil {
|
|
|
|
|
|
sortBy = arg["sortBy"].(string)
|
|
|
|
|
|
}
|
2025-10-24 11:12:14 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
data, err := model.GetRecentDocs(sortBy)
|
2024-09-04 04:40:50 +03:00
|
|
|
|
if err != nil {
|
2022-12-10 17:07:33 +08:00
|
|
|
|
ret.Code = -1
|
|
|
|
|
|
ret.Msg = err.Error()
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
ret.Data = data
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-12-04 00:10:36 +08:00
|
|
|
|
func removeCriterion(c *gin.Context) {
|
|
|
|
|
|
ret := gulu.Ret.NewResult()
|
|
|
|
|
|
defer c.JSON(http.StatusOK, ret)
|
|
|
|
|
|
|
|
|
|
|
|
arg, ok := util.JsonArg(c, ret)
|
|
|
|
|
|
if !ok {
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
name := arg["name"].(string)
|
|
|
|
|
|
err := model.RemoveCriterion(name)
|
2024-09-04 04:40:50 +03:00
|
|
|
|
if err != nil {
|
2022-12-04 00:10:36 +08:00
|
|
|
|
ret.Code = -1
|
|
|
|
|
|
ret.Msg = err.Error()
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-12-03 23:49:18 +08:00
|
|
|
|
func setCriterion(c *gin.Context) {
|
|
|
|
|
|
ret := gulu.Ret.NewResult()
|
|
|
|
|
|
defer c.JSON(http.StatusOK, ret)
|
|
|
|
|
|
|
|
|
|
|
|
arg, ok := util.JsonArg(c, ret)
|
|
|
|
|
|
if !ok {
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
param, err := gulu.JSON.MarshalJSON(arg["criterion"])
|
2024-09-04 04:40:50 +03:00
|
|
|
|
if err != nil {
|
2022-12-03 23:49:18 +08:00
|
|
|
|
ret.Code = -1
|
|
|
|
|
|
ret.Msg = err.Error()
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
criterion := &model.Criterion{}
|
2024-09-04 04:40:50 +03:00
|
|
|
|
if err = gulu.JSON.UnmarshalJSON(param, criterion); err != nil {
|
2022-12-03 23:49:18 +08:00
|
|
|
|
ret.Code = -1
|
|
|
|
|
|
ret.Msg = err.Error()
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
err = model.SetCriterion(criterion)
|
2024-09-04 04:40:50 +03:00
|
|
|
|
if err != nil {
|
2022-12-03 23:49:18 +08:00
|
|
|
|
ret.Code = -1
|
|
|
|
|
|
ret.Msg = err.Error()
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func getCriteria(c *gin.Context) {
|
|
|
|
|
|
ret := gulu.Ret.NewResult()
|
|
|
|
|
|
defer c.JSON(http.StatusOK, ret)
|
|
|
|
|
|
|
2022-12-23 17:06:13 +08:00
|
|
|
|
data := model.GetCriteria()
|
2022-12-03 23:49:18 +08:00
|
|
|
|
ret.Data = data
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-03-22 15:21:23 +08:00
|
|
|
|
func removeLocalStorageVals(c *gin.Context) {
|
|
|
|
|
|
ret := gulu.Ret.NewResult()
|
|
|
|
|
|
defer c.JSON(http.StatusOK, ret)
|
|
|
|
|
|
|
|
|
|
|
|
arg, ok := util.JsonArg(c, ret)
|
|
|
|
|
|
if !ok {
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
var keys []string
|
|
|
|
|
|
keysArg := arg["keys"].([]interface{})
|
|
|
|
|
|
for _, key := range keysArg {
|
|
|
|
|
|
keys = append(keys, key.(string))
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
err := model.RemoveLocalStorageVals(keys)
|
2024-09-04 04:40:50 +03:00
|
|
|
|
if err != nil {
|
2023-03-22 15:21:23 +08:00
|
|
|
|
ret.Code = -1
|
|
|
|
|
|
ret.Msg = err.Error()
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
app := arg["app"].(string)
|
2023-03-22 15:22:30 +08:00
|
|
|
|
evt := util.NewCmdResult("removeLocalStorageVals", 0, util.PushModeBroadcastMainExcludeSelfApp)
|
2023-03-22 15:21:23 +08:00
|
|
|
|
evt.AppId = app
|
|
|
|
|
|
evt.Data = map[string]interface{}{"keys": keys}
|
|
|
|
|
|
util.PushEvent(evt)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-10-30 23:06:12 +08:00
|
|
|
|
func setLocalStorageVal(c *gin.Context) {
|
|
|
|
|
|
ret := gulu.Ret.NewResult()
|
|
|
|
|
|
defer c.JSON(http.StatusOK, ret)
|
|
|
|
|
|
|
|
|
|
|
|
arg, ok := util.JsonArg(c, ret)
|
|
|
|
|
|
if !ok {
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
key := arg["key"].(string)
|
|
|
|
|
|
val := arg["val"].(interface{})
|
|
|
|
|
|
err := model.SetLocalStorageVal(key, val)
|
2024-09-04 04:40:50 +03:00
|
|
|
|
if err != nil {
|
2022-10-30 23:06:12 +08:00
|
|
|
|
ret.Code = -1
|
|
|
|
|
|
ret.Msg = err.Error()
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2023-01-01 14:46:05 +08:00
|
|
|
|
app := arg["app"].(string)
|
|
|
|
|
|
evt := util.NewCmdResult("setLocalStorageVal", 0, util.PushModeBroadcastMainExcludeSelfApp)
|
|
|
|
|
|
evt.AppId = app
|
|
|
|
|
|
evt.Data = map[string]interface{}{"key": key, "val": val}
|
|
|
|
|
|
util.PushEvent(evt)
|
2022-10-30 23:06:12 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func setLocalStorage(c *gin.Context) {
|
|
|
|
|
|
ret := gulu.Ret.NewResult()
|
|
|
|
|
|
defer c.JSON(http.StatusOK, ret)
|
|
|
|
|
|
|
|
|
|
|
|
arg, ok := util.JsonArg(c, ret)
|
|
|
|
|
|
if !ok {
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
val := arg["val"].(interface{})
|
|
|
|
|
|
err := model.SetLocalStorage(val)
|
2024-09-04 04:40:50 +03:00
|
|
|
|
if err != nil {
|
2022-10-30 23:06:12 +08:00
|
|
|
|
ret.Code = -1
|
|
|
|
|
|
ret.Msg = err.Error()
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
2023-01-01 13:56:10 +08:00
|
|
|
|
|
|
|
|
|
|
app := arg["app"].(string)
|
2023-01-01 14:09:36 +08:00
|
|
|
|
evt := util.NewCmdResult("setLocalStorage", 0, util.PushModeBroadcastMainExcludeSelfApp)
|
2023-01-01 13:56:10 +08:00
|
|
|
|
evt.AppId = app
|
|
|
|
|
|
evt.Data = val
|
|
|
|
|
|
util.PushEvent(evt)
|
2022-10-30 23:06:12 +08:00
|
|
|
|
}
|
2023-01-01 14:46:05 +08:00
|
|
|
|
|
|
|
|
|
|
func getLocalStorage(c *gin.Context) {
|
|
|
|
|
|
ret := gulu.Ret.NewResult()
|
|
|
|
|
|
defer c.JSON(http.StatusOK, ret)
|
|
|
|
|
|
|
2023-04-07 09:35:10 +08:00
|
|
|
|
data := model.GetLocalStorage()
|
2023-01-01 14:46:05 +08:00
|
|
|
|
ret.Data = data
|
|
|
|
|
|
}
|
2025-10-15 10:01:47 +08:00
|
|
|
|
|
|
|
|
|
|
func getOutlineStorage(c *gin.Context) {
|
|
|
|
|
|
ret := gulu.Ret.NewResult()
|
|
|
|
|
|
defer c.JSON(http.StatusOK, ret)
|
|
|
|
|
|
|
|
|
|
|
|
arg, ok := util.JsonArg(c, ret)
|
|
|
|
|
|
if !ok {
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
docID := arg["docID"].(string)
|
|
|
|
|
|
data, err := model.GetOutlineStorage(docID)
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
ret.Code = -1
|
|
|
|
|
|
ret.Msg = err.Error()
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
ret.Data = data
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func setOutlineStorage(c *gin.Context) {
|
|
|
|
|
|
ret := gulu.Ret.NewResult()
|
|
|
|
|
|
defer c.JSON(http.StatusOK, ret)
|
|
|
|
|
|
|
|
|
|
|
|
arg, ok := util.JsonArg(c, ret)
|
|
|
|
|
|
if !ok {
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
docID := arg["docID"].(string)
|
|
|
|
|
|
val := arg["val"].(interface{})
|
|
|
|
|
|
err := model.SetOutlineStorage(docID, val)
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
ret.Code = -1
|
|
|
|
|
|
ret.Msg = err.Error()
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func removeOutlineStorage(c *gin.Context) {
|
|
|
|
|
|
ret := gulu.Ret.NewResult()
|
|
|
|
|
|
defer c.JSON(http.StatusOK, ret)
|
|
|
|
|
|
|
|
|
|
|
|
arg, ok := util.JsonArg(c, ret)
|
|
|
|
|
|
if !ok {
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
docID := arg["docID"].(string)
|
|
|
|
|
|
err := model.RemoveOutlineStorage(docID)
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
ret.Code = -1
|
|
|
|
|
|
ret.Msg = err.Error()
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-10-24 11:12:14 +08:00
|
|
|
|
|
|
|
|
|
|
func updateRecentDocViewTime(c *gin.Context) {
|
|
|
|
|
|
ret := gulu.Ret.NewResult()
|
|
|
|
|
|
defer c.JSON(http.StatusOK, ret)
|
|
|
|
|
|
|
|
|
|
|
|
arg, ok := util.JsonArg(c, ret)
|
|
|
|
|
|
if !ok {
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
rootID := arg["rootID"].(string)
|
|
|
|
|
|
err := model.UpdateRecentDocViewTime(rootID)
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
ret.Code = -1
|
|
|
|
|
|
ret.Msg = err.Error()
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func updateRecentDocOpenTime(c *gin.Context) {
|
|
|
|
|
|
ret := gulu.Ret.NewResult()
|
|
|
|
|
|
defer c.JSON(http.StatusOK, ret)
|
|
|
|
|
|
|
|
|
|
|
|
arg, ok := util.JsonArg(c, ret)
|
|
|
|
|
|
if !ok {
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
rootID := arg["rootID"].(string)
|
|
|
|
|
|
err := model.UpdateRecentDocOpenTime(rootID)
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
ret.Code = -1
|
|
|
|
|
|
ret.Msg = err.Error()
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func updateRecentDocCloseTime(c *gin.Context) {
|
|
|
|
|
|
ret := gulu.Ret.NewResult()
|
|
|
|
|
|
defer c.JSON(http.StatusOK, ret)
|
|
|
|
|
|
|
|
|
|
|
|
arg, ok := util.JsonArg(c, ret)
|
|
|
|
|
|
if !ok {
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-08 23:11:02 +08:00
|
|
|
|
if nil == arg["rootID"] {
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-10-24 11:12:14 +08:00
|
|
|
|
rootID := arg["rootID"].(string)
|
|
|
|
|
|
err := model.UpdateRecentDocCloseTime(rootID)
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
ret.Code = -1
|
|
|
|
|
|
ret.Msg = err.Error()
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
2025-10-24 11:41:18 +08:00
|
|
|
|
}
|