mirror of
https://github.com/danog/gojekyll.git
synced 2024-11-27 04:46:32 +01:00
58 lines
1.3 KiB
Go
58 lines
1.3 KiB
Go
package main
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
)
|
|
|
|
func cleanDirectory() error {
|
|
removeFiles := func(path string, info os.FileInfo, err error) error {
|
|
if err != nil {
|
|
if os.IsNotExist(err) {
|
|
return nil
|
|
}
|
|
return err
|
|
}
|
|
if info.IsDir() {
|
|
return nil
|
|
}
|
|
// TODO check for inclusion in KeepFiles
|
|
err = os.Remove(path)
|
|
return err
|
|
}
|
|
if err := filepath.Walk(siteConfig.DestinationDir, removeFiles); err != nil {
|
|
return err
|
|
}
|
|
return removeEmptyDirectories(siteConfig.DestinationDir)
|
|
}
|
|
|
|
func build() error {
|
|
if err := cleanDirectory(); err != nil {
|
|
return err
|
|
}
|
|
for path, page := range siteMap {
|
|
if !page.Static {
|
|
p, err := readFile(page.Path, siteData, true)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
page = p
|
|
}
|
|
// TODO don't do this for js, css, etc. pages
|
|
if !page.Static && !strings.HasSuffix(path, ".html") {
|
|
path = filepath.Join(path, "/index.html")
|
|
}
|
|
destPath := filepath.Join(siteConfig.DestinationDir, path)
|
|
os.MkdirAll(filepath.Dir(destPath), 0777)
|
|
if page.Static {
|
|
os.Link(filepath.Join(siteConfig.SourceDir, page.Path), destPath)
|
|
} else {
|
|
// fmt.Println("render", filepath.Join(siteConfig.SourceDir, page.Path), "->", destPath)
|
|
ioutil.WriteFile(destPath, page.Body, 0644)
|
|
}
|
|
}
|
|
return nil
|
|
}
|