traefik/vendor/google.golang.org/api/googleapi/internal/uritemplates/utils.go

18 lines
637 B
Go
Raw Normal View History

2017-02-07 21:33:23 +00:00
// Copyright 2016 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package uritemplates
2017-10-31 09:42:03 +00:00
// Expand parses then expands a URI template with a set of values to produce
// the resultant URI. Two forms of the result are returned: one with all the
// elements escaped, and one with the elements unescaped.
func Expand(path string, values map[string]string) (escaped, unescaped string, err error) {
2017-02-07 21:33:23 +00:00
template, err := parse(path)
if err != nil {
2017-10-31 09:42:03 +00:00
return "", "", err
2017-02-07 21:33:23 +00:00
}
2017-10-31 09:42:03 +00:00
escaped, unescaped = template.Expand(values)
return escaped, unescaped, nil
2017-02-07 21:33:23 +00:00
}