mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-21 20:46:30 -05:00
71 lines
1.3 KiB
Go
71 lines
1.3 KiB
Go
package target
|
|
|
|
import (
|
|
"fmt"
|
|
"html/template"
|
|
"io"
|
|
"path"
|
|
|
|
"github.com/spf13/hugo/helpers"
|
|
"github.com/spf13/hugo/hugofs"
|
|
)
|
|
|
|
type PagePublisher interface {
|
|
Translator
|
|
Publish(string, template.HTML) error
|
|
}
|
|
|
|
type PagePub struct {
|
|
UglyUrls bool
|
|
DefaultExtension string
|
|
PublishDir string
|
|
}
|
|
|
|
func (pp *PagePub) Publish(path string, r io.Reader) (err error) {
|
|
|
|
translated, err := pp.Translate(path)
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
return helpers.WriteToDisk(translated, r, hugofs.DestinationFS)
|
|
}
|
|
|
|
func (pp *PagePub) Translate(src string) (dest string, err error) {
|
|
if src == "/" {
|
|
if pp.PublishDir != "" {
|
|
return path.Join(pp.PublishDir, "index.html"), nil
|
|
}
|
|
return "index.html", nil
|
|
}
|
|
|
|
dir, file := path.Split(src)
|
|
ext := pp.extension(path.Ext(file))
|
|
name := filename(file)
|
|
if pp.PublishDir != "" {
|
|
dir = path.Join(pp.PublishDir, dir)
|
|
}
|
|
|
|
if pp.UglyUrls || file == "index.html" {
|
|
return path.Join(dir, fmt.Sprintf("%s%s", name, ext)), nil
|
|
}
|
|
|
|
return path.Join(dir, name, fmt.Sprintf("index%s", ext)), nil
|
|
}
|
|
|
|
func (pp *PagePub) extension(ext string) string {
|
|
switch ext {
|
|
case ".md", ".rst": // TODO make this list configurable. page.go has the list of markup types.
|
|
return ".html"
|
|
}
|
|
|
|
if ext != "" {
|
|
return ext
|
|
}
|
|
|
|
if pp.DefaultExtension != "" {
|
|
return pp.DefaultExtension
|
|
}
|
|
|
|
return ".html"
|
|
}
|