362 lines
6.6 KiB
Go
362 lines
6.6 KiB
Go
package zord_tree
|
|
|
|
import (
|
|
"bufio"
|
|
"fmt"
|
|
"g.arns.lt/zordsdavini/abcex"
|
|
cp "github.com/otiai10/copy"
|
|
"io/fs"
|
|
"io/ioutil"
|
|
"os"
|
|
"path"
|
|
"path/filepath"
|
|
"strings"
|
|
)
|
|
|
|
type File struct {
|
|
Id string
|
|
Name string
|
|
FullPath string
|
|
Category []string
|
|
Tags []string
|
|
Meta map[string]string
|
|
}
|
|
|
|
type Tree struct {
|
|
Path string
|
|
Dirs []Tree
|
|
Files []File
|
|
}
|
|
|
|
func BuildTree(dirPath string, meta []string) (Tree, error) {
|
|
return readPath(dirPath, []string{}, meta)
|
|
}
|
|
|
|
func PopulateTree(sourcePath string, destPath string, meta []string) error {
|
|
err = fixFormat(sourcePath)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
id, err := getMaxId(sourcePath)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
id++
|
|
err = addMissingId(sourcePath, id)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = addMissingMeta(sourcePath, meta)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = cp.Copy(sourcePath, destPath)
|
|
|
|
return err
|
|
}
|
|
|
|
func fixFormat(dir string) error {
|
|
err := filepath.Walk(dir, func(path string, info os.FileInfo, e error) error {
|
|
if e != nil {
|
|
return e
|
|
}
|
|
|
|
if info.Mode().IsRegular() {
|
|
b, err := ioutil.ReadFile(path) // just pass the file name
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
osf, err := os.Open(path)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// remove all empty lines and separate split line
|
|
content := ""
|
|
format := true
|
|
scanner := bufio.NewScanner(osf)
|
|
scanner.Split(bufio.ScanLines)
|
|
for scanner.Scan() {
|
|
line := scanner.Text()
|
|
if line == "---" {
|
|
format = false
|
|
}
|
|
|
|
if (format) {
|
|
line = strings.Trim(line, " ")
|
|
if (line != "") {
|
|
content = content + "\n" + line
|
|
}
|
|
} else {
|
|
content = content + "\n" + line
|
|
}
|
|
}
|
|
err = ioutil.WriteFile(path, []byte(content), 0644)
|
|
|
|
// format split line
|
|
str := string(b)
|
|
str = strings.Replace(str, "\n---\n", "\n\n---\n", 1)
|
|
err = ioutil.WriteFile(path, []byte(str), 0644)
|
|
}
|
|
return nil
|
|
})
|
|
|
|
return err
|
|
}
|
|
|
|
func addMissingMeta(dir string, meta []string) error {
|
|
err := filepath.Walk(dir, func(path string, info os.FileInfo, e error) error {
|
|
if e != nil {
|
|
return e
|
|
}
|
|
|
|
if info.Mode().IsRegular() {
|
|
check := map[string]bool{}
|
|
for _, option := range meta {
|
|
check[option] = false
|
|
}
|
|
|
|
osf, err := os.Open(path)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
scanner := bufio.NewScanner(osf)
|
|
scanner.Split(bufio.ScanLines)
|
|
for scanner.Scan() {
|
|
line := scanner.Text()
|
|
for _, option := range meta {
|
|
if strings.HasPrefix(line, option+":") {
|
|
check[option] = true
|
|
}
|
|
}
|
|
if line == "---" {
|
|
for option, process := range check {
|
|
if !process {
|
|
err = addMeta(path, option, "")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
|
|
break
|
|
}
|
|
}
|
|
}
|
|
return nil
|
|
})
|
|
|
|
return err
|
|
}
|
|
|
|
func addMissingId(dir string, id int64) error {
|
|
err := filepath.Walk(dir, func(path string, info os.FileInfo, e error) error {
|
|
if e != nil {
|
|
return e
|
|
}
|
|
|
|
if info.Mode().IsRegular() {
|
|
osf, err := os.Open(path)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
scanner := bufio.NewScanner(osf)
|
|
scanner.Split(bufio.ScanLines)
|
|
for scanner.Scan() {
|
|
line := scanner.Text()
|
|
if strings.HasPrefix(line, "id:") {
|
|
break
|
|
}
|
|
if line == "---" {
|
|
err = addMeta(path, "id", abcex.Encode(id))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
id++
|
|
break
|
|
}
|
|
}
|
|
}
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func addMeta(path string, option string, value string) error {
|
|
b, err := ioutil.ReadFile(path) // just pass the file name
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
str := string(b)
|
|
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)
|
|
|
|
return err
|
|
}
|
|
|
|
func getMaxId(dir string) (int64, error) {
|
|
var max int64 = 0
|
|
err := filepath.Walk(dir, func(path string, info os.FileInfo, e error) error {
|
|
if e != nil {
|
|
return e
|
|
}
|
|
|
|
if info.Mode().IsRegular() {
|
|
osf, err := os.Open(path)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
scanner := bufio.NewScanner(osf)
|
|
scanner.Split(bufio.ScanLines)
|
|
for scanner.Scan() {
|
|
line := scanner.Text()
|
|
if line == "---" {
|
|
break
|
|
}
|
|
|
|
if strings.HasPrefix(line, "id:") {
|
|
line = strings.TrimPrefix(line, "id:")
|
|
i := abcex.Decode(strings.Trim(line, " "))
|
|
if i > max {
|
|
max = i
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
return max, err
|
|
}
|
|
|
|
return max, nil
|
|
}
|
|
|
|
func readPath(dirPath string, category []string, meta []string) (Tree, error) {
|
|
tree := Tree{}
|
|
|
|
tree.Path = dirPath
|
|
|
|
files, err := ioutil.ReadDir(dirPath)
|
|
if err != nil {
|
|
return tree, err
|
|
}
|
|
|
|
for _, file := range files {
|
|
fullPath := path.Join(dirPath, file.Name())
|
|
if file.IsDir() {
|
|
nextDir, err := readPath(fullPath, append(category, file.Name()), meta)
|
|
if err != nil {
|
|
return tree, err
|
|
}
|
|
tree.Dirs = append(tree.Dirs, nextDir)
|
|
continue
|
|
}
|
|
|
|
_, err := ioutil.ReadFile(fullPath)
|
|
if err != nil {
|
|
return tree, err
|
|
}
|
|
nextFile, err := readFile(file, fullPath, category, meta)
|
|
if err != nil {
|
|
return tree, err
|
|
}
|
|
tree.Files = append(tree.Files, nextFile)
|
|
}
|
|
|
|
return tree, nil
|
|
}
|
|
|
|
func readFile(file fs.FileInfo, fullPath string, category []string, meta []string) (File, error) {
|
|
f := File{
|
|
Name: file.Name(),
|
|
FullPath: fullPath,
|
|
Category: category,
|
|
Meta: map[string]string{},
|
|
}
|
|
|
|
osf, err := os.Open(fullPath)
|
|
if err != nil {
|
|
return File{}, err
|
|
}
|
|
scanner := bufio.NewScanner(osf)
|
|
scanner.Split(bufio.ScanLines)
|
|
for scanner.Scan() {
|
|
line := scanner.Text()
|
|
if line == "---" {
|
|
break
|
|
}
|
|
|
|
if strings.HasPrefix(line, "tags:") {
|
|
line = strings.TrimPrefix(line, "tags:")
|
|
t := strings.Split(line, ",")
|
|
tags := []string{}
|
|
for _, tag := range t {
|
|
tags = append(tags, strings.Trim(tag, " "))
|
|
}
|
|
|
|
f.Tags = tags
|
|
}
|
|
if strings.HasPrefix(line, "id:") {
|
|
line = strings.TrimPrefix(line, "id:")
|
|
f.Id = strings.Trim(line, " ")
|
|
}
|
|
for _, option := range meta {
|
|
if strings.HasPrefix(line, option) {
|
|
line = strings.TrimPrefix(line, option + ":")
|
|
f.Meta[option] = strings.Trim(line, " ")
|
|
}
|
|
}
|
|
}
|
|
osf.Close()
|
|
|
|
return f, nil
|
|
}
|
|
|
|
func ReadFileContent(file File) (string, error) {
|
|
osf, err := os.Open(path)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
content := ""
|
|
removeEmptyLine := true
|
|
isMetaPart := true
|
|
scanner := bufio.NewScanner(osf)
|
|
scanner.Split(bufio.ScanLines)
|
|
for scanner.Scan() {
|
|
line := scanner.Text()
|
|
if line == "---" {
|
|
isMetaPart = false
|
|
continue
|
|
}
|
|
|
|
if (isMetaPart) {
|
|
continue
|
|
}
|
|
|
|
if (removeEmptyLine) {
|
|
line = strings.Trim(line, " ")
|
|
if (line == "") {
|
|
continue
|
|
} else {
|
|
removeEmptyLine = false
|
|
}
|
|
}
|
|
|
|
content = content + "\n" + line
|
|
}
|
|
|
|
return content, nil
|
|
}
|