2017-04-30 11:45:56 -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 math
|
|
|
|
|
|
|
|
import (
|
2023-02-25 03:24:59 -05:00
|
|
|
"context"
|
|
|
|
|
2017-06-13 12:42:45 -04:00
|
|
|
"github.com/gohugoio/hugo/deps"
|
|
|
|
"github.com/gohugoio/hugo/tpl/internal"
|
2017-04-30 11:45:56 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
const name = "math"
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
f := func(d *deps.Deps) *internal.TemplateFuncsNamespace {
|
|
|
|
ctx := New()
|
|
|
|
|
2017-05-01 12:40:34 -04:00
|
|
|
ns := &internal.TemplateFuncsNamespace{
|
2017-04-30 11:45:56 -04:00
|
|
|
Name: name,
|
2023-02-25 03:24:59 -05:00
|
|
|
Context: func(cctx context.Context, args ...any) (any, error) { return ctx, nil },
|
2017-04-30 11:45:56 -04:00
|
|
|
}
|
|
|
|
|
2023-05-16 12:32:07 -04:00
|
|
|
ns.AddMethodMapping(ctx.Abs,
|
|
|
|
nil,
|
|
|
|
[][2]string{
|
|
|
|
{"{{ math.Abs -2.1 }}", "2.1"},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
2017-05-01 12:40:34 -04:00
|
|
|
ns.AddMethodMapping(ctx.Add,
|
|
|
|
[]string{"add"},
|
|
|
|
[][2]string{
|
2022-11-25 00:24:18 -05:00
|
|
|
{"{{ add 1 2 }}", "3"},
|
2017-05-01 12:40:34 -04:00
|
|
|
},
|
|
|
|
)
|
|
|
|
|
2017-09-25 22:01:59 -04:00
|
|
|
ns.AddMethodMapping(ctx.Ceil,
|
|
|
|
nil,
|
|
|
|
[][2]string{
|
2022-11-25 00:24:18 -05:00
|
|
|
{"{{ math.Ceil 2.1 }}", "3"},
|
2017-09-25 22:01:59 -04:00
|
|
|
},
|
|
|
|
)
|
|
|
|
|
2017-05-01 12:40:34 -04:00
|
|
|
ns.AddMethodMapping(ctx.Div,
|
|
|
|
[]string{"div"},
|
|
|
|
[][2]string{
|
2022-11-25 00:24:18 -05:00
|
|
|
{"{{ div 6 3 }}", "2"},
|
2017-05-01 12:40:34 -04:00
|
|
|
},
|
|
|
|
)
|
|
|
|
|
2017-09-25 22:01:59 -04:00
|
|
|
ns.AddMethodMapping(ctx.Floor,
|
|
|
|
nil,
|
|
|
|
[][2]string{
|
2022-11-25 00:24:18 -05:00
|
|
|
{"{{ math.Floor 1.9 }}", "1"},
|
2017-09-25 22:01:59 -04:00
|
|
|
},
|
|
|
|
)
|
|
|
|
|
2017-07-02 18:20:49 -04:00
|
|
|
ns.AddMethodMapping(ctx.Log,
|
|
|
|
nil,
|
|
|
|
[][2]string{
|
2022-11-25 00:24:18 -05:00
|
|
|
{"{{ math.Log 1 }}", "0"},
|
2017-07-02 18:20:49 -04:00
|
|
|
},
|
|
|
|
)
|
|
|
|
|
2021-05-27 11:34:49 -04:00
|
|
|
ns.AddMethodMapping(ctx.Max,
|
2020-02-24 17:45:04 -05:00
|
|
|
nil,
|
|
|
|
[][2]string{
|
2022-11-25 00:24:18 -05:00
|
|
|
{"{{ math.Max 1 2 }}", "2"},
|
2021-05-27 11:34:49 -04:00
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
ns.AddMethodMapping(ctx.Min,
|
|
|
|
nil,
|
|
|
|
[][2]string{
|
2022-11-25 00:24:18 -05:00
|
|
|
{"{{ math.Min 1 2 }}", "1"},
|
2020-02-24 17:45:04 -05:00
|
|
|
},
|
|
|
|
)
|
|
|
|
|
2017-05-01 12:40:34 -04:00
|
|
|
ns.AddMethodMapping(ctx.Mod,
|
|
|
|
[]string{"mod"},
|
|
|
|
[][2]string{
|
2022-11-25 00:24:18 -05:00
|
|
|
{"{{ mod 15 3 }}", "0"},
|
2017-05-01 12:40:34 -04:00
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
ns.AddMethodMapping(ctx.ModBool,
|
|
|
|
[]string{"modBool"},
|
|
|
|
[][2]string{
|
2022-11-25 00:24:18 -05:00
|
|
|
{"{{ modBool 15 3 }}", "true"},
|
2017-05-01 12:40:34 -04:00
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
ns.AddMethodMapping(ctx.Mul,
|
|
|
|
[]string{"mul"},
|
|
|
|
[][2]string{
|
2022-11-25 00:24:18 -05:00
|
|
|
{"{{ mul 2 3 }}", "6"},
|
2017-05-01 12:40:34 -04:00
|
|
|
},
|
|
|
|
)
|
|
|
|
|
2020-05-13 13:35:07 -04:00
|
|
|
ns.AddMethodMapping(ctx.Pow,
|
|
|
|
[]string{"pow"},
|
|
|
|
[][2]string{
|
2022-11-25 00:24:18 -05:00
|
|
|
{"{{ math.Pow 2 3 }}", "8"},
|
2020-05-13 13:35:07 -04:00
|
|
|
},
|
|
|
|
)
|
|
|
|
|
2023-12-28 17:25:29 -05:00
|
|
|
ns.AddMethodMapping(ctx.Rand,
|
|
|
|
nil,
|
|
|
|
[][2]string{
|
|
|
|
{"{{ math.Rand }}", "0.6312770459590062"},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
2017-09-25 22:01:59 -04:00
|
|
|
ns.AddMethodMapping(ctx.Round,
|
|
|
|
nil,
|
|
|
|
[][2]string{
|
2022-11-25 00:24:18 -05:00
|
|
|
{"{{ math.Round 1.5 }}", "2"},
|
2017-09-25 22:01:59 -04:00
|
|
|
},
|
|
|
|
)
|
|
|
|
|
2021-05-27 11:34:49 -04:00
|
|
|
ns.AddMethodMapping(ctx.Sqrt,
|
|
|
|
nil,
|
|
|
|
[][2]string{
|
2022-11-25 00:24:18 -05:00
|
|
|
{"{{ math.Sqrt 81 }}", "9"},
|
2021-05-27 11:34:49 -04:00
|
|
|
},
|
|
|
|
)
|
|
|
|
|
2017-05-01 12:40:34 -04:00
|
|
|
ns.AddMethodMapping(ctx.Sub,
|
|
|
|
[]string{"sub"},
|
|
|
|
[][2]string{
|
2022-11-25 00:24:18 -05:00
|
|
|
{"{{ sub 3 2 }}", "1"},
|
2017-05-01 12:40:34 -04:00
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
return ns
|
2017-04-30 11:45:56 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
internal.AddTemplateFuncsNamespace(f)
|
|
|
|
}
|