2017-04-30 17:10:46 -04:00
|
|
|
// Copyright 2017 The Hugo Authors. All rights reserved.
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
package time
|
|
|
|
|
|
|
|
import (
|
2017-06-13 12:42:45 -04:00
|
|
|
"github.com/gohugoio/hugo/deps"
|
|
|
|
"github.com/gohugoio/hugo/tpl/internal"
|
2017-04-30 17:10:46 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
const name = "time"
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
f := func(d *deps.Deps) *internal.TemplateFuncsNamespace {
|
|
|
|
ctx := New()
|
|
|
|
|
2017-05-01 12:40:34 -04:00
|
|
|
ns := &internal.TemplateFuncsNamespace{
|
2017-05-09 21:24:23 -04:00
|
|
|
Name: name,
|
2017-05-20 04:28:33 -04:00
|
|
|
Context: func(args ...interface{}) interface{} {
|
2017-05-09 21:24:23 -04:00
|
|
|
// Handle overlapping "time" namespace and func.
|
|
|
|
//
|
|
|
|
// If no args are passed to `time`, assume namespace usage and
|
|
|
|
// return namespace context.
|
|
|
|
//
|
2017-05-17 15:26:02 -04:00
|
|
|
// If args are passed, call AsTime().
|
2017-05-09 21:24:23 -04:00
|
|
|
|
2020-10-19 18:58:05 -04:00
|
|
|
switch len(args) {
|
|
|
|
case 0:
|
2017-05-09 21:24:23 -04:00
|
|
|
return ctx
|
2020-10-19 18:58:05 -04:00
|
|
|
case 1:
|
|
|
|
t, err := ctx.AsTime(args[0])
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return t
|
|
|
|
case 2:
|
|
|
|
t, err := ctx.AsTime(args[0], args[1])
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return t
|
2017-05-09 21:24:23 -04:00
|
|
|
|
2020-10-19 18:58:05 -04:00
|
|
|
// 3 or more arguments. Currently not supported.
|
|
|
|
default:
|
|
|
|
return "Invalid arguments supplied to `time`. Refer to time documentation: https://gohugo.io/functions/time/"
|
2017-05-09 21:24:23 -04:00
|
|
|
}
|
|
|
|
},
|
2017-04-30 17:10:46 -04:00
|
|
|
}
|
|
|
|
|
2017-05-01 12:40:34 -04:00
|
|
|
ns.AddMethodMapping(ctx.Format,
|
|
|
|
[]string{"dateFormat"},
|
|
|
|
[][2]string{
|
|
|
|
{`dateFormat: {{ dateFormat "Monday, Jan 2, 2006" "2015-01-21" }}`, `dateFormat: Wednesday, Jan 21, 2015`},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
ns.AddMethodMapping(ctx.Now,
|
|
|
|
[]string{"now"},
|
|
|
|
[][2]string{},
|
|
|
|
)
|
|
|
|
|
2017-05-20 04:41:43 -04:00
|
|
|
ns.AddMethodMapping(ctx.AsTime,
|
|
|
|
nil,
|
|
|
|
[][2]string{
|
|
|
|
{`{{ (time "2015-01-21").Year }}`, `2015`},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
2017-09-08 11:58:39 -04:00
|
|
|
ns.AddMethodMapping(ctx.Duration,
|
|
|
|
[]string{"duration"},
|
|
|
|
[][2]string{
|
|
|
|
{`{{ mul 60 60 | duration "second" }}`, `1h0m0s`},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
ns.AddMethodMapping(ctx.ParseDuration,
|
|
|
|
nil,
|
|
|
|
[][2]string{
|
|
|
|
{`{{ "1h12m10s" | time.ParseDuration }}`, `1h12m10s`},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
2017-05-01 12:40:34 -04:00
|
|
|
return ns
|
2017-04-30 17:10:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
internal.AddTemplateFuncsNamespace(f)
|
|
|
|
}
|