2018-10-18 04:21:23 -04:00
|
|
|
// Copyright 2018 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 metadecoders
|
|
|
|
|
|
|
|
import (
|
2018-12-23 04:40:32 -05:00
|
|
|
"bytes"
|
|
|
|
"encoding/csv"
|
2018-10-18 04:21:23 -04:00
|
|
|
"encoding/json"
|
2018-10-20 05:16:18 -04:00
|
|
|
"fmt"
|
2023-06-16 02:17:42 -04:00
|
|
|
"log"
|
2020-06-26 17:52:12 -04:00
|
|
|
"regexp"
|
2024-01-13 13:28:39 -05:00
|
|
|
"strconv"
|
2018-12-23 15:34:17 -05:00
|
|
|
"strings"
|
2018-10-18 04:21:23 -04:00
|
|
|
|
2018-10-23 02:54:10 -04:00
|
|
|
"github.com/gohugoio/hugo/common/herrors"
|
2023-07-16 04:42:13 -04:00
|
|
|
"github.com/gohugoio/hugo/common/maps"
|
2019-06-04 06:21:25 -04:00
|
|
|
"github.com/niklasfasching/go-org/org"
|
2018-10-23 02:54:10 -04:00
|
|
|
|
2021-12-02 11:30:36 -05:00
|
|
|
xml "github.com/clbanning/mxj/v2"
|
2021-07-27 13:07:10 -04:00
|
|
|
toml "github.com/pelletier/go-toml/v2"
|
2018-11-15 03:28:02 -05:00
|
|
|
"github.com/spf13/afero"
|
2018-10-20 05:16:18 -04:00
|
|
|
"github.com/spf13/cast"
|
2018-10-19 05:30:57 -04:00
|
|
|
yaml "gopkg.in/yaml.v2"
|
2018-10-18 04:21:23 -04:00
|
|
|
)
|
|
|
|
|
2018-12-23 04:40:32 -05:00
|
|
|
// Decoder provides some configuration options for the decoders.
|
|
|
|
type Decoder struct {
|
2018-12-23 15:08:12 -05:00
|
|
|
// Delimiter is the field delimiter used in the CSV decoder. It defaults to ','.
|
|
|
|
Delimiter rune
|
2018-12-23 04:40:32 -05:00
|
|
|
|
2022-12-10 13:37:47 -05:00
|
|
|
// Comment, if not 0, is the comment character used in the CSV decoder. Lines beginning with the
|
2018-12-23 04:40:32 -05:00
|
|
|
// Comment character without preceding whitespace are ignored.
|
|
|
|
Comment rune
|
2024-01-13 13:28:39 -05:00
|
|
|
|
|
|
|
// If true, a quote may appear in an unquoted field and a non-doubled quote
|
|
|
|
// may appear in a quoted field. It defaults to false.
|
|
|
|
LazyQuotes bool
|
2018-12-23 04:40:32 -05:00
|
|
|
}
|
|
|
|
|
2018-12-23 15:34:17 -05:00
|
|
|
// OptionsKey is used in cache keys.
|
|
|
|
func (d Decoder) OptionsKey() string {
|
|
|
|
var sb strings.Builder
|
|
|
|
sb.WriteRune(d.Delimiter)
|
|
|
|
sb.WriteRune(d.Comment)
|
2024-01-13 13:28:39 -05:00
|
|
|
sb.WriteString(strconv.FormatBool(d.LazyQuotes))
|
2018-12-23 15:34:17 -05:00
|
|
|
return sb.String()
|
|
|
|
}
|
|
|
|
|
2018-12-23 04:40:32 -05:00
|
|
|
// Default is a Decoder in its default configuration.
|
|
|
|
var Default = Decoder{
|
2018-12-23 15:08:12 -05:00
|
|
|
Delimiter: ',',
|
2018-12-23 04:40:32 -05:00
|
|
|
}
|
|
|
|
|
2018-10-18 04:21:23 -04:00
|
|
|
// UnmarshalToMap will unmarshall data in format f into a new map. This is
|
|
|
|
// what's needed for Hugo's front matter decoding.
|
2022-03-17 17:03:27 -04:00
|
|
|
func (d Decoder) UnmarshalToMap(data []byte, f Format) (map[string]any, error) {
|
|
|
|
m := make(map[string]any)
|
2018-10-18 04:21:23 -04:00
|
|
|
if data == nil {
|
|
|
|
return m, nil
|
|
|
|
}
|
|
|
|
|
2020-06-30 10:11:05 -04:00
|
|
|
err := d.UnmarshalTo(data, f, &m)
|
2018-10-20 05:16:18 -04:00
|
|
|
|
|
|
|
return m, err
|
2018-11-15 03:28:02 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// UnmarshalFileToMap is the same as UnmarshalToMap, but reads the data from
|
|
|
|
// the given filename.
|
2022-03-17 17:03:27 -04:00
|
|
|
func (d Decoder) UnmarshalFileToMap(fs afero.Fs, filename string) (map[string]any, error) {
|
2018-11-15 03:28:02 -05:00
|
|
|
format := FormatFromString(filename)
|
|
|
|
if format == "" {
|
2022-05-02 10:07:52 -04:00
|
|
|
return nil, fmt.Errorf("%q is not a valid configuration format", filename)
|
2018-11-15 03:28:02 -05:00
|
|
|
}
|
2018-10-20 05:16:18 -04:00
|
|
|
|
2018-11-15 03:28:02 -05:00
|
|
|
data, err := afero.ReadFile(fs, filename)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2018-12-23 04:40:32 -05:00
|
|
|
return d.UnmarshalToMap(data, format)
|
2018-10-20 05:16:18 -04:00
|
|
|
}
|
|
|
|
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
// UnmarshalStringTo tries to unmarshal data to a new instance of type typ.
|
2022-03-17 17:03:27 -04:00
|
|
|
func (d Decoder) UnmarshalStringTo(data string, typ any) (any, error) {
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
data = strings.TrimSpace(data)
|
|
|
|
// We only check for the possible types in YAML, JSON and TOML.
|
|
|
|
switch typ.(type) {
|
|
|
|
case string:
|
|
|
|
return data, nil
|
2023-07-16 04:42:13 -04:00
|
|
|
case map[string]any, maps.Params:
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
format := d.FormatFromContentString(data)
|
|
|
|
return d.UnmarshalToMap([]byte(data), format)
|
2022-03-17 17:03:27 -04:00
|
|
|
case []any:
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
// A standalone slice. Let YAML handle it.
|
|
|
|
return d.Unmarshal([]byte(data), YAML)
|
|
|
|
case bool:
|
|
|
|
return cast.ToBoolE(data)
|
|
|
|
case int:
|
|
|
|
return cast.ToIntE(data)
|
|
|
|
case int64:
|
|
|
|
return cast.ToInt64E(data)
|
|
|
|
case float64:
|
|
|
|
return cast.ToFloat64E(data)
|
|
|
|
default:
|
2022-05-02 10:07:52 -04:00
|
|
|
return nil, fmt.Errorf("unmarshal: %T not supported", typ)
|
Add Hugo Modules
This commit implements Hugo Modules.
This is a broad subject, but some keywords include:
* A new `module` configuration section where you can import almost anything. You can configure both your own file mounts nd the file mounts of the modules you import. This is the new recommended way of configuring what you earlier put in `configDir`, `staticDir` etc. And it also allows you to mount folders in non-Hugo-projects, e.g. the `SCSS` folder in the Bootstrap GitHub project.
* A module consists of a set of mounts to the standard 7 component types in Hugo: `static`, `content`, `layouts`, `data`, `assets`, `i18n`, and `archetypes`. Yes, Theme Components can now include content, which should be very useful, especially in bigger multilingual projects.
* Modules not in your local file cache will be downloaded automatically and even "hot replaced" while the server is running.
* Hugo Modules supports and encourages semver versioned modules, and uses the minimal version selection algorithm to resolve versions.
* A new set of CLI commands are provided to manage all of this: `hugo mod init`, `hugo mod get`, `hugo mod graph`, `hugo mod tidy`, and `hugo mod vendor`.
All of the above is backed by Go Modules.
Fixes #5973
Fixes #5996
Fixes #6010
Fixes #5911
Fixes #5940
Fixes #6074
Fixes #6082
Fixes #6092
2019-05-03 03:16:58 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-20 05:16:18 -04:00
|
|
|
// Unmarshal will unmarshall data in format f into an interface{}.
|
|
|
|
// This is what's needed for Hugo's /data handling.
|
2022-03-17 17:03:27 -04:00
|
|
|
func (d Decoder) Unmarshal(data []byte, f Format) (any, error) {
|
2022-12-14 09:19:04 -05:00
|
|
|
if len(data) == 0 {
|
2018-12-23 04:40:32 -05:00
|
|
|
switch f {
|
|
|
|
case CSV:
|
|
|
|
return make([][]string, 0), nil
|
|
|
|
default:
|
2022-03-17 17:03:27 -04:00
|
|
|
return make(map[string]any), nil
|
2018-12-23 04:40:32 -05:00
|
|
|
}
|
2018-10-20 05:16:18 -04:00
|
|
|
}
|
2022-03-17 17:03:27 -04:00
|
|
|
var v any
|
2020-06-30 10:11:05 -04:00
|
|
|
err := d.UnmarshalTo(data, f, &v)
|
2018-10-20 05:16:18 -04:00
|
|
|
|
|
|
|
return v, err
|
|
|
|
}
|
|
|
|
|
2020-06-30 10:11:05 -04:00
|
|
|
// UnmarshalTo unmarshals data in format f into v.
|
2022-03-17 17:03:27 -04:00
|
|
|
func (d Decoder) UnmarshalTo(data []byte, f Format, v any) error {
|
2018-10-18 04:21:23 -04:00
|
|
|
var err error
|
|
|
|
|
|
|
|
switch f {
|
|
|
|
case ORG:
|
2019-06-04 06:21:25 -04:00
|
|
|
err = d.unmarshalORG(data, v)
|
2018-10-18 04:21:23 -04:00
|
|
|
case JSON:
|
2018-10-20 05:16:18 -04:00
|
|
|
err = json.Unmarshal(data, v)
|
2021-12-02 11:30:36 -05:00
|
|
|
case XML:
|
|
|
|
var xmlRoot xml.Map
|
|
|
|
xmlRoot, err = xml.NewMapXml(data)
|
|
|
|
|
2022-03-17 17:03:27 -04:00
|
|
|
var xmlValue map[string]any
|
2021-12-02 11:30:36 -05:00
|
|
|
if err == nil {
|
|
|
|
xmlRootName, err := xmlRoot.Root()
|
|
|
|
if err != nil {
|
2022-05-02 10:07:52 -04:00
|
|
|
return toFileError(f, data, fmt.Errorf("failed to unmarshal XML: %w", err))
|
2021-12-02 11:30:36 -05:00
|
|
|
}
|
2022-03-17 17:03:27 -04:00
|
|
|
xmlValue = xmlRoot[xmlRootName].(map[string]any)
|
2021-12-02 11:30:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
switch v := v.(type) {
|
2022-03-17 17:03:27 -04:00
|
|
|
case *map[string]any:
|
2021-12-02 11:30:36 -05:00
|
|
|
*v = xmlValue
|
2022-03-17 17:03:27 -04:00
|
|
|
case *any:
|
2021-12-02 11:30:36 -05:00
|
|
|
*v = xmlValue
|
|
|
|
}
|
2018-10-18 04:21:23 -04:00
|
|
|
case TOML:
|
2018-10-20 05:16:18 -04:00
|
|
|
err = toml.Unmarshal(data, v)
|
2018-10-18 04:21:23 -04:00
|
|
|
case YAML:
|
2018-10-20 05:16:18 -04:00
|
|
|
err = yaml.Unmarshal(data, v)
|
2018-10-20 13:09:03 -04:00
|
|
|
if err != nil {
|
2022-05-02 10:07:52 -04:00
|
|
|
return toFileError(f, data, fmt.Errorf("failed to unmarshal YAML: %w", err))
|
2018-10-20 13:09:03 -04:00
|
|
|
}
|
2018-10-18 04:21:23 -04:00
|
|
|
|
2018-10-20 05:16:18 -04:00
|
|
|
// To support boolean keys, the YAML package unmarshals maps to
|
2018-10-18 04:21:23 -04:00
|
|
|
// map[interface{}]interface{}. Here we recurse through the result
|
|
|
|
// and change all maps to map[string]interface{} like we would've
|
|
|
|
// gotten from `json`.
|
2022-03-17 17:03:27 -04:00
|
|
|
var ptr any
|
2018-10-20 05:16:18 -04:00
|
|
|
switch v.(type) {
|
2022-03-17 17:03:27 -04:00
|
|
|
case *map[string]any:
|
|
|
|
ptr = *v.(*map[string]any)
|
|
|
|
case *any:
|
|
|
|
ptr = *v.(*any)
|
2018-10-20 05:16:18 -04:00
|
|
|
default:
|
2020-06-30 10:11:05 -04:00
|
|
|
// Not a map.
|
2018-10-20 05:16:18 -04:00
|
|
|
}
|
|
|
|
|
2020-06-30 10:11:05 -04:00
|
|
|
if ptr != nil {
|
|
|
|
if mm, changed := stringifyMapKeys(ptr); changed {
|
|
|
|
switch v.(type) {
|
2022-03-17 17:03:27 -04:00
|
|
|
case *map[string]any:
|
|
|
|
*v.(*map[string]any) = mm.(map[string]any)
|
|
|
|
case *any:
|
|
|
|
*v.(*any) = mm
|
2020-06-30 10:11:05 -04:00
|
|
|
}
|
2018-10-18 04:21:23 -04:00
|
|
|
}
|
|
|
|
}
|
2018-12-23 04:40:32 -05:00
|
|
|
case CSV:
|
|
|
|
return d.unmarshalCSV(data, v)
|
|
|
|
|
2018-10-18 04:21:23 -04:00
|
|
|
default:
|
2022-05-02 10:07:52 -04:00
|
|
|
return fmt.Errorf("unmarshal of format %q is not supported", f)
|
2018-10-18 04:21:23 -04:00
|
|
|
}
|
|
|
|
|
2018-10-23 02:54:10 -04:00
|
|
|
if err == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-05-02 10:07:52 -04:00
|
|
|
return toFileError(f, data, fmt.Errorf("unmarshal failed: %w", err))
|
2018-10-23 02:54:10 -04:00
|
|
|
}
|
2018-10-18 04:21:23 -04:00
|
|
|
|
2022-03-17 17:03:27 -04:00
|
|
|
func (d Decoder) unmarshalCSV(data []byte, v any) error {
|
2018-12-23 04:40:32 -05:00
|
|
|
r := csv.NewReader(bytes.NewReader(data))
|
2018-12-23 15:08:12 -05:00
|
|
|
r.Comma = d.Delimiter
|
2018-12-23 04:40:32 -05:00
|
|
|
r.Comment = d.Comment
|
2024-01-13 13:28:39 -05:00
|
|
|
r.LazyQuotes = d.LazyQuotes
|
2018-12-23 04:40:32 -05:00
|
|
|
|
|
|
|
records, err := r.ReadAll()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
switch v.(type) {
|
2022-03-17 17:03:27 -04:00
|
|
|
case *any:
|
|
|
|
*v.(*any) = records
|
2018-12-23 04:40:32 -05:00
|
|
|
default:
|
2022-05-02 10:07:52 -04:00
|
|
|
return fmt.Errorf("CSV cannot be unmarshaled into %T", v)
|
2018-12-23 04:40:32 -05:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-06-26 17:52:12 -04:00
|
|
|
func parseORGDate(s string) string {
|
|
|
|
r := regexp.MustCompile(`[<\[](\d{4}-\d{2}-\d{2}) .*[>\]]`)
|
|
|
|
if m := r.FindStringSubmatch(s); m != nil {
|
|
|
|
return m[1]
|
|
|
|
}
|
|
|
|
return s
|
|
|
|
}
|
|
|
|
|
2022-03-17 17:03:27 -04:00
|
|
|
func (d Decoder) unmarshalORG(data []byte, v any) error {
|
2019-06-04 06:21:25 -04:00
|
|
|
config := org.New()
|
2023-06-16 02:17:42 -04:00
|
|
|
config.Log = log.Default() // TODO(bep)
|
2019-06-04 06:21:25 -04:00
|
|
|
document := config.Parse(bytes.NewReader(data), "")
|
|
|
|
if document.Error != nil {
|
|
|
|
return document.Error
|
|
|
|
}
|
2022-03-17 17:03:27 -04:00
|
|
|
frontMatter := make(map[string]any, len(document.BufferSettings))
|
2019-06-04 06:21:25 -04:00
|
|
|
for k, v := range document.BufferSettings {
|
|
|
|
k = strings.ToLower(k)
|
2019-06-04 06:21:48 -04:00
|
|
|
if strings.HasSuffix(k, "[]") {
|
|
|
|
frontMatter[k[:len(k)-2]] = strings.Fields(v)
|
2023-11-25 22:33:02 -05:00
|
|
|
} else if strings.Contains(v, "\n") {
|
|
|
|
frontMatter[k] = strings.Split(v, "\n")
|
2023-03-06 09:29:31 -05:00
|
|
|
} else if k == "date" || k == "lastmod" || k == "publishdate" || k == "expirydate" {
|
2020-06-26 17:52:12 -04:00
|
|
|
frontMatter[k] = parseORGDate(v)
|
2019-06-04 06:21:25 -04:00
|
|
|
} else {
|
|
|
|
frontMatter[k] = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
switch v.(type) {
|
2022-03-17 17:03:27 -04:00
|
|
|
case *map[string]any:
|
|
|
|
*v.(*map[string]any) = frontMatter
|
2019-06-04 06:21:25 -04:00
|
|
|
default:
|
2022-03-17 17:03:27 -04:00
|
|
|
*v.(*any) = frontMatter
|
2019-06-04 06:21:25 -04:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-05-02 10:07:52 -04:00
|
|
|
func toFileError(f Format, data []byte, err error) error {
|
2022-05-15 05:40:34 -04:00
|
|
|
return herrors.NewFileErrorFromName(err, fmt.Sprintf("_stream.%s", f)).UpdateContent(bytes.NewReader(data), nil)
|
2018-10-20 05:16:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// stringifyMapKeys recurses into in and changes all instances of
|
|
|
|
// map[interface{}]interface{} to map[string]interface{}. This is useful to
|
2018-11-13 12:28:40 -05:00
|
|
|
// work around the impedance mismatch between JSON and YAML unmarshaling that's
|
2018-10-20 05:16:18 -04:00
|
|
|
// described here: https://github.com/go-yaml/yaml/issues/139
|
|
|
|
//
|
|
|
|
// Inspired by https://github.com/stripe/stripe-mock, MIT licensed
|
2022-03-17 17:03:27 -04:00
|
|
|
func stringifyMapKeys(in any) (any, bool) {
|
2018-10-20 05:16:18 -04:00
|
|
|
switch in := in.(type) {
|
2022-03-17 17:03:27 -04:00
|
|
|
case []any:
|
2018-10-20 05:16:18 -04:00
|
|
|
for i, v := range in {
|
|
|
|
if vv, replaced := stringifyMapKeys(v); replaced {
|
|
|
|
in[i] = vv
|
|
|
|
}
|
|
|
|
}
|
2022-03-17 17:03:27 -04:00
|
|
|
case map[string]any:
|
2018-10-20 05:16:18 -04:00
|
|
|
for k, v := range in {
|
|
|
|
if vv, changed := stringifyMapKeys(v); changed {
|
|
|
|
in[k] = vv
|
|
|
|
}
|
|
|
|
}
|
2022-03-17 17:03:27 -04:00
|
|
|
case map[any]any:
|
|
|
|
res := make(map[string]any)
|
2018-10-20 05:16:18 -04:00
|
|
|
var (
|
|
|
|
ok bool
|
|
|
|
err error
|
|
|
|
)
|
|
|
|
for k, v := range in {
|
|
|
|
var ks string
|
|
|
|
|
|
|
|
if ks, ok = k.(string); !ok {
|
|
|
|
ks, err = cast.ToStringE(k)
|
|
|
|
if err != nil {
|
|
|
|
ks = fmt.Sprintf("%v", k)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if vv, replaced := stringifyMapKeys(v); replaced {
|
|
|
|
res[ks] = vv
|
|
|
|
} else {
|
|
|
|
res[ks] = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return res, true
|
|
|
|
}
|
2018-10-18 04:21:23 -04:00
|
|
|
|
2018-10-20 05:16:18 -04:00
|
|
|
return nil, false
|
2018-10-18 04:21:23 -04:00
|
|
|
}
|