Skip to content

Instantly share code, notes, and snippets.

@pkieltyka
Created March 4, 2016 17:21
Show Gist options
  • Save pkieltyka/88595b7b71f802f09a02 to your computer and use it in GitHub Desktop.
Save pkieltyka/88595b7b71f802f09a02 to your computer and use it in GitHub Desktop.
type MediaType int
const (
MediaUnknown MediaType = iota
MediaImage
MediaVideo
MediaAudio
MediaDocument
MediaPresslyComment
)
var mediaTypes = []string{
"unknown", "image", "video", "audio", "document",
}
func (mt MediaType) String() string {
return mediaTypes[mt]
}
func (mt MediaType) MarshalText() ([]byte, error) {
return []byte(mt.String()), nil
}
func (mt *MediaType) UnmarshalText(text []byte) error {
*mt = MediaUnknown
enum := string(text)
for i, k := range mediaTypes {
if enum == k {
*mt = MediaType(i)
return nil
}
}
return nil
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment