Created
March 4, 2016 17:21
-
-
Save pkieltyka/88595b7b71f802f09a02 to your computer and use it in GitHub Desktop.
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
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