mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
38 lines
824 B
Go
38 lines
824 B
Go
package yqlib
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"net/url"
|
|
|
|
yaml "gopkg.in/yaml.v3"
|
|
)
|
|
|
|
type uriEncoder struct {
|
|
}
|
|
|
|
func NewUriEncoder() Encoder {
|
|
return &uriEncoder{}
|
|
}
|
|
|
|
func (e *uriEncoder) CanHandleAliases() bool {
|
|
return false
|
|
}
|
|
|
|
func (e *uriEncoder) PrintDocumentSeparator(writer io.Writer) error {
|
|
return nil
|
|
}
|
|
|
|
func (e *uriEncoder) PrintLeadingContent(writer io.Writer, content string) error {
|
|
return nil
|
|
}
|
|
|
|
func (e *uriEncoder) Encode(writer io.Writer, originalNode *yaml.Node) error {
|
|
node := unwrapDoc(originalNode)
|
|
if guessTagFromCustomType(node) != "!!str" {
|
|
return fmt.Errorf("cannot encode %v as URI, can only operate on strings. Please first pipe through another encoding operator to convert the value to a string", node.Tag)
|
|
}
|
|
_, err := writer.Write([]byte(url.QueryEscape(originalNode.Value)))
|
|
return err
|
|
}
|