2023-03-11 23:13:53 -05:00
|
|
|
// Package main is a command-lint tool `zs` called Zen Static for generating static websites
|
2014-12-05 11:59:56 -05:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2023-03-11 23:13:53 -05:00
|
|
|
"context"
|
2014-12-05 11:59:56 -05:00
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
2015-09-02 11:00:14 -04:00
|
|
|
"os/exec"
|
2023-03-11 23:13:53 -05:00
|
|
|
"os/signal"
|
2014-12-05 11:59:56 -05:00
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
2023-03-11 23:13:53 -05:00
|
|
|
"syscall"
|
2015-08-29 12:46:05 -04:00
|
|
|
"text/template"
|
2014-12-05 11:59:56 -05:00
|
|
|
"time"
|
|
|
|
|
2021-09-17 19:12:48 -04:00
|
|
|
"github.com/russross/blackfriday/v2"
|
2023-03-12 07:52:14 -04:00
|
|
|
ignore "github.com/sabhiram/go-gitignore"
|
2023-03-12 01:34:38 -05:00
|
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
"github.com/spf13/cobra"
|
2023-03-11 23:13:53 -05:00
|
|
|
"go.mills.io/static"
|
2023-03-12 01:34:38 -05:00
|
|
|
"golang.org/x/sync/errgroup"
|
2015-09-02 13:35:26 -04:00
|
|
|
"gopkg.in/yaml.v2"
|
2014-12-05 11:59:56 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2023-03-11 23:13:53 -05:00
|
|
|
// ZSDIR is the default directory for storing layouts and extensions
|
|
|
|
ZSDIR = ".zs"
|
|
|
|
|
2023-03-12 07:52:14 -04:00
|
|
|
// ZSIGNORE is the default ignore file
|
|
|
|
ZSIGNORE = ".zsignore"
|
|
|
|
|
2023-03-11 23:13:53 -05:00
|
|
|
// PUBDIR is the default directory for publishing final built content
|
2014-12-05 11:59:56 -05:00
|
|
|
PUBDIR = ".pub"
|
|
|
|
)
|
|
|
|
|
2023-03-12 07:52:14 -04:00
|
|
|
// Ignore holds a set of patterns to ignore from parsing a .zsignore file
|
|
|
|
var Ignore *ignore.GitIgnore
|
|
|
|
|
2023-03-11 23:13:53 -05:00
|
|
|
// Vars holds a map of global variables
|
2015-08-29 11:47:16 -04:00
|
|
|
type Vars map[string]string
|
2015-09-02 11:00:14 -04:00
|
|
|
|
2023-03-11 23:13:53 -05:00
|
|
|
// NewTicker is a function that wraps a time.Ticker and ticks immediately instead of waiting for the first interval
|
|
|
|
func NewTicker(d time.Duration) *time.Ticker {
|
|
|
|
ticker := time.NewTicker(d)
|
|
|
|
oc := ticker.C
|
|
|
|
nc := make(chan time.Time, 1)
|
|
|
|
go func() {
|
|
|
|
nc <- time.Now()
|
|
|
|
for tm := range oc {
|
|
|
|
nc <- tm
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
ticker.C = nc
|
|
|
|
return ticker
|
|
|
|
}
|
|
|
|
|
2023-03-12 01:34:38 -05:00
|
|
|
// RootCmd is the base command when called without any subcommands
|
|
|
|
var RootCmd = &cobra.Command{
|
|
|
|
Use: "zs",
|
|
|
|
Version: FullVersion(),
|
|
|
|
Short: "zs the zen static site generator",
|
|
|
|
Long: `zs is an extremely minimal static site generator written in Go.
|
|
|
|
|
|
|
|
- Keep your texts in markdown, or HTML format right in the main directory of your blog/site.
|
|
|
|
- Keep all service files (extensions, layout pages, deployment scripts etc) in the .zs subdirectory.
|
|
|
|
- Define variables in the header of the content files using YAML front matter:
|
|
|
|
- Use placeholders for variables and plugins in your markdown or html files, e.g. {{ title }} or {{ command arg1 arg2 }}.
|
|
|
|
- Write extensions in any language you like and put them into the .zs sub-directory.
|
|
|
|
- Everything the extensions prints to stdout becomes the value of the placeholder.
|
|
|
|
`,
|
2023-03-12 03:43:50 -04:00
|
|
|
PersistentPreRunE: func(cmd *cobra.Command, args []string) error {
|
|
|
|
debug, err := cmd.Flags().GetBool("debug")
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("error getting debug flag: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if debug {
|
2023-03-12 01:34:38 -05:00
|
|
|
log.SetLevel(log.DebugLevel)
|
|
|
|
} else {
|
|
|
|
log.SetLevel(log.InfoLevel)
|
|
|
|
}
|
2023-03-12 03:43:50 -04:00
|
|
|
|
|
|
|
return nil
|
2023-03-12 01:34:38 -05:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
// BuildCmd is the build sub-command that performs whole builds or single builds
|
|
|
|
var BuildCmd = &cobra.Command{
|
|
|
|
Use: "build [<file>]",
|
|
|
|
Short: "Builds the whole site or a single file",
|
|
|
|
Long: `The build command builds the entire site or a single file if specified.`,
|
|
|
|
Args: cobra.RangeArgs(0, 1),
|
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
|
|
if len(args) == 0 {
|
|
|
|
ctx := context.Background()
|
|
|
|
if err := buildAll(ctx, false); err != nil {
|
|
|
|
return fmt.Errorf("error building site: %w", err)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := build(args[0], os.Stdout, globals()); err != nil {
|
|
|
|
return fmt.Errorf("error building file %q", args[0])
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
// ServeCmd is the serve sub-command that performs whole builds or single builds
|
|
|
|
var ServeCmd = &cobra.Command{
|
|
|
|
Use: "serve [flags]",
|
|
|
|
Short: "Serves the site and rebuilds automatically",
|
|
|
|
Long: `The serve command serves the site and watches for rebuilds automatically`,
|
|
|
|
Args: cobra.RangeArgs(0, 1),
|
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
|
|
var wg errgroup.Group
|
|
|
|
|
|
|
|
ctx, cancel := signal.NotifyContext(context.Background(), os.Interrupt, syscall.SIGTERM)
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
bind, err := cmd.Flags().GetString("bind")
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("error getting bind flag: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
root, err := cmd.Flags().GetString("root")
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("error getting root flag: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
wg.Go(func() error {
|
|
|
|
if err := serve(ctx, bind, root); err != nil {
|
|
|
|
return fmt.Errorf("error serving site: %w", err)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
|
|
|
if err := wg.Wait(); err != nil {
|
|
|
|
return fmt.Errorf("error running serve: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
// VarCmd is the var sub-command that performs whole builds or single builds
|
|
|
|
var VarCmd = &cobra.Command{
|
|
|
|
Use: "var <file> [<var>...]",
|
|
|
|
Aliases: []string{"vars"},
|
|
|
|
Short: "Display variables for the specified file",
|
|
|
|
Long: `The var command extracts and display sll teh variables defined in a file.
|
|
|
|
If the name of variables (optional) are passed as additional arguments, only those variables
|
|
|
|
are display instead of all variables (the default behavior).`,
|
|
|
|
Args: cobra.MinimumNArgs(1),
|
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
|
|
s := ""
|
|
|
|
|
|
|
|
vars, _, err := getVars(args[0], Vars{})
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("error getting variables from %s: %w", args[0], err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(args) > 1 {
|
|
|
|
for _, a := range args[1:] {
|
|
|
|
s = s + vars[a] + "\n"
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for k, v := range vars {
|
|
|
|
s = s + k + ":" + v + "\n"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fmt.Println(strings.TrimSpace(s))
|
|
|
|
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
// WatchCmd is the watch sub-command that performs whole builds or single builds
|
|
|
|
var WatchCmd = &cobra.Command{
|
|
|
|
Use: "watch",
|
|
|
|
Short: "Watches for file changes and rebuilds modified files",
|
|
|
|
Long: `The watch command watches for any changes to files and rebuilds them automatically`,
|
|
|
|
Args: cobra.RangeArgs(0, 1),
|
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
|
|
var wg errgroup.Group
|
|
|
|
|
|
|
|
ctx, cancel := signal.NotifyContext(context.Background(), os.Interrupt, syscall.SIGTERM)
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
wg.Go(func() error {
|
|
|
|
if err := buildAll(ctx, true); err != nil {
|
|
|
|
return fmt.Errorf("error watching for changes: %w", err)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
|
|
|
if err := wg.Wait(); err != nil {
|
|
|
|
return fmt.Errorf("error running watch: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2015-09-02 13:05:09 -04:00
|
|
|
// renameExt renames extension (if any) from oldext to newext
|
|
|
|
// If oldext is an empty string - extension is extracted automatically.
|
|
|
|
// If path has no extension - new extension is appended
|
|
|
|
func renameExt(path, oldext, newext string) string {
|
|
|
|
if oldext == "" {
|
|
|
|
oldext = filepath.Ext(path)
|
|
|
|
}
|
|
|
|
if oldext == "" || strings.HasSuffix(path, oldext) {
|
|
|
|
return strings.TrimSuffix(path, oldext) + newext
|
2015-09-02 11:00:14 -04:00
|
|
|
}
|
2021-10-28 12:10:15 -04:00
|
|
|
return path
|
2015-09-02 11:00:14 -04:00
|
|
|
}
|
|
|
|
|
2015-09-02 13:05:09 -04:00
|
|
|
// globals returns list of global OS environment variables that start
|
|
|
|
// with ZS_ prefix as Vars, so the values can be used inside templates
|
2015-09-02 11:00:14 -04:00
|
|
|
func globals() Vars {
|
|
|
|
vars := Vars{}
|
|
|
|
for _, e := range os.Environ() {
|
|
|
|
pair := strings.Split(e, "=")
|
|
|
|
if strings.HasPrefix(pair[0], "ZS_") {
|
|
|
|
vars[strings.ToLower(pair[0][3:])] = pair[1]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return vars
|
|
|
|
}
|
|
|
|
|
2015-09-02 13:05:09 -04:00
|
|
|
// run executes a command or a script. Vars define the command environment,
|
|
|
|
// each zs var is converted into OS environemnt variable with ZS_ prefix
|
|
|
|
// prepended. Additional variable $ZS contains path to the zs binary. Command
|
|
|
|
// stderr is printed to zs stderr, command output is returned as a string.
|
|
|
|
func run(vars Vars, cmd string, args ...string) (string, error) {
|
2021-09-17 19:32:14 -04:00
|
|
|
// First check if partial exists (.html)
|
2015-09-02 13:05:09 -04:00
|
|
|
if b, err := ioutil.ReadFile(filepath.Join(ZSDIR, cmd+".html")); err == nil {
|
|
|
|
return string(b), nil
|
2015-09-02 11:00:14 -04:00
|
|
|
}
|
|
|
|
|
2015-09-02 13:05:09 -04:00
|
|
|
var errbuf, outbuf bytes.Buffer
|
2015-09-02 11:00:14 -04:00
|
|
|
c := exec.Command(cmd, args...)
|
2015-09-02 13:05:09 -04:00
|
|
|
env := []string{"ZS=" + os.Args[0], "ZS_OUTDIR=" + PUBDIR}
|
|
|
|
env = append(env, os.Environ()...)
|
|
|
|
for k, v := range vars {
|
|
|
|
env = append(env, "ZS_"+strings.ToUpper(k)+"="+v)
|
|
|
|
}
|
|
|
|
c.Env = env
|
|
|
|
c.Stdout = &outbuf
|
2015-09-02 11:00:14 -04:00
|
|
|
c.Stderr = &errbuf
|
|
|
|
|
|
|
|
err := c.Run()
|
|
|
|
|
|
|
|
if errbuf.Len() > 0 {
|
2023-03-12 03:43:50 -04:00
|
|
|
log.Errorf("error running command: %s", cmd)
|
|
|
|
log.Error(errbuf.String())
|
2015-09-02 11:00:14 -04:00
|
|
|
}
|
|
|
|
if err != nil {
|
2015-09-02 13:05:09 -04:00
|
|
|
return "", err
|
2015-09-02 11:00:14 -04:00
|
|
|
}
|
2015-09-02 13:05:09 -04:00
|
|
|
return string(outbuf.Bytes()), nil
|
2015-09-02 11:00:14 -04:00
|
|
|
}
|
2014-12-05 11:59:56 -05:00
|
|
|
|
2015-09-02 13:05:09 -04:00
|
|
|
// getVars returns list of variables defined in a text file and actual file
|
|
|
|
// content following the variables declaration. Header is separated from
|
|
|
|
// content by an empty line. Header can be either YAML or JSON.
|
|
|
|
// If no empty newline is found - file is treated as content-only.
|
|
|
|
func getVars(path string, globals Vars) (Vars, string, error) {
|
2023-03-12 07:52:14 -04:00
|
|
|
if Ignore.MatchesPath(path) {
|
|
|
|
return nil, "", nil
|
|
|
|
}
|
|
|
|
|
2015-08-29 11:47:16 -04:00
|
|
|
b, err := ioutil.ReadFile(path)
|
|
|
|
if err != nil {
|
|
|
|
return nil, "", err
|
|
|
|
}
|
|
|
|
s := string(b)
|
2015-09-02 13:05:09 -04:00
|
|
|
|
2015-09-02 13:43:31 -04:00
|
|
|
// Pick some default values for content-dependent variables
|
2015-09-02 13:05:09 -04:00
|
|
|
v := Vars{}
|
2015-09-02 13:43:31 -04:00
|
|
|
title := strings.Replace(strings.Replace(path, "_", " ", -1), "-", " ", -1)
|
|
|
|
v["title"] = strings.ToTitle(title)
|
|
|
|
v["description"] = ""
|
2015-09-04 08:49:56 -04:00
|
|
|
v["file"] = path
|
|
|
|
v["url"] = path[:len(path)-len(filepath.Ext(path))] + ".html"
|
|
|
|
v["output"] = filepath.Join(PUBDIR, v["url"])
|
2015-09-02 13:43:31 -04:00
|
|
|
|
2015-09-04 08:49:56 -04:00
|
|
|
// Override default values with globals
|
2015-08-30 10:01:05 -04:00
|
|
|
for name, value := range globals {
|
|
|
|
v[name] = value
|
2014-12-05 13:26:15 -05:00
|
|
|
}
|
2015-09-02 13:05:09 -04:00
|
|
|
|
2015-09-04 08:49:56 -04:00
|
|
|
// Add layout if none is specified
|
|
|
|
if _, ok := v["layout"]; !ok {
|
2021-09-17 19:32:14 -04:00
|
|
|
v["layout"] = "layout.html"
|
2015-08-29 17:43:59 -04:00
|
|
|
}
|
|
|
|
|
2015-09-02 13:35:26 -04:00
|
|
|
delim := "\n---\n"
|
2023-03-11 23:13:53 -05:00
|
|
|
sep := strings.Index(s, delim)
|
|
|
|
if sep == -1 {
|
2015-08-29 13:54:55 -04:00
|
|
|
return v, s, nil
|
2023-03-11 23:13:53 -05:00
|
|
|
}
|
2015-09-02 13:35:26 -04:00
|
|
|
|
2023-03-11 23:13:53 -05:00
|
|
|
header := s[:sep]
|
|
|
|
body := s[sep+len(delim):]
|
|
|
|
|
|
|
|
vars := Vars{}
|
|
|
|
if err := yaml.Unmarshal([]byte(header), &vars); err != nil {
|
2023-03-12 03:43:50 -04:00
|
|
|
log.WithError(err).Warn("failed to parse header")
|
2023-03-11 23:13:53 -05:00
|
|
|
return v, s, nil
|
|
|
|
}
|
|
|
|
// Override default values + globals with the ones defines in the file
|
|
|
|
for key, value := range vars {
|
|
|
|
v[key] = value
|
|
|
|
}
|
|
|
|
if strings.HasPrefix(v["url"], "./") {
|
|
|
|
v["url"] = v["url"][2:]
|
2014-12-05 12:09:10 -05:00
|
|
|
}
|
2023-03-11 23:13:53 -05:00
|
|
|
return v, body, nil
|
2014-12-05 11:59:56 -05:00
|
|
|
}
|
|
|
|
|
2015-09-02 13:05:09 -04:00
|
|
|
// Render expanding zs plugins and variables
|
2015-09-02 11:00:14 -04:00
|
|
|
func render(s string, vars Vars) (string, error) {
|
2023-03-11 23:13:53 -05:00
|
|
|
openingDelimiter := "{{"
|
|
|
|
closingDelimiter := "}}"
|
2015-09-02 13:05:09 -04:00
|
|
|
|
2015-08-29 12:46:05 -04:00
|
|
|
out := &bytes.Buffer{}
|
2015-09-02 13:05:09 -04:00
|
|
|
for {
|
2023-03-11 23:13:53 -05:00
|
|
|
from := strings.Index(s, openingDelimiter)
|
|
|
|
if from == -1 {
|
2015-09-02 13:05:09 -04:00
|
|
|
out.WriteString(s)
|
|
|
|
return out.String(), nil
|
2023-03-11 23:13:53 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
to := strings.Index(s, closingDelimiter)
|
|
|
|
if to == -1 {
|
2023-03-12 03:43:50 -04:00
|
|
|
return "", fmt.Errorf("closing delimiter not found")
|
2023-03-11 23:13:53 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
out.WriteString(s[:from])
|
|
|
|
cmd := s[from+len(openingDelimiter) : to]
|
|
|
|
s = s[to+len(closingDelimiter):]
|
2023-03-12 03:43:50 -04:00
|
|
|
m := strings.Fields(strings.TrimSpace(cmd))
|
2023-03-11 23:13:53 -05:00
|
|
|
if len(m) == 1 {
|
2023-03-12 03:43:50 -04:00
|
|
|
log.Debugf("vars: #%v", vars)
|
2023-03-11 23:13:53 -05:00
|
|
|
if v, ok := vars[m[0]]; ok {
|
|
|
|
out.WriteString(v)
|
|
|
|
continue
|
2015-09-02 13:05:09 -04:00
|
|
|
}
|
|
|
|
}
|
2023-03-12 03:43:50 -04:00
|
|
|
if _, err := exec.LookPath(m[0]); err == nil {
|
|
|
|
if res, err := run(vars, m[0], m[1:]...); err == nil {
|
|
|
|
out.WriteString(res)
|
|
|
|
} else {
|
|
|
|
log.WithError(err).Warnf("error running command: %s", m[0])
|
|
|
|
}
|
2023-03-11 23:13:53 -05:00
|
|
|
}
|
2015-08-29 12:46:05 -04:00
|
|
|
}
|
2022-08-13 20:52:15 -04:00
|
|
|
|
2014-12-05 11:59:56 -05:00
|
|
|
}
|
|
|
|
|
2015-08-29 12:46:05 -04:00
|
|
|
// Renders markdown with the given layout into html expanding all the macros
|
2015-09-02 11:00:14 -04:00
|
|
|
func buildMarkdown(path string, w io.Writer, vars Vars) error {
|
2015-09-02 13:05:09 -04:00
|
|
|
v, body, err := getVars(path, vars)
|
2014-12-05 11:59:56 -05:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-09-02 11:00:14 -04:00
|
|
|
content, err := render(body, v)
|
2014-12-05 11:59:56 -05:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-10-22 23:57:19 -04:00
|
|
|
v["content"] = string(blackfriday.Run(
|
|
|
|
[]byte(content),
|
|
|
|
blackfriday.WithExtensions(blackfriday.CommonExtensions|blackfriday.AutoHeadingIDs),
|
|
|
|
))
|
2015-08-30 08:20:35 -04:00
|
|
|
if w == nil {
|
|
|
|
out, err := os.Create(filepath.Join(PUBDIR, renameExt(path, "", ".html")))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer out.Close()
|
|
|
|
w = out
|
|
|
|
}
|
2021-09-17 19:32:14 -04:00
|
|
|
return buildHTML(filepath.Join(ZSDIR, v["layout"]), w, v)
|
2015-08-29 09:07:18 -04:00
|
|
|
}
|
|
|
|
|
2015-08-29 12:46:05 -04:00
|
|
|
// Renders text file expanding all variable macros inside it
|
2015-09-02 11:00:14 -04:00
|
|
|
func buildHTML(path string, w io.Writer, vars Vars) error {
|
2015-09-02 13:05:09 -04:00
|
|
|
v, body, err := getVars(path, vars)
|
2014-12-05 11:59:56 -05:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-09-02 13:05:09 -04:00
|
|
|
if body, err = render(body, v); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
tmpl, err := template.New("").Delims("<%", "%>").Parse(body)
|
2014-12-05 11:59:56 -05:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-08-30 08:22:00 -04:00
|
|
|
if w == nil {
|
|
|
|
f, err := os.Create(filepath.Join(PUBDIR, path))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
w = f
|
2014-12-05 11:59:56 -05:00
|
|
|
}
|
2015-09-02 13:05:09 -04:00
|
|
|
return tmpl.Execute(w, vars)
|
2014-12-05 11:59:56 -05:00
|
|
|
}
|
|
|
|
|
2015-08-30 08:20:35 -04:00
|
|
|
// Copies file as is from path to writer
|
|
|
|
func buildRaw(path string, w io.Writer) error {
|
|
|
|
in, err := os.Open(path)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2015-08-29 13:54:55 -04:00
|
|
|
}
|
2015-08-30 08:20:35 -04:00
|
|
|
defer in.Close()
|
|
|
|
if w == nil {
|
2023-03-11 23:13:53 -05:00
|
|
|
out, err := os.Create(filepath.Join(PUBDIR, path))
|
|
|
|
if err != nil {
|
2015-08-30 08:20:35 -04:00
|
|
|
return err
|
2015-08-29 12:46:05 -04:00
|
|
|
}
|
2023-03-11 23:13:53 -05:00
|
|
|
defer out.Close()
|
|
|
|
w = out
|
2015-08-29 12:46:05 -04:00
|
|
|
}
|
2015-08-30 08:20:35 -04:00
|
|
|
_, err = io.Copy(w, in)
|
|
|
|
return err
|
2015-08-29 17:43:59 -04:00
|
|
|
}
|
|
|
|
|
2015-09-02 11:00:14 -04:00
|
|
|
func build(path string, w io.Writer, vars Vars) error {
|
2023-03-12 07:52:14 -04:00
|
|
|
if Ignore.MatchesPath(path) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-08-30 08:20:35 -04:00
|
|
|
ext := filepath.Ext(path)
|
|
|
|
if ext == ".md" || ext == ".mkd" {
|
2015-09-02 11:00:14 -04:00
|
|
|
return buildMarkdown(path, w, vars)
|
2015-08-30 08:20:35 -04:00
|
|
|
} else if ext == ".html" || ext == ".xml" {
|
2015-09-02 11:00:14 -04:00
|
|
|
return buildHTML(path, w, vars)
|
2015-08-30 08:20:35 -04:00
|
|
|
} else {
|
|
|
|
return buildRaw(path, w)
|
2015-08-29 12:46:05 -04:00
|
|
|
}
|
2015-08-29 13:54:55 -04:00
|
|
|
}
|
|
|
|
|
2023-03-12 01:34:38 -05:00
|
|
|
func buildAll(ctx context.Context, watch bool) error {
|
2023-03-11 23:13:53 -05:00
|
|
|
ticker := NewTicker(time.Second)
|
|
|
|
defer ticker.Stop()
|
|
|
|
|
2015-08-29 13:54:55 -04:00
|
|
|
lastModified := time.Unix(0, 0)
|
|
|
|
modified := false
|
|
|
|
|
|
|
|
vars := globals()
|
2014-12-05 11:59:56 -05:00
|
|
|
for {
|
2023-03-11 23:13:53 -05:00
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
2023-03-12 01:34:38 -05:00
|
|
|
return ctx.Err()
|
2023-03-11 23:13:53 -05:00
|
|
|
case <-ticker.C:
|
|
|
|
os.Mkdir(PUBDIR, 0755)
|
|
|
|
filepath.Walk(".", func(path string, info os.FileInfo, err error) error {
|
2023-03-12 07:52:14 -04:00
|
|
|
// ignore hidden files and directories and ignored patterns
|
|
|
|
if filepath.Base(path)[0] == '.' || strings.HasPrefix(path, ".") || Ignore.MatchesPath(path) {
|
2023-03-11 23:13:53 -05:00
|
|
|
return nil
|
|
|
|
}
|
2023-03-12 07:52:14 -04:00
|
|
|
|
2023-03-11 23:13:53 -05:00
|
|
|
// inform user about fs walk errors, but continue iteration
|
|
|
|
if err != nil {
|
2023-03-12 01:34:38 -05:00
|
|
|
log.WithError(err).Warn("error walking directory")
|
2023-03-11 23:13:53 -05:00
|
|
|
return nil
|
|
|
|
}
|
2014-12-05 11:59:56 -05:00
|
|
|
|
2023-03-11 23:13:53 -05:00
|
|
|
if info.IsDir() {
|
|
|
|
os.Mkdir(filepath.Join(PUBDIR, path), 0755)
|
|
|
|
return nil
|
|
|
|
} else if info.ModTime().After(lastModified) {
|
|
|
|
if !modified {
|
|
|
|
// First file in this build cycle is about to be modified
|
2023-03-12 03:43:50 -04:00
|
|
|
if _, err := exec.LookPath("prehook"); err == nil {
|
|
|
|
if _, err := run(vars, "prehook"); err != nil {
|
|
|
|
log.WithError(err).Warn("error running prehook")
|
|
|
|
}
|
|
|
|
modified = true
|
2023-03-12 01:34:38 -05:00
|
|
|
}
|
2023-03-11 23:13:53 -05:00
|
|
|
}
|
2023-03-12 01:34:38 -05:00
|
|
|
log.Debugf("build: %s", path)
|
2023-03-11 23:13:53 -05:00
|
|
|
return build(path, nil, vars)
|
2014-12-05 14:03:33 -05:00
|
|
|
}
|
2023-03-11 23:13:53 -05:00
|
|
|
return nil
|
|
|
|
})
|
|
|
|
if modified {
|
|
|
|
// At least one file in this build cycle has been modified
|
2023-03-12 03:43:50 -04:00
|
|
|
if _, err := exec.LookPath("posthook"); err == nil {
|
|
|
|
if _, err := run(vars, "posthook"); err != nil {
|
|
|
|
log.WithError(err).Warn("error running posthook")
|
|
|
|
}
|
|
|
|
modified = false
|
2023-03-12 01:34:38 -05:00
|
|
|
}
|
2014-12-05 11:59:56 -05:00
|
|
|
}
|
2023-03-11 23:13:53 -05:00
|
|
|
if !watch {
|
2023-03-12 01:34:38 -05:00
|
|
|
return nil
|
2023-03-11 23:13:53 -05:00
|
|
|
}
|
|
|
|
lastModified = time.Now()
|
2014-12-05 11:59:56 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-11 23:13:53 -05:00
|
|
|
// serve runs a static web server and builds and continuously watches for changes to rebuild
|
2023-03-11 23:24:34 -05:00
|
|
|
func serve(ctx context.Context, bind, root string) error {
|
|
|
|
os.Mkdir(root, 0755)
|
2023-03-11 23:13:53 -05:00
|
|
|
|
|
|
|
svr, err := static.NewServer(
|
|
|
|
static.WithBind(bind),
|
|
|
|
static.WithDir(true),
|
2023-03-11 23:24:34 -05:00
|
|
|
static.WithRoot(root),
|
2023-03-11 23:13:53 -05:00
|
|
|
static.WithSPA(true),
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
go svr.Run(ctx)
|
|
|
|
go buildAll(ctx, true)
|
|
|
|
|
|
|
|
<-ctx.Done()
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-03-12 07:23:22 -04:00
|
|
|
func ensureFirstPath(p string) {
|
|
|
|
paths := strings.Split(os.Getenv("PATH"), string(os.PathListSeparator))
|
|
|
|
if len(paths) > 0 && paths[0] != p {
|
|
|
|
paths = append([]string{p}, paths...)
|
|
|
|
os.Setenv("PATH", strings.Join(paths, string(os.PathListSeparator)))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-02 13:05:09 -04:00
|
|
|
func init() {
|
2023-03-12 01:34:38 -05:00
|
|
|
RootCmd.PersistentFlags().BoolP(
|
|
|
|
"debug", "d", false,
|
|
|
|
"Enable debug logging",
|
|
|
|
)
|
|
|
|
|
|
|
|
ServeCmd.Flags().StringP("bind", "b", ":8000", "Set the [<address>]:<port> to listen on")
|
|
|
|
ServeCmd.Flags().StringP("root", "r", PUBDIR, "Set the root directory to serve")
|
|
|
|
|
|
|
|
RootCmd.AddCommand(BuildCmd)
|
|
|
|
RootCmd.AddCommand(ServeCmd)
|
|
|
|
RootCmd.AddCommand(VarCmd)
|
|
|
|
RootCmd.AddCommand(WatchCmd)
|
|
|
|
|
2015-09-02 13:05:09 -04:00
|
|
|
// prepend .zs to $PATH, so plugins will be found before OS commands
|
2022-08-13 20:52:15 -04:00
|
|
|
w, _ := os.Getwd()
|
2023-03-12 07:23:22 -04:00
|
|
|
ensureFirstPath(filepath.Join(w, ZSDIR))
|
2015-09-02 13:05:09 -04:00
|
|
|
}
|
|
|
|
|
2014-12-05 11:59:56 -05:00
|
|
|
func main() {
|
2023-03-12 07:23:22 -04:00
|
|
|
// prepend .zs to $PATH, so plugins will be found before OS commands
|
|
|
|
w, _ := os.Getwd()
|
|
|
|
ensureFirstPath(filepath.Join(w, ZSDIR))
|
|
|
|
|
2023-03-12 07:52:14 -04:00
|
|
|
// initialise Ignore (.zsignore) patterns
|
|
|
|
if ignoreObject, err := ignore.CompileIgnoreFile(ZSIGNORE); err == nil {
|
|
|
|
Ignore = ignoreObject
|
|
|
|
} else {
|
|
|
|
Ignore = ignore.CompileIgnoreLines("")
|
|
|
|
}
|
|
|
|
|
2023-03-12 01:34:38 -05:00
|
|
|
if err := RootCmd.Execute(); err != nil {
|
|
|
|
log.WithError(err).Error("error executing command")
|
2023-03-11 23:13:53 -05:00
|
|
|
os.Exit(1)
|
2014-12-05 11:59:56 -05:00
|
|
|
}
|
|
|
|
}
|