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

fix #1970 - update MultiPartFormDataContent to allow contentType override using optional builder #2003

Merged
merged 3 commits into from
Nov 23, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,18 @@ class FormDataContent(
override fun bytes(): ByteArray = content
}

private val buildFormDataContentType = { boundary: String ->
ContentType.MultiPart.FormData.withParameter("boundary", boundary)
}

/**
* [OutgoingContent] for multipart/form-data formatted request.
*
* @param parts: form part data
*/
class MultiPartFormDataContent(
parts: List<PartData>
parts: List<PartData>,
buildContentType: (boundary: String) -> ContentType = buildFormDataContentType
jschneidereit marked this conversation as resolved.
Show resolved Hide resolved
) : OutgoingContent.WriteChannelContent() {
private val boundary: String = generateBoundary()
private val BOUNDARY_BYTES = "--$boundary\r\n".toByteArray()
Expand Down Expand Up @@ -83,7 +87,7 @@ class MultiPartFormDataContent(

override val contentLength: Long?

override val contentType: ContentType = ContentType.MultiPart.FormData.withParameter("boundary", boundary)
override val contentType: ContentType = buildContentType(boundary)

init {
var rawLength:Long? = 0
Expand Down