🎨 Support database table view assets column when exporting .sy.zip https://github.com/siyuan-note/siyuan/issues/9919

This commit is contained in:
Daniel 2023-12-19 10:47:33 +08:00
parent d8ec52a900
commit bfa4e8af7a
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -1380,6 +1380,39 @@ func exportSYZip(boxID, rootDirPath, baseFolderName string, docPaths []string) (
if copyErr := filelock.Copy(avJSONPath, filepath.Join(exportStorageAvDir, avID+".json")); nil != copyErr {
logging.LogErrorf("copy av json failed: %s", copyErr)
}
attrView, err := av.ParseAttributeView(avID)
if nil != err {
logging.LogErrorf("parse attribute view [%s] failed: %s", avID, err)
return ast.WalkContinue
}
// 导出资源文件列 https://github.com/siyuan-note/siyuan/issues/9919
for _, keyValues := range attrView.KeyValues {
if av.KeyTypeMAsset != keyValues.Key.Type {
continue
}
for _, value := range keyValues.Values {
for _, asset := range value.MAsset {
if !isRelativePath([]byte(asset.Content)) {
continue
}
destPath := filepath.Join(exportFolder, asset.Content)
srcPath, assetErr := GetAssetAbsPath(asset.Content)
if nil != assetErr {
logging.LogWarnf("get asset [%s] abs path failed: %s", asset.Content, assetErr)
continue
}
if copyErr := filelock.Copy(srcPath, destPath); nil != copyErr {
logging.LogErrorf("copy asset failed: %s", copyErr)
}
}
}
}
return ast.WalkContinue
})
}