2015-12-07 13:57:01 -05:00
|
|
|
// Copyright 2015 The Hugo Authors. All rights reserved.
|
2014-10-17 16:57:48 -04:00
|
|
|
//
|
2015-11-23 22:16:36 -05:00
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
2014-10-17 16:57:48 -04:00
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
2015-11-23 22:16:36 -05:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2014-10-17 16:57:48 -04:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
package hugolib
|
|
|
|
|
2014-11-20 12:39:09 -05:00
|
|
|
import (
|
|
|
|
"errors"
|
2014-10-20 17:42:16 -04:00
|
|
|
|
2015-02-01 16:29:46 -05:00
|
|
|
"fmt"
|
2015-05-20 18:55:24 -04:00
|
|
|
|
2014-11-20 12:39:09 -05:00
|
|
|
"github.com/spf13/hugo/source"
|
|
|
|
)
|
|
|
|
|
|
|
|
var handlers []Handler
|
|
|
|
|
|
|
|
type MetaHandler interface {
|
2014-11-01 12:05:37 -04:00
|
|
|
// Read the Files in and register
|
2014-10-20 17:51:53 -04:00
|
|
|
Read(*source.File, *Site, HandleResults)
|
2014-11-01 12:05:37 -04:00
|
|
|
|
2014-11-20 12:39:09 -05:00
|
|
|
// Generic Convert Function with coordination
|
2014-10-20 20:15:33 -04:00
|
|
|
Convert(interface{}, *Site, HandleResults)
|
2014-11-01 12:05:37 -04:00
|
|
|
|
2014-11-20 12:39:09 -05:00
|
|
|
Handle() Handler
|
2014-10-20 17:42:16 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type HandleResults chan<- HandledResult
|
|
|
|
|
2014-11-20 12:39:09 -05:00
|
|
|
func NewMetaHandler(in string) *MetaHandle {
|
|
|
|
x := &MetaHandle{ext: in}
|
|
|
|
x.Handler()
|
|
|
|
return x
|
|
|
|
}
|
2014-10-20 17:42:16 -04:00
|
|
|
|
2014-11-20 12:39:09 -05:00
|
|
|
type MetaHandle struct {
|
|
|
|
handler Handler
|
|
|
|
ext string
|
2014-10-17 16:57:48 -04:00
|
|
|
}
|
|
|
|
|
2014-11-20 12:39:09 -05:00
|
|
|
func (mh *MetaHandle) Read(f *source.File, s *Site, results HandleResults) {
|
|
|
|
if h := mh.Handler(); h != nil {
|
|
|
|
results <- h.Read(f, s)
|
|
|
|
return
|
|
|
|
}
|
2014-10-17 16:57:48 -04:00
|
|
|
|
2014-11-20 12:39:09 -05:00
|
|
|
results <- HandledResult{err: errors.New("No handler found"), file: f}
|
2014-10-20 17:42:16 -04:00
|
|
|
}
|
|
|
|
|
2014-11-20 12:39:09 -05:00
|
|
|
func (mh *MetaHandle) Convert(i interface{}, s *Site, results HandleResults) {
|
|
|
|
h := mh.Handler()
|
2014-10-20 20:15:33 -04:00
|
|
|
|
2014-11-20 12:39:09 -05:00
|
|
|
if f, ok := i.(*source.File); ok {
|
|
|
|
results <- h.FileConvert(f, s)
|
|
|
|
return
|
2014-10-20 20:15:33 -04:00
|
|
|
}
|
2014-10-20 17:42:16 -04:00
|
|
|
|
2014-11-20 12:39:09 -05:00
|
|
|
if p, ok := i.(*Page); ok {
|
|
|
|
if p == nil {
|
|
|
|
results <- HandledResult{err: errors.New("file resulted in a nil page")}
|
|
|
|
return
|
|
|
|
}
|
2015-02-01 16:29:46 -05:00
|
|
|
|
|
|
|
if h == nil {
|
|
|
|
results <- HandledResult{err: fmt.Errorf("No handler found for page '%s'. Verify the markup is supported by Hugo.", p.FullFilePath())}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-11-20 12:39:09 -05:00
|
|
|
results <- h.PageConvert(p, s.Tmpl)
|
|
|
|
p.setSummary()
|
|
|
|
p.analyzePage()
|
|
|
|
}
|
2014-10-17 16:57:48 -04:00
|
|
|
}
|
|
|
|
|
2014-11-20 12:39:09 -05:00
|
|
|
func (mh *MetaHandle) Handler() Handler {
|
|
|
|
if mh.handler == nil {
|
|
|
|
mh.handler = FindHandler(mh.ext)
|
2015-05-20 18:55:24 -04:00
|
|
|
|
|
|
|
// if no handler found, use default handler
|
|
|
|
if mh.handler == nil {
|
|
|
|
mh.handler = FindHandler("*")
|
|
|
|
}
|
2014-11-20 12:39:09 -05:00
|
|
|
}
|
|
|
|
return mh.handler
|
2014-10-17 16:57:48 -04:00
|
|
|
}
|
|
|
|
|
2014-10-20 17:42:16 -04:00
|
|
|
func FindHandler(ext string) Handler {
|
2014-10-17 16:57:48 -04:00
|
|
|
for _, h := range Handlers() {
|
2014-10-20 17:42:16 -04:00
|
|
|
if HandlerMatch(h, ext) {
|
2014-10-17 16:57:48 -04:00
|
|
|
return h
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-10-20 17:42:16 -04:00
|
|
|
func HandlerMatch(h Handler, ext string) bool {
|
2014-10-17 16:57:48 -04:00
|
|
|
for _, x := range h.Extensions() {
|
|
|
|
if ext == x {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
2014-11-20 12:39:09 -05:00
|
|
|
|
|
|
|
func RegisterHandler(h Handler) {
|
|
|
|
handlers = append(handlers, h)
|
|
|
|
}
|
|
|
|
|
|
|
|
func Handlers() []Handler {
|
|
|
|
return handlers
|
|
|
|
}
|