Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for JSON API Content-Type #14

Open
holmes89 opened this issue Aug 23, 2018 · 1 comment
Open

Support for JSON API Content-Type #14

holmes89 opened this issue Aug 23, 2018 · 1 comment

Comments

@holmes89
Copy link

Having JSON API as a Content Type header causes the response method to compress. It should return a string.

@holmes89
Copy link
Author

I have a solution, but am unable to push a branch for a PR.

func isTextMime(kind string) bool {
        mt, _, err := mime.ParseMediaType(kind)
        if err != nil {
                return false
        }

        if strings.HasPrefix(mt, "text/") {
                return true
	}

        switch mt {
	case "image/svg+xml":
                return true
        case "application/json":
                return true
	case "application/vnd.api+json":
                return true
	case "application/xml":
		return true
        default:
                return false
	}
}

Have a corresponding test to go along with it

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant