mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-16 22:50:13 +01:00
🎨 文档数据文件 ID 重复时自动重置 ID Fix https://github.com/siyuan-note/siyuan/issues/7340
This commit is contained in:
parent
698f130ffa
commit
1015ef4037
2 changed files with 57 additions and 45 deletions
|
|
@ -112,61 +112,69 @@ func resetDuplicateTrees() {
|
|||
util.PushStatusBar(Conf.Language(58))
|
||||
boxes := Conf.GetBoxes()
|
||||
luteEngine := lute.New()
|
||||
|
||||
type TreePath struct {
|
||||
box *Box
|
||||
path string
|
||||
absPath string
|
||||
}
|
||||
|
||||
var paths []*TreePath
|
||||
for _, box := range boxes {
|
||||
boxPath := filepath.Join(util.DataDir, box.ID)
|
||||
paths := map[string]string{}
|
||||
filepath.Walk(boxPath, func(path string, info os.FileInfo, err error) error {
|
||||
if !info.IsDir() && filepath.Ext(path) == ".sy" && !strings.Contains(filepath.ToSlash(path), "/assets/") {
|
||||
p := path[len(boxPath):]
|
||||
p = filepath.ToSlash(p)
|
||||
paths[p] = path
|
||||
paths = append(paths, &TreePath{box, p, path})
|
||||
}
|
||||
return nil
|
||||
})
|
||||
}
|
||||
|
||||
names := map[string]bool{}
|
||||
duplicatedPaths := map[string]string{}
|
||||
for p, absPath := range paths {
|
||||
name := path.Base(p)
|
||||
if !ast.IsNodeIDPattern(strings.TrimSuffix(name, ".sy")) {
|
||||
logging.LogWarnf("invalid .sy file name [%s]", p)
|
||||
box.moveCorruptedData(absPath)
|
||||
continue
|
||||
}
|
||||
|
||||
if !names[name] {
|
||||
names[name] = true
|
||||
continue
|
||||
}
|
||||
|
||||
duplicatedPaths[p] = absPath
|
||||
names := map[string]bool{}
|
||||
var duplicatedPaths []*TreePath
|
||||
for _, treePath := range paths {
|
||||
p := treePath.path
|
||||
absPath := treePath.absPath
|
||||
name := path.Base(p)
|
||||
if !ast.IsNodeIDPattern(strings.TrimSuffix(name, ".sy")) {
|
||||
logging.LogWarnf("invalid .sy file name [%s]", p)
|
||||
treePath.box.moveCorruptedData(absPath)
|
||||
continue
|
||||
}
|
||||
|
||||
for p, absPath := range duplicatedPaths {
|
||||
logging.LogWarnf("exist more than one file with same id [%s], reset it", p)
|
||||
if !names[name] {
|
||||
names[name] = true
|
||||
continue
|
||||
}
|
||||
|
||||
tree, loadErr := filesys.LoadTree(box.ID, p, luteEngine)
|
||||
if nil != loadErr {
|
||||
logging.LogWarnf("load tree [%s] failed: %s", p, loadErr)
|
||||
box.moveCorruptedData(absPath)
|
||||
duplicatedPaths = append(duplicatedPaths, treePath)
|
||||
}
|
||||
|
||||
for _, duplicatedPath := range duplicatedPaths {
|
||||
p := duplicatedPath.path
|
||||
absPath := duplicatedPath.absPath
|
||||
box := duplicatedPath.box
|
||||
logging.LogWarnf("exist more than one file with same id [%s], reset it", p)
|
||||
|
||||
tree, loadErr := filesys.LoadTree(box.ID, p, luteEngine)
|
||||
if nil != loadErr {
|
||||
logging.LogWarnf("load tree [%s] failed: %s", p, loadErr)
|
||||
box.moveCorruptedData(absPath)
|
||||
continue
|
||||
}
|
||||
|
||||
resetTree(tree, "")
|
||||
createTreeTx(tree)
|
||||
if gulu.File.IsDir(strings.TrimSuffix(absPath, ".sy")) {
|
||||
// 重命名子文档文件夹
|
||||
if renameErr := os.Rename(strings.TrimSuffix(absPath, ".sy"), filepath.Join(filepath.Dir(absPath), tree.ID)); nil != renameErr {
|
||||
logging.LogWarnf("rename [%s] failed: %s", absPath, renameErr)
|
||||
continue
|
||||
}
|
||||
|
||||
resetTree(tree, "Duplicated")
|
||||
createTreeTx(tree)
|
||||
if gulu.File.IsDir(strings.TrimSuffix(absPath, ".sy")) {
|
||||
// 重命名子文档文件夹
|
||||
if renameErr := os.Rename(strings.TrimSuffix(absPath, ".sy"), filepath.Join(filepath.Dir(absPath), tree.ID)); nil != renameErr {
|
||||
logging.LogWarnf("rename [%s] failed: %s", absPath, renameErr)
|
||||
continue
|
||||
}
|
||||
}
|
||||
os.RemoveAll(absPath)
|
||||
}
|
||||
|
||||
if util.IsExiting {
|
||||
break
|
||||
}
|
||||
os.RemoveAll(absPath)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -38,14 +38,18 @@ import (
|
|||
func resetTree(tree *parse.Tree, titleSuffix string) {
|
||||
tree.ID = ast.NewNodeID()
|
||||
tree.Root.ID = tree.ID
|
||||
if t, parseErr := time.Parse("20060102150405", util.TimeFromID(tree.ID)); nil == parseErr {
|
||||
titleSuffix += " " + t.Format("2006-01-02 15:04:05")
|
||||
} else {
|
||||
titleSuffix = "Duplicated " + time.Now().Format("2006-01-02 15:04:05")
|
||||
|
||||
if "" != titleSuffix {
|
||||
if t, parseErr := time.Parse("20060102150405", util.TimeFromID(tree.ID)); nil == parseErr {
|
||||
titleSuffix += " " + t.Format("2006-01-02 15:04:05")
|
||||
} else {
|
||||
titleSuffix = "Duplicated " + time.Now().Format("2006-01-02 15:04:05")
|
||||
}
|
||||
titleSuffix = "(" + titleSuffix + ")"
|
||||
titleSuffix = " " + titleSuffix
|
||||
}
|
||||
titleSuffix = "(" + titleSuffix + ")"
|
||||
tree.Root.SetIALAttr("id", tree.ID)
|
||||
tree.Root.SetIALAttr("title", tree.Root.IALAttr("title")+" "+titleSuffix)
|
||||
tree.Root.SetIALAttr("title", tree.Root.IALAttr("title")+titleSuffix)
|
||||
tree.Root.RemoveIALAttr("scroll")
|
||||
p := path.Join(path.Dir(tree.Path), tree.ID) + ".sy"
|
||||
tree.Path = p
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue