1
0
mirror of https://github.com/MontFerret/ferret.git synced 2024-12-16 11:37:36 +02:00
ferret/pkg/stdlib/strings/json.go

50 lines
1.1 KiB
Go
Raw Normal View History

package strings
import (
"context"
"encoding/json"
2018-10-14 19:06:27 +02:00
"github.com/MontFerret/ferret/pkg/runtime/core"
"github.com/MontFerret/ferret/pkg/runtime/values"
)
2018-10-14 19:06:27 +02:00
// JSONParse returns a FQL value described by the JSON-encoded input string.
// @params text (String) - The string to parse as JSON.
// @returns FQL value (Read)
func JSONParse(_ context.Context, args ...core.Value) (core.Value, error) {
err := core.ValidateArgs(args, 1, 1)
if err != nil {
return values.EmptyString, err
}
var val interface{}
err = json.Unmarshal([]byte(args[0].String()), &val)
if err != nil {
return values.EmptyString, err
}
return values.Parse(val), nil
}
2018-10-14 19:06:27 +02:00
// JSONStringify returns a JSON string representation of the input value.
// @params value (Read) - The input value to serialize.
// @returns json (String)
func JSONStringify(_ context.Context, args ...core.Value) (core.Value, error) {
err := core.ValidateArgs(args, 1, 1)
if err != nil {
return values.EmptyString, err
}
out, err := json.Marshal(args[0])
if err != nil {
return values.EmptyString, err
}
return values.NewString(string(out)), nil
}