-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from drone-plugins/webhook_support
Added webhook support
- Loading branch information
Showing
6 changed files
with
102 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
package encoder | ||
|
||
import ( | ||
"encoding/base64" | ||
"strconv" | ||
"strings" | ||
|
||
"github.com/buildkite/yaml" | ||
json "github.com/ghodss/yaml" | ||
) | ||
|
||
// Encode encodes an interface value as a string. This function | ||
// assumes all types were unmarshaled by the yaml.v2 library. | ||
// The yaml.v2 package only supports a subset of primitive types. | ||
func Encode(v interface{}) string { | ||
switch v := v.(type) { | ||
case string: | ||
return v | ||
case bool: | ||
return strconv.FormatBool(v) | ||
case int: | ||
return strconv.Itoa(v) | ||
case float64: | ||
return strconv.FormatFloat(v, 'g', -1, 64) | ||
case []byte: | ||
return base64.StdEncoding.EncodeToString(v) | ||
case []interface{}: | ||
return encodeSlice(v) | ||
default: | ||
return encodeMap(v) | ||
} | ||
} | ||
|
||
// helper function encodes a parameter in map format. | ||
func encodeMap(v interface{}) string { | ||
yml, _ := yaml.Marshal(v) | ||
out, _ := json.YAMLToJSON(yml) | ||
return string(out) | ||
} | ||
|
||
// helper function encodes a parameter in slice format. | ||
func encodeSlice(v interface{}) string { | ||
out, _ := yaml.Marshal(v) | ||
|
||
in := []string{} | ||
err := yaml.Unmarshal(out, &in) | ||
if err == nil { | ||
return strings.Join(in, ",") | ||
} | ||
out, _ = json.YAMLToJSON(out) | ||
return string(out) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters