hugo/target/file.go

53 lines
858 B
Go
Raw Normal View History

package target
import (
"io"
2014-11-06 16:06:29 +00:00
"path/filepath"
"github.com/spf13/hugo/helpers"
"github.com/spf13/hugo/hugofs"
)
type Publisher interface {
Publish(string, io.Reader) error
}
type Translator interface {
Translate(string) (string, error)
}
2013-09-04 03:52:50 +00:00
type Output interface {
Publisher
Translator
}
type Filesystem struct {
PublishDir string
}
func (fs *Filesystem) Publish(path string, r io.Reader) (err error) {
translated, err := fs.Translate(path)
if err != nil {
return
}
return helpers.WriteToDisk(translated, r, hugofs.DestinationFS)
}
func (fs *Filesystem) Translate(src string) (dest string, err error) {
2014-11-06 16:06:29 +00:00
return filepath.Join(fs.PublishDir, src), nil
}
func (fs *Filesystem) extension(ext string) string {
return ext
}
func filename(f string) string {
2014-11-06 16:06:29 +00:00
ext := filepath.Ext(f)
if ext == "" {
return f
}
return f[:len(f)-len(ext)]
}