refactored some modules

This commit is contained in:
Daniel Fichtinger 2024-11-24 21:14:38 -05:00
parent 68d2ddb692
commit 11f724732d
4 changed files with 102 additions and 69 deletions

View file

@ -4,6 +4,7 @@ import (
"bytes"
"fmt"
"html/template"
"path/filepath"
"strings"
"gopkg.in/yaml.v3"
@ -13,13 +14,15 @@ type PageData struct {
Title string
Icon string
Stylesheet string
Header template.HTML
Header string
Content template.HTML
NextPost template.HTML
PrevPost template.HTML
Footer template.HTML
NextPost string
PrevPost string
Footer string
}
type Metadata map[string]interface{}
func processWithYaml(f []byte) (Metadata, []byte, error) {
// Check if the file has valid metadata
if !bytes.HasPrefix(f, []byte("---\n")) {
@ -31,12 +34,43 @@ func processWithYaml(f []byte) (Metadata, []byte, error) {
if len(split) < 3 {
return nil, nil, fmt.Errorf("Invalid frontmatter format.")
}
var metadata Metadata
var meta Metadata
// Parse YAML
if err := yaml.Unmarshal([]byte(split[1]), &metadata); err != nil {
if err := yaml.Unmarshal([]byte(split[1]), &meta); err != nil {
return nil, nil, err
}
return metadata, []byte(split[2]), nil
return meta, []byte(split[2]), nil
}
// this function converts a file path to its title form
func pathToTitle(path string) string {
stripped := ChangeExtension(filepath.Base(path), "")
replaced := strings.NewReplacer("-", " ", "_", " ", `\ `, " ").Replace(stripped)
return strings.ToTitle(replaced)
}
func buildPageData(m Metadata) *PageData {
p := &PageData{}
if title, ok := m["title"].(string); ok {
p.Title = title
} else {
p.Title = pathToTitle(m["path"].(string))
}
if icon, ok := m["icon"].(string); ok {
p.Icon = icon
} else {
p.Icon = ""
}
if style, ok := m["style"].(string); ok {
p.Stylesheet = style
}
if header, ok := m["header"].(string); ok {
p.Header = header
}
if footer, ok := m["footer"].(string); ok {
p.Footer = footer
}
return p
}
func ConvertFile(in string, out string) error {
@ -48,14 +82,14 @@ func ConvertFile(in string, out string) error {
if err != nil {
return err
}
metadata["path"] = in
pd := buildPageData(metadata)
fmt.Println("Page title: ", pd.Title)
pd.Content = template.HTML(md)
title, ok := metadata["title"].(string)
if !ok {
fmt.Println("No title in page.")
} else {
fmt.Println("Title found: ", title)
}
tmlp, err := template.New("webpage").Parse("placeholder")
// build according to template here
html, err := MdToHTML(md)
if err != nil {
return err

View file

@ -1,12 +1,15 @@
package convert
import (
"errors"
"fmt"
"io"
"io/fs"
"os"
"path/filepath"
"strings"
"github.com/ficcdaf/zona/internal/util"
"github.com/gomarkdown/markdown"
"github.com/gomarkdown/markdown/ast"
"github.com/gomarkdown/markdown/html"
@ -134,3 +137,48 @@ func CopyFile(inPath string, outPath string) error {
func ChangeExtension(in string, outExt string) string {
return strings.TrimSuffix(in, filepath.Ext(in)) + outExt
}
func processFile(inPath string, entry fs.DirEntry, err error, outRoot string) error {
if err != nil {
return err
}
if !entry.IsDir() {
ext := filepath.Ext(inPath)
outPath := util.ReplaceRoot(inPath, outRoot)
switch ext {
case ".md":
fmt.Println("Processing markdown...")
outPath = ChangeExtension(outPath, ".html")
if err := util.CreateParents(outPath); err != nil {
return err
}
if err := ConvertFile(inPath, outPath); err != nil {
return errors.Join(errors.New("Error processing file "+inPath), err)
} else {
return nil
}
// If it's not a file we need to process,
// we simply copy it to the destination path.
default:
if err := util.CreateParents(outPath); err != nil {
return err
}
if err := CopyFile(inPath, outPath); err != nil {
return errors.Join(errors.New("Error processing file "+inPath), err)
} else {
return nil
}
}
}
// fmt.Printf("Visited: %s\n", inPath)
return nil
}
func Traverse(root string, outRoot string) error {
// err := filepath.WalkDir(root, func(path string, entry fs.DirEntry, err error) error {
walkFunc := func(path string, entry fs.DirEntry, err error) error {
return processFile(path, entry, err, outRoot)
}
err := filepath.WalkDir(root, walkFunc)
return err
}

View file

@ -3,13 +3,9 @@ package util
import (
"errors"
"fmt"
"io/fs"
"os"
"path/filepath"
"strings"
"github.com/ficcdaf/zona/internal/convert"
)
// CheckExtension checks if the file located at path (string)
@ -34,13 +30,13 @@ func getRoot(path string) string {
return path
}
func replaceRoot(inPath, outRoot string) string {
func ReplaceRoot(inPath, outRoot string) string {
relPath := strings.TrimPrefix(inPath, getRoot(inPath))
outPath := filepath.Join(outRoot, relPath)
return outPath
}
func createParents(path string) error {
func CreateParents(path string) error {
dir := filepath.Dir(path)
// Check if the parent directory already exists
// before trying to create it
@ -52,48 +48,3 @@ func createParents(path string) error {
}
return nil
}
func processFile(inPath string, entry fs.DirEntry, err error, outRoot string) error {
if err != nil {
return err
}
if !entry.IsDir() {
ext := filepath.Ext(inPath)
outPath := replaceRoot(inPath, outRoot)
switch ext {
case ".md":
fmt.Println("Processing markdown...")
outPath = convert.ChangeExtension(outPath, ".html")
if err := createParents(outPath); err != nil {
return err
}
if err := convert.ConvertFile(inPath, outPath); err != nil {
return errors.Join(errors.New("Error processing file "+inPath), err)
} else {
return nil
}
// If it's not a file we need to process,
// we simply copy it to the destination path.
default:
if err := createParents(outPath); err != nil {
return err
}
if err := convert.CopyFile(inPath, outPath); err != nil {
return errors.Join(errors.New("Error processing file "+inPath), err)
} else {
return nil
}
}
}
// fmt.Printf("Visited: %s\n", inPath)
return nil
}
func Traverse(root string, outRoot string) error {
// err := filepath.WalkDir(root, func(path string, entry fs.DirEntry, err error) error {
walkFunc := func(path string, entry fs.DirEntry, err error) error {
return processFile(path, entry, err, outRoot)
}
err := filepath.WalkDir(root, walkFunc)
return err
}