mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
35 lines
738 B
Go
35 lines
738 B
Go
package yqlib
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"net/url"
|
|
)
|
|
|
|
type uriEncoder struct {
|
|
}
|
|
|
|
func NewUriEncoder() Encoder {
|
|
return &uriEncoder{}
|
|
}
|
|
|
|
func (e *uriEncoder) CanHandleAliases() bool {
|
|
return false
|
|
}
|
|
|
|
func (e *uriEncoder) PrintDocumentSeparator(_ io.Writer) error {
|
|
return nil
|
|
}
|
|
|
|
func (e *uriEncoder) PrintLeadingContent(_ io.Writer, _ string) error {
|
|
return nil
|
|
}
|
|
|
|
func (e *uriEncoder) Encode(writer io.Writer, node *CandidateNode) error {
|
|
if node.guessTagFromCustomType() != "!!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(node.Value)))
|
|
return err
|
|
}
|