summaryrefslogtreecommitdiffstats
path: root/media/mediaType.go
diff options
context:
space:
mode:
Diffstat (limited to 'media/mediaType.go')
-rw-r--r--media/mediaType.go28
1 files changed, 26 insertions, 2 deletions
diff --git a/media/mediaType.go b/media/mediaType.go
index 33ccb2818..07ba410fb 100644
--- a/media/mediaType.go
+++ b/media/mediaType.go
@@ -50,7 +50,8 @@ func FromString(t string) (Type, error) {
mainType := parts[0]
subParts := strings.Split(parts[1], "+")
- subType := subParts[0]
+ subType := strings.Split(subParts[0], ";")[0]
+
var suffix string
if len(subParts) == 1 {
@@ -85,25 +86,38 @@ func (m Type) FullSuffix() string {
var (
CalendarType = Type{"text", "calendar", "ics", defaultDelimiter}
CSSType = Type{"text", "css", "css", defaultDelimiter}
+ SCSSType = Type{"text", "x-scss", "scss", defaultDelimiter}
+ SASSType = Type{"text", "x-sass", "sass", defaultDelimiter}
CSVType = Type{"text", "csv", "csv", defaultDelimiter}
HTMLType = Type{"text", "html", "html", defaultDelimiter}
JavascriptType = Type{"application", "javascript", "js", defaultDelimiter}
JSONType = Type{"application", "json", "json", defaultDelimiter}
RSSType = Type{"application", "rss", "xml", defaultDelimiter}
XMLType = Type{"application", "xml", "xml", defaultDelimiter}
- TextType = Type{"text", "plain", "txt", defaultDelimiter}
+ // The official MIME type of SVG is image/svg+xml. We currently only support one extension
+ // per mime type. The workaround in projects is to create multiple media type definitions,
+ // but we need to improve this to take other known suffixes into account.
+ // But until then, svg has an svg extension, which is very common. TODO(bep)
+ SVGType = Type{"image", "svg", "svg", defaultDelimiter}
+ TextType = Type{"text", "plain", "txt", defaultDelimiter}
+
+ OctetType = Type{"application", "octet-stream", "", ""}
)
var DefaultTypes = Types{
CalendarType,
CSSType,
CSVType,
+ SCSSType,
+ SASSType,
HTMLType,
JavascriptType,
JSONType,
RSSType,
XMLType,
+ SVGType,
TextType,
+ OctetType,
}
func init() {
@@ -125,6 +139,16 @@ func (t Types) GetByType(tp string) (Type, bool) {
return Type{}, false
}
+// GetFirstBySuffix will return the first media type matching the given suffix.
+func (t Types) GetFirstBySuffix(suffix string) (Type, bool) {
+ for _, tt := range t {
+ if strings.EqualFold(suffix, tt.Suffix) {
+ return tt, true
+ }
+ }
+ return Type{}, false
+}
+
// GetBySuffix gets a media type given as suffix, e.g. "html".
// It will return false if no format could be found, or if the suffix given
// is ambiguous.