2016-03-21 19:28:42 -04:00
|
|
|
// Copyright 2016 The Hugo Authors. All rights reserved.
|
2015-12-10 17:19:38 -05: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-30 20:18:05 -04:00
|
|
|
package target
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
2014-11-06 11:06:29 -05:00
|
|
|
"path/filepath"
|
2014-05-01 13:13:11 -04:00
|
|
|
|
|
|
|
"github.com/spf13/hugo/helpers"
|
2014-11-01 11:57:29 -04:00
|
|
|
"github.com/spf13/hugo/hugofs"
|
2013-08-30 20:18:05 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
type Publisher interface {
|
|
|
|
Publish(string, io.Reader) error
|
|
|
|
}
|
2013-09-01 12:24:03 -04:00
|
|
|
|
|
|
|
type Translator interface {
|
|
|
|
Translate(string) (string, error)
|
|
|
|
}
|
|
|
|
|
2015-05-15 18:11:39 -04:00
|
|
|
// TODO(bep) consider other ways to solve this.
|
|
|
|
type OptionalTranslator interface {
|
|
|
|
TranslateRelative(string) (string, error)
|
|
|
|
}
|
|
|
|
|
2013-09-03 23:52:50 -04:00
|
|
|
type Output interface {
|
|
|
|
Publisher
|
|
|
|
Translator
|
|
|
|
}
|
|
|
|
|
2013-09-01 12:24:03 -04:00
|
|
|
type Filesystem struct {
|
2014-11-04 00:39:37 -05:00
|
|
|
PublishDir string
|
2013-09-01 12:56:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (fs *Filesystem) Publish(path string, r io.Reader) (err error) {
|
|
|
|
translated, err := fs.Translate(path)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-03-21 19:28:42 -04:00
|
|
|
return helpers.WriteToDisk(translated, r, hugofs.Destination())
|
2013-09-01 12:24:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (fs *Filesystem) Translate(src string) (dest string, err error) {
|
2015-06-10 23:29:12 -04:00
|
|
|
return filepath.Join(fs.PublishDir, filepath.FromSlash(src)), nil
|
2013-09-01 12:24:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func filename(f string) string {
|
2014-11-06 11:06:29 -05:00
|
|
|
ext := filepath.Ext(f)
|
2013-09-01 12:24:03 -04:00
|
|
|
if ext == "" {
|
|
|
|
return f
|
|
|
|
}
|
|
|
|
|
|
|
|
return f[:len(f)-len(ext)]
|
|
|
|
}
|