mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-05-02 20:42:06 +08:00
🧑💻 Add a kernel API /api/filetree/getPathByID
* 🧑💻 Add a new api '/api/filetree/getPathByID' * 🧑💻 Add a new api '/api/filetree/getPathByID'
This commit is contained in:
parent
b062d3f45f
commit
593e3141ab
22
API.md
22
API.md
@ -463,6 +463,28 @@ View API token in <kbd>Settings - About</kbd>, request header: `Authorization: T
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Get storage path based on ID
|
||||||
|
|
||||||
|
* `/api/filetree/getPathByID`
|
||||||
|
* Parameters
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"id": "20210917220056-yxtyl7i"
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
* `id`: Block ID
|
||||||
|
* Return value
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"code": 0,
|
||||||
|
"msg": "",
|
||||||
|
"data": "/20210828150719-r8edxl2/20210917220056-yxtyl7i.sy"
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
### Get IDs based on human-readable path
|
### Get IDs based on human-readable path
|
||||||
|
|
||||||
* `/api/filetree/getIDsByHPath`
|
* `/api/filetree/getIDsByHPath`
|
||||||
|
21
API_zh_CN.md
21
API_zh_CN.md
@ -462,6 +462,27 @@
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### 根据 ID 获取存储路径
|
||||||
|
* `/api/filetree/getPathByID`
|
||||||
|
* 参数
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"id": "20210917220056-yxtyl7i"
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
* `id`:块 ID
|
||||||
|
* 返回值
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"code": 0,
|
||||||
|
"msg": "",
|
||||||
|
"data": "/20210828150719-r8edxl2/20210917220056-yxtyl7i.sy"
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
### 根据人类可读路径获取 IDs
|
### 根据人类可读路径获取 IDs
|
||||||
|
|
||||||
* `/api/filetree/getIDsByHPath`
|
* `/api/filetree/getIDsByHPath`
|
||||||
|
@ -364,6 +364,29 @@ func getHPathByID(c *gin.Context) {
|
|||||||
ret.Data = hPath
|
ret.Data = hPath
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func getPathByID(c *gin.Context) {
|
||||||
|
ret := gulu.Ret.NewResult()
|
||||||
|
defer c.JSON(http.StatusOK, ret)
|
||||||
|
|
||||||
|
arg, ok := util.JsonArg(c, ret)
|
||||||
|
if !ok {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
id := arg["id"].(string)
|
||||||
|
if util.InvalidIDPattern(id, ret) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
_path, err := model.GetPathByID(id)
|
||||||
|
if nil != err {
|
||||||
|
ret.Code = -1
|
||||||
|
ret.Msg = err.Error()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
ret.Data = _path
|
||||||
|
}
|
||||||
|
|
||||||
func getFullHPathByID(c *gin.Context) {
|
func getFullHPathByID(c *gin.Context) {
|
||||||
ret := gulu.Ret.NewResult()
|
ret := gulu.Ret.NewResult()
|
||||||
defer c.JSON(http.StatusOK, ret)
|
defer c.JSON(http.StatusOK, ret)
|
||||||
|
@ -106,6 +106,7 @@ func ServeAPI(ginServer *gin.Engine) {
|
|||||||
ginServer.Handle("POST", "/api/filetree/getHPathByPath", model.CheckAuth, getHPathByPath)
|
ginServer.Handle("POST", "/api/filetree/getHPathByPath", model.CheckAuth, getHPathByPath)
|
||||||
ginServer.Handle("POST", "/api/filetree/getHPathsByPaths", model.CheckAuth, getHPathsByPaths)
|
ginServer.Handle("POST", "/api/filetree/getHPathsByPaths", model.CheckAuth, getHPathsByPaths)
|
||||||
ginServer.Handle("POST", "/api/filetree/getHPathByID", model.CheckAuth, getHPathByID)
|
ginServer.Handle("POST", "/api/filetree/getHPathByID", model.CheckAuth, getHPathByID)
|
||||||
|
ginServer.Handle("POST", "/api/filetree/getPathByID", model.CheckAuth, getPathByID)
|
||||||
ginServer.Handle("POST", "/api/filetree/getFullHPathByID", model.CheckAuth, getFullHPathByID)
|
ginServer.Handle("POST", "/api/filetree/getFullHPathByID", model.CheckAuth, getFullHPathByID)
|
||||||
ginServer.Handle("POST", "/api/filetree/getIDsByHPath", model.CheckAuth, getIDsByHPath)
|
ginServer.Handle("POST", "/api/filetree/getIDsByHPath", model.CheckAuth, getIDsByHPath)
|
||||||
ginServer.Handle("POST", "/api/filetree/doc2Heading", model.CheckAuth, model.CheckAdminRole, model.CheckReadonly, doc2Heading)
|
ginServer.Handle("POST", "/api/filetree/doc2Heading", model.CheckAuth, model.CheckAdminRole, model.CheckReadonly, doc2Heading)
|
||||||
|
@ -1327,6 +1327,15 @@ func GetHPathByID(id string) (hPath string, err error) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func GetPathByID(id string) (hPath string, err error) {
|
||||||
|
tree, err := LoadTreeByBlockID(id)
|
||||||
|
if nil != err {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
hPath = tree.Path
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
func GetFullHPathByID(id string) (hPath string, err error) {
|
func GetFullHPathByID(id string) (hPath string, err error) {
|
||||||
tree, err := LoadTreeByBlockID(id)
|
tree, err := LoadTreeByBlockID(id)
|
||||||
if nil != err {
|
if nil != err {
|
||||||
|
Loading…
Reference in New Issue
Block a user