Compare commits
12 Commits
Author | SHA1 | Date |
---|---|---|
|
e95c747899 | 2 years ago |
|
add10c2d1a | 2 years ago |
|
0dda41e3f8 | 2 years ago |
|
b631b717b6 | 2 years ago |
|
93fa411750 | 2 years ago |
|
4f76a1d571 | 2 years ago |
|
94701a01b2 | 2 years ago |
|
3252693509 | 2 years ago |
|
7271830829 | 2 years ago |
|
cff10a36ca | 2 years ago |
|
f479ba4d4c | 2 years ago |
|
72d5ed9d53 | 2 years ago |
@ -0,0 +1,62 @@
|
||||
/*
|
||||
Copyright © 2023 NAME HERE <EMAIL ADDRESS>
|
||||
*/
|
||||
package cmd
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"log"
|
||||
|
||||
"github.com/spf13/cobra"
|
||||
"github.com/spf13/viper"
|
||||
|
||||
"code.ndumas.com/ndumas/obsidian-pipeline"
|
||||
)
|
||||
|
||||
var hugoBundleCmd = &cobra.Command{
|
||||
Use: "bundle",
|
||||
Short: "convert a set of Obsidian notes into a Hugo compatible directory structure",
|
||||
Long: `generate hugo content from your vault`,
|
||||
PreRunE: func(cmd *cobra.Command, args []string) error {
|
||||
// here is where I validate arguments, open and parse config files, etc
|
||||
return nil
|
||||
},
|
||||
RunE: func(cmd *cobra.Command, args []string) error {
|
||||
source := viper.GetString("hugo.source")
|
||||
target := viper.GetString("hugo.target")
|
||||
|
||||
err := obp.CopyPosts(source, target)
|
||||
if err != nil {
|
||||
return fmt.Errorf("error copying posts in %q: %w", source, err)
|
||||
}
|
||||
|
||||
err = obp.Sanitize(source)
|
||||
if err != nil {
|
||||
return fmt.Errorf("error sanitizing posts in %q: %w", source, err)
|
||||
}
|
||||
|
||||
err = obp.GatherMedia(source)
|
||||
if err != nil {
|
||||
return fmt.Errorf("error gathering media in %q: %w", source, err)
|
||||
}
|
||||
return nil
|
||||
},
|
||||
}
|
||||
|
||||
func init() {
|
||||
hugoBundleCmd.Flags().StringP("source", "s", "", "path to vault directory containing hugo posts")
|
||||
err := viper.BindPFlag("hugo.source", hugoBundleCmd.Flags().Lookup("source"))
|
||||
if err != nil {
|
||||
log.Panicln("error binding viper to source flag:", err)
|
||||
}
|
||||
|
||||
hugoBundleCmd.Flags().StringP("target", "t", "", "hugo content/ directory")
|
||||
err = viper.BindPFlag("hugo.target", hugoBundleCmd.Flags().Lookup("target"))
|
||||
if err != nil {
|
||||
log.Panicln("error binding viper to target flag:", err)
|
||||
}
|
||||
|
||||
hugoBundleCmd.MarkFlagsRequiredTogether("source", "target")
|
||||
|
||||
hugoCmd.AddCommand(hugoBundleCmd)
|
||||
}
|
@ -0,0 +1,92 @@
|
||||
package obp
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"io"
|
||||
"io/fs"
|
||||
// "log"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"strings"
|
||||
)
|
||||
|
||||
func copy(src, dst string) (int64, error) {
|
||||
sourceFileStat, err := os.Stat(src)
|
||||
if err != nil {
|
||||
return 0, err
|
||||
}
|
||||
|
||||
if !sourceFileStat.Mode().IsRegular() {
|
||||
return 0, fmt.Errorf("%s is not a regular file", src)
|
||||
}
|
||||
|
||||
source, err := os.Open(src)
|
||||
if err != nil {
|
||||
return 0, err
|
||||
}
|
||||
defer source.Close()
|
||||
|
||||
destination, err := os.Create(dst)
|
||||
if err != nil {
|
||||
return 0, err
|
||||
}
|
||||
defer destination.Close()
|
||||
nBytes, err := io.Copy(destination, source)
|
||||
return nBytes, err
|
||||
}
|
||||
|
||||
func CopyPosts(src, dst string) error {
|
||||
posts := make([]string, 0)
|
||||
|
||||
srcRoot := os.DirFS(src)
|
||||
err := fs.WalkDir(srcRoot, ".", func(path string, d fs.DirEntry, err error) error {
|
||||
// here's where I walk through the source directory and collect all the markdown notes
|
||||
if err != nil {
|
||||
return fmt.Errorf("could not walk %q: %w", path, err)
|
||||
}
|
||||
|
||||
if d.IsDir() {
|
||||
return nil
|
||||
}
|
||||
|
||||
if strings.HasSuffix(path, ".md") {
|
||||
posts = append(posts, filepath.Join(src, path))
|
||||
}
|
||||
|
||||
return nil
|
||||
})
|
||||
if err != nil {
|
||||
return fmt.Errorf("walkfunc failed: %w", err)
|
||||
}
|
||||
|
||||
for _, post := range posts {
|
||||
base := filepath.Base(post)
|
||||
|
||||
splitPostName := strings.Split(base, ".")
|
||||
|
||||
postName := strings.Join(splitPostName[:len(splitPostName)-1], ".")
|
||||
|
||||
postDir := filepath.Join(dst, postName)
|
||||
|
||||
err := os.MkdirAll(postDir, 0777)
|
||||
|
||||
if err != nil && !os.IsExist(err) {
|
||||
return fmt.Errorf("error creating target directory %q: %w", dst, err)
|
||||
}
|
||||
|
||||
_, err = copy(post, filepath.Join(postDir, "index.md"))
|
||||
if err != nil {
|
||||
return fmt.Errorf("error opening %q for copying: %w", post, err)
|
||||
}
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func Sanitize(src string) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
func GatherMedia(src string) error {
|
||||
return nil
|
||||
}
|
Loading…
Reference in New Issue