2014-10-18 14:25:10 -04:00
|
|
|
// Copyright © 2013-14 Steve Francia <spf@spf13.com>.
|
2013-07-04 11:32:55 -04:00
|
|
|
//
|
|
|
|
// Licensed under the Simple Public 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://opensource.org/licenses/Simple-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.
|
|
|
|
|
|
|
|
package hugolib
|
|
|
|
|
|
|
|
import (
|
2014-01-29 17:50:31 -05:00
|
|
|
"html/template"
|
|
|
|
"time"
|
2013-07-04 11:32:55 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
type Node struct {
|
2014-01-29 17:50:31 -05:00
|
|
|
RSSLink template.HTML
|
2014-05-28 19:11:54 -04:00
|
|
|
Site *SiteInfo
|
2014-01-29 17:50:31 -05:00
|
|
|
// layout string
|
|
|
|
Data map[string]interface{}
|
|
|
|
Title string
|
|
|
|
Description string
|
|
|
|
Keywords []string
|
2014-04-08 21:40:38 -04:00
|
|
|
Params map[string]interface{}
|
2014-01-29 17:50:31 -05:00
|
|
|
Date time.Time
|
2014-05-06 06:50:23 -04:00
|
|
|
Sitemap Sitemap
|
2014-01-29 17:50:31 -05:00
|
|
|
UrlPath
|
2014-01-18 22:16:19 -05:00
|
|
|
}
|
|
|
|
|
2014-04-23 02:59:19 -04:00
|
|
|
func (n *Node) Now() time.Time {
|
|
|
|
return time.Now()
|
|
|
|
}
|
|
|
|
|
2014-10-18 14:25:10 -04:00
|
|
|
func (n *Node) HasMenuCurrent(menuId string, inme *MenuEntry) bool {
|
|
|
|
if inme.HasChildren() {
|
|
|
|
me := MenuEntry{Name: n.Title, Url: string(n.Permalink)}
|
|
|
|
|
|
|
|
for _, child := range inme.Children {
|
|
|
|
if me.IsSameResource(child) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *Node) IsMenuCurrent(menuId string, inme *MenuEntry) bool {
|
|
|
|
|
|
|
|
me := MenuEntry{Name: n.Title, Url: string(n.Permalink)}
|
|
|
|
|
|
|
|
if !me.IsSameResource(inme) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// this resource may be included in several menus
|
|
|
|
// search for it to make sure that it is in the menu with the given menuId
|
|
|
|
if menu, ok := (*n.Site.Menus)[menuId]; ok {
|
|
|
|
for _, menuEntry := range *menu {
|
|
|
|
if menuEntry.IsSameResource(inme) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
descendantFound := n.isSameAsDescendantMenu(inme, menuEntry)
|
|
|
|
if descendantFound {
|
|
|
|
return descendantFound
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-23 02:59:19 -04:00
|
|
|
return false
|
|
|
|
}
|
2014-10-18 14:25:10 -04:00
|
|
|
|
|
|
|
func (n *Node) isSameAsDescendantMenu(inme *MenuEntry, parent *MenuEntry) bool {
|
|
|
|
if parent.HasChildren() {
|
|
|
|
for _, child := range parent.Children {
|
|
|
|
if child.IsSameResource(inme) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
descendantFound := n.isSameAsDescendantMenu(inme, child)
|
|
|
|
if descendantFound {
|
|
|
|
return descendantFound
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-04-23 02:59:19 -04:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *Node) RSSlink() template.HTML {
|
2014-01-29 17:50:31 -05:00
|
|
|
return n.RSSLink
|
2013-08-13 19:39:24 -04:00
|
|
|
}
|
|
|
|
|
2014-08-19 21:27:13 -04:00
|
|
|
func (n *Node) IsNode() bool {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *Node) IsPage() bool {
|
|
|
|
return !n.IsNode()
|
|
|
|
}
|
|
|
|
|
2013-08-13 19:39:24 -04:00
|
|
|
type UrlPath struct {
|
2014-01-29 17:50:31 -05:00
|
|
|
Url string
|
|
|
|
Permalink template.HTML
|
|
|
|
Slug string
|
|
|
|
Section string
|
2013-07-04 11:32:55 -04:00
|
|
|
}
|