1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-11-26 23:24:39 +01:00
gojekyll/pipelines/sass.go

97 lines
2.3 KiB
Go
Raw Normal View History

2017-06-24 20:00:19 +02:00
package pipelines
2017-06-16 19:47:11 +02:00
import (
"bytes"
2017-07-10 00:19:22 +02:00
"crypto/md5" // nolint: gas
"fmt"
2017-06-16 19:47:11 +02:00
"io"
"io/ioutil"
"os"
"path/filepath"
"strings"
2017-07-09 21:21:11 +02:00
"github.com/dchest/cssmin"
2017-07-10 00:19:22 +02:00
"github.com/osteele/gojekyll/cache"
2017-07-09 22:17:20 +02:00
"github.com/osteele/gojekyll/utils"
2017-06-17 01:17:22 +02:00
2017-06-16 19:47:11 +02:00
libsass "github.com/wellington/go-libsass"
)
// CopySassFileIncludes copies sass partials into a temporary directory,
// removing initial underscores.
2017-06-24 19:30:01 +02:00
func (p *Pipeline) CopySassFileIncludes() error {
2017-07-24 14:09:14 +02:00
// TODO delete the temp directory when done?
2017-06-16 19:47:11 +02:00
// TODO use libsass.ImportsOption instead?
2017-06-24 19:30:01 +02:00
if p.sassTempDir == "" {
2017-06-18 22:54:36 +02:00
dir, err := ioutil.TempDir(os.TempDir(), "_sass")
2017-06-16 19:47:11 +02:00
if err != nil {
2017-06-18 22:54:36 +02:00
return err
2017-06-16 19:47:11 +02:00
}
2017-06-24 19:30:01 +02:00
p.sassTempDir = dir
2017-06-16 19:47:11 +02:00
}
2017-07-10 00:19:22 +02:00
h := md5.New() // nolint: gas, noncrypto
2017-07-24 14:09:14 +02:00
if p.ThemeDir != "" {
if err := copySassFiles(filepath.Join(p.ThemeDir, "_sass"), p.sassTempDir, h); err != nil {
return err
}
}
if err := copySassFiles(filepath.Join(p.SourceDir(), "_sass"), p.sassTempDir, h); err != nil {
return err
}
p.sassHash = fmt.Sprintf("%x", h.Sum(nil))
return nil
}
func copySassFiles(src, dst string, h io.Writer) error {
2017-06-22 01:17:44 +02:00
err := filepath.Walk(src, func(from string, info os.FileInfo, err error) error {
2017-06-16 19:47:11 +02:00
if err != nil || info.IsDir() {
return err
}
2017-07-09 22:17:20 +02:00
rel := utils.MustRel(src, from)
2017-06-16 21:41:03 +02:00
to := filepath.Join(dst, strings.TrimPrefix(rel, "_"))
2017-07-10 00:19:22 +02:00
in, err := os.Open(from)
if err != nil {
return err
}
defer in.Close() // nolint: errcheck
2017-07-24 14:09:14 +02:00
if _, err = io.Copy(h, in); err != nil {
2017-07-10 00:19:22 +02:00
return err
}
2017-07-09 22:17:20 +02:00
return utils.CopyFileContents(to, from, 0644)
2017-06-16 19:47:11 +02:00
})
2017-06-22 01:17:44 +02:00
if os.IsNotExist(err) {
return nil
}
return err
2017-06-16 19:47:11 +02:00
}
// SassIncludePaths returns an array of sass include directories.
2017-06-24 19:30:01 +02:00
func (p *Pipeline) SassIncludePaths() []string {
return []string{p.sassTempDir}
2017-06-16 19:47:11 +02:00
}
// WriteSass converts a SASS file and writes it to w.
2017-07-10 00:19:22 +02:00
func (p *Pipeline) 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
}
b = cssmin.Minify(buf.Bytes())
return string(b), nil
})
if err != nil {
2017-07-09 21:21:11 +02:00
return err
}
2017-07-16 03:25:35 +02:00
_, err = io.WriteString(w, s)
2017-07-09 21:21:11 +02:00
return err
}