2016-03-21 23:28:42 +00:00
|
|
|
// Copyright 2016 The Hugo Authors. All rights reserved.
|
2015-12-10 22:19:38 +00:00
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2013-08-31 00:18:05 +00:00
|
|
|
package target
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
2014-11-06 16:06:29 +00:00
|
|
|
"path/filepath"
|
2014-05-01 17:13:11 +00:00
|
|
|
|
|
|
|
"github.com/spf13/hugo/helpers"
|
2014-11-01 15:57:29 +00:00
|
|
|
"github.com/spf13/hugo/hugofs"
|
2013-08-31 00:18:05 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Publisher interface {
|
|
|
|
Publish(string, io.Reader) error
|
|
|
|
}
|
2013-09-01 16:24:03 +00:00
|
|
|
|
|
|
|
type Translator interface {
|
|
|
|
Translate(string) (string, error)
|
|
|
|
}
|
|
|
|
|
2015-05-15 22:11:39 +00:00
|
|
|
// TODO(bep) consider other ways to solve this.
|
|
|
|
type OptionalTranslator interface {
|
|
|
|
TranslateRelative(string) (string, error)
|
|
|
|
}
|
|
|
|
|
2013-09-04 03:52:50 +00:00
|
|
|
type Output interface {
|
|
|
|
Publisher
|
|
|
|
Translator
|
|
|
|
}
|
|
|
|
|
2013-09-01 16:24:03 +00:00
|
|
|
type Filesystem struct {
|
2014-11-04 05:39:37 +00:00
|
|
|
PublishDir string
|
2013-09-01 16:56:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (fs *Filesystem) Publish(path string, r io.Reader) (err error) {
|
|
|
|
translated, err := fs.Translate(path)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-03-21 23:28:42 +00:00
|
|
|
return helpers.WriteToDisk(translated, r, hugofs.Destination())
|
2013-09-01 16:24:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (fs *Filesystem) Translate(src string) (dest string, err error) {
|
2015-06-11 03:29:12 +00:00
|
|
|
return filepath.Join(fs.PublishDir, filepath.FromSlash(src)), nil
|
2013-09-01 16:24:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func filename(f string) string {
|
2014-11-06 16:06:29 +00:00
|
|
|
ext := filepath.Ext(f)
|
2013-09-01 16:24:03 +00:00
|
|
|
if ext == "" {
|
|
|
|
return f
|
|
|
|
}
|
|
|
|
|
|
|
|
return f[:len(f)-len(ext)]
|
|
|
|
}
|