blob: 63eac1ab950f5910e71897e3ef8ee7f1b48fc74a [file] [log] [blame]
/*
* Copyright (C) 2014 Square, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.squareup.okhttp;
import java.io.UnsupportedEncodingException;
import java.net.URLEncoder;
import okio.Buffer;
/**
* Fluent API to build <a href="http://www.w3.org/MarkUp/html-spec/html-spec_8.html#SEC8.2.1">HTML
* 2.0</a>-compliant form data.
*/
public final class FormEncodingBuilder {
private static final MediaType CONTENT_TYPE =
MediaType.parse("application/x-www-form-urlencoded");
private final Buffer content = new Buffer();
/** Add new key-value pair. */
public FormEncodingBuilder add(String name, String value) {
if (content.size() > 0) {
content.writeByte('&');
}
try {
content.writeUtf8(URLEncoder.encode(name, "UTF-8"));
content.writeByte('=');
content.writeUtf8(URLEncoder.encode(value, "UTF-8"));
} catch (UnsupportedEncodingException e) {
throw new AssertionError(e);
}
return this;
}
public RequestBody build() {
if (content.size() == 0) {
throw new IllegalStateException("Form encoded body must have at least one part.");
}
return RequestBody.create(CONTENT_TYPE, content.snapshot());
}
}