2017-05-01 03:06:42 -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.
|
|
|
|
|
2018-11-29 22:32:53 -05:00
|
|
|
// Package fmt provides template functions for formatting strings.
|
2017-05-01 03:06:42 -04:00
|
|
|
package fmt
|
|
|
|
|
|
|
|
import (
|
|
|
|
_fmt "fmt"
|
2018-09-06 18:25:30 -04:00
|
|
|
|
2021-06-07 10:36:48 -04:00
|
|
|
"github.com/gohugoio/hugo/common/loggers"
|
|
|
|
|
2018-10-03 08:58:09 -04:00
|
|
|
"github.com/gohugoio/hugo/deps"
|
2017-09-30 06:00:19 -04:00
|
|
|
"github.com/gohugoio/hugo/helpers"
|
2017-05-01 03:06:42 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// New returns a new instance of the fmt-namespaced template functions.
|
2018-10-03 08:58:09 -04:00
|
|
|
func New(d *deps.Deps) *Namespace {
|
2021-06-08 12:52:38 -04:00
|
|
|
ignorableLogger, ok := d.Log.(loggers.IgnorableLogger)
|
|
|
|
if !ok {
|
|
|
|
ignorableLogger = loggers.NewIgnorableLogger(d.Log)
|
|
|
|
}
|
|
|
|
|
2021-06-07 10:36:48 -04:00
|
|
|
distinctLogger := helpers.NewDistinctLogger(d.Log)
|
2020-09-07 09:07:10 -04:00
|
|
|
ns := &Namespace{
|
2021-06-07 10:36:48 -04:00
|
|
|
distinctLogger: ignorableLogger.Apply(distinctLogger),
|
2019-12-20 14:46:17 -05:00
|
|
|
}
|
2020-09-07 09:07:10 -04:00
|
|
|
|
|
|
|
d.BuildStartListeners.Add(func() {
|
2021-06-07 10:36:48 -04:00
|
|
|
ns.distinctLogger.Reset()
|
2020-09-07 09:07:10 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
return ns
|
2017-05-01 03:06:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Namespace provides template functions for the "fmt" namespace.
|
|
|
|
type Namespace struct {
|
2021-06-07 10:36:48 -04:00
|
|
|
distinctLogger loggers.IgnorableLogger
|
2017-05-01 03:06:42 -04:00
|
|
|
}
|
|
|
|
|
2022-04-30 12:12:08 -04:00
|
|
|
// Print returns a string representation args.
|
|
|
|
func (ns *Namespace) Print(args ...any) string {
|
|
|
|
return _fmt.Sprint(args...)
|
2017-05-01 03:06:42 -04:00
|
|
|
}
|
|
|
|
|
2022-04-30 12:12:08 -04:00
|
|
|
// Printf returns a formatted string representation of args.
|
|
|
|
func (ns *Namespace) Printf(format string, args ...any) string {
|
|
|
|
return _fmt.Sprintf(format, args...)
|
2017-05-01 03:06:42 -04:00
|
|
|
}
|
|
|
|
|
2022-04-30 12:12:08 -04:00
|
|
|
// Println returns string representation of args ending with a newline.
|
|
|
|
func (ns *Namespace) Println(args ...any) string {
|
|
|
|
return _fmt.Sprintln(args...)
|
2017-05-01 03:06:42 -04:00
|
|
|
}
|
2017-09-30 06:00:19 -04:00
|
|
|
|
2022-04-30 12:12:08 -04:00
|
|
|
// Errorf formats args according to a format specifier and logs an ERROR.
|
2019-12-21 04:26:14 -05:00
|
|
|
// It returns an empty string.
|
2022-04-30 12:12:08 -04:00
|
|
|
func (ns *Namespace) Errorf(format string, args ...any) string {
|
|
|
|
ns.distinctLogger.Errorf(format, args...)
|
2021-06-07 10:36:48 -04:00
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2022-04-30 12:12:08 -04:00
|
|
|
// Erroridf formats args according to a format specifier and logs an ERROR and
|
2021-06-07 10:36:48 -04:00
|
|
|
// an information text that the error with the given ID can be suppressed in config.
|
|
|
|
// It returns an empty string.
|
2022-04-30 12:12:08 -04:00
|
|
|
func (ns *Namespace) Erroridf(id, format string, args ...any) string {
|
|
|
|
ns.distinctLogger.Errorsf(id, format, args...)
|
2019-12-21 04:26:14 -05:00
|
|
|
return ""
|
2017-09-30 06:00:19 -04:00
|
|
|
}
|
2019-12-20 14:46:17 -05:00
|
|
|
|
2022-04-30 12:12:08 -04:00
|
|
|
// Warnf formats args according to a format specifier and logs a WARNING.
|
2019-12-20 14:46:17 -05:00
|
|
|
// It returns an empty string.
|
2022-04-30 12:12:08 -04:00
|
|
|
func (ns *Namespace) Warnf(format string, args ...any) string {
|
|
|
|
ns.distinctLogger.Warnf(format, args...)
|
2019-12-20 14:46:17 -05:00
|
|
|
return ""
|
|
|
|
}
|