1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-11-26 23:14:40 +01:00
gojekyll/renderers/sass.go
2021-06-16 15:48:07 +08:00

124 lines
3.0 KiB
Go

package renderers
import (
"bytes"
"crypto/md5" // nolint: gas
"fmt"
"io"
"io/ioutil"
"os"
"path/filepath"
"strings"
"github.com/osteele/gojekyll/cache"
"github.com/osteele/gojekyll/utils"
"github.com/tdewolff/minify"
"github.com/tdewolff/minify/css"
libsass "github.com/wellington/go-libsass"
)
const sassMIMEType = "text/css"
const sassDirName = "_sass"
// copySASSFileIncludes copies sass partials into a temporary directory,
// removing initial underscores.
func (p *Manager) copySASSFileIncludes() error {
// TODO delete the temp directory when done?
// TODO use libsass.ImportsOption instead?
// FIXME this doesn't delete stale css files
if err := p.makeSASSTempDir(); err != nil {
return err
}
h := md5.New() // nolint: gas
if p.ThemeDir != "" {
if err := p.copySASSFiles(filepath.Join(p.ThemeDir, sassDirName), p.sassTempDir, h); err != nil {
return err
}
}
if err := p.copySASSFiles(filepath.Join(p.sourceDir(), p.cfg.Sass.Dir), p.sassTempDir, h); err != nil {
return err
}
p.sassHash = fmt.Sprintf("%x", h.Sum(nil))
return nil
}
func (p *Manager) makeSASSTempDir() error {
if p.sassTempDir == "" {
dir, err := ioutil.TempDir(os.TempDir(), "_sass")
if p.cfg.Verbose {
fmt.Println("create", dir)
}
if err != nil {
return err
}
p.sassTempDir = dir
}
return nil
}
func (p *Manager) copySASSFiles(src, dst string, h io.Writer) error {
if p.cfg.Verbose {
fmt.Printf("copy sass directory %s to %s\n", src, dst)
}
err := filepath.Walk(src, func(from string, info os.FileInfo, err error) error {
if err != nil || info.IsDir() {
return err
}
rel := utils.MustRel(src, from)
to := filepath.Join(dst, strings.TrimPrefix(rel, "_"))
if p.cfg.Verbose {
fmt.Printf("copy sass file %s to %s\n", src, to)
}
in, err := os.Open(from)
if err != nil {
return err
}
defer in.Close() // nolint: errcheck
fmt.Fprintf(h, "--- sass file: %s ---\n", rel)
if _, err = io.Copy(h, in); err != nil {
return err
}
return utils.CopyFileContents(to, from, 0644)
})
if os.IsNotExist(err) {
return nil
}
return err
}
// SassIncludePaths returns an array of sass include directories.
func (p *Manager) SassIncludePaths() []string {
return []string{p.sassTempDir}
}
// WriteSass converts a SASS file and writes it to w.
func (p *Manager) WriteSass(w io.Writer, b []byte) error {
s, err := cache.WithFile(fmt.Sprintf("sass: %s", p.sassHash), string(b), func() (s string, err error) {
buf := new(bytes.Buffer)
comp, err := libsass.New(buf, bytes.NewBuffer(b))
if err != nil {
return "", err
}
err = comp.Option(libsass.IncludePaths(p.SassIncludePaths()))
if err != nil {
return "", err
}
if err = comp.Run(); err != nil {
return "", err
}
m := minify.New()
m.AddFunc(sassMIMEType, css.Minify)
min := bytes.NewBuffer(make([]byte, 0, buf.Len()))
if err := m.Minify(sassMIMEType, min, bytes.NewBuffer(buf.Bytes())); err != nil {
return "", err
}
return min.String(), nil
})
if err != nil {
return err
}
_, err = io.WriteString(w, s)
return err
}