code fix
This commit is contained in:
parent
fdbbc02d0a
commit
2d1ac09ba1
1 changed files with 18 additions and 16 deletions
34
tree.go
34
tree.go
|
@ -33,12 +33,13 @@ func BuildTree(dirPath string, meta []string) (Tree, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func PopulateTree(sourcePath string, destPath string, meta []string) error {
|
func PopulateTree(sourcePath string, destPath string, meta []string) error {
|
||||||
err = fixFormat(sourcePath)
|
err := fixFormat(sourcePath)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
id, err := getMaxId(sourcePath)
|
var id int64 = 0
|
||||||
|
id, err = getMaxId(sourcePath)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
@ -68,7 +69,7 @@ func fixFormat(dir string) error {
|
||||||
if info.Mode().IsRegular() {
|
if info.Mode().IsRegular() {
|
||||||
b, err := ioutil.ReadFile(path) // just pass the file name
|
b, err := ioutil.ReadFile(path) // just pass the file name
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
osf, err := os.Open(path)
|
osf, err := os.Open(path)
|
||||||
|
@ -87,9 +88,9 @@ func fixFormat(dir string) error {
|
||||||
format = false
|
format = false
|
||||||
}
|
}
|
||||||
|
|
||||||
if (format) {
|
if format {
|
||||||
line = strings.Trim(line, " ")
|
line = strings.Trim(line, " ")
|
||||||
if (line != "") {
|
if line != "" {
|
||||||
content = content + "\n" + line
|
content = content + "\n" + line
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
@ -151,7 +152,7 @@ func addMissingMeta(dir string, meta []string) error {
|
||||||
return nil
|
return nil
|
||||||
})
|
})
|
||||||
|
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
func addMissingId(dir string, id int64) error {
|
func addMissingId(dir string, id int64) error {
|
||||||
|
@ -189,20 +190,20 @@ func addMissingId(dir string, id int64) error {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func addMeta(path string, option string, value string) error {
|
func addMeta(path string, option string, value string) error {
|
||||||
b, err := ioutil.ReadFile(path) // just pass the file name
|
b, err := ioutil.ReadFile(path) // just pass the file name
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
str := string(b)
|
str := string(b)
|
||||||
str = strings.Replace(str, "\n\n---\n", fmt.Sprintf("\n%s: %s\n\n---\n", option, value), 1)
|
str = strings.Replace(str, "\n\n---\n", fmt.Sprintf("\n%s: %s\n\n---\n", option, value), 1)
|
||||||
err = ioutil.WriteFile(path, []byte(str), 0644)
|
err = ioutil.WriteFile(path, []byte(str), 0644)
|
||||||
|
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
func getMaxId(dir string) (int64, error) {
|
func getMaxId(dir string) (int64, error) {
|
||||||
|
@ -314,20 +315,20 @@ func readFile(file fs.FileInfo, fullPath string, category []string, meta []strin
|
||||||
}
|
}
|
||||||
for _, option := range meta {
|
for _, option := range meta {
|
||||||
if strings.HasPrefix(line, option) {
|
if strings.HasPrefix(line, option) {
|
||||||
line = strings.TrimPrefix(line, option + ":")
|
line = strings.TrimPrefix(line, option+":")
|
||||||
f.Meta[option] = strings.Trim(line, " ")
|
f.Meta[option] = strings.Trim(line, " ")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
osf.Close()
|
_ = osf.Close()
|
||||||
|
|
||||||
return f, nil
|
return f, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func ReadFileContent(file File) (string, error) {
|
func ReadFileContent(file File) (string, error) {
|
||||||
osf, err := os.Open(path)
|
osf, err := os.Open(file.FullPath)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return "", err
|
||||||
}
|
}
|
||||||
|
|
||||||
content := ""
|
content := ""
|
||||||
|
@ -342,13 +343,13 @@ func ReadFileContent(file File) (string, error) {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isMetaPart) {
|
if isMetaPart {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
if (removeEmptyLine) {
|
if removeEmptyLine {
|
||||||
line = strings.Trim(line, " ")
|
line = strings.Trim(line, " ")
|
||||||
if (line == "") {
|
if line == "" {
|
||||||
continue
|
continue
|
||||||
} else {
|
} else {
|
||||||
removeEmptyLine = false
|
removeEmptyLine = false
|
||||||
|
@ -357,6 +358,7 @@ func ReadFileContent(file File) (string, error) {
|
||||||
|
|
||||||
content = content + "\n" + line
|
content = content + "\n" + line
|
||||||
}
|
}
|
||||||
|
_ = osf.Close()
|
||||||
|
|
||||||
return content, nil
|
return content, nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue