jvmMain.okhttp3.internal.internal.kt Maven / Gradle / Ivy
/*
* Copyright (C) 2019 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.
*/
/** Exposes Kotlin-internal APIs to Java test code and code in other modules. */
@file:JvmName("Internal")
package okhttp3.internal
import java.nio.charset.Charset
import javax.net.ssl.SSLSocket
import okhttp3.Cache
import okhttp3.CipherSuite
import okhttp3.ConnectionSpec
import okhttp3.Cookie
import okhttp3.Headers
import okhttp3.HttpUrl
import okhttp3.MediaType
import okhttp3.MediaType.Companion.toMediaTypeOrNull
import okhttp3.Request
import okhttp3.Response
import okhttp3.internal.connection.RealConnection
fun parseCookie(currentTimeMillis: Long, url: HttpUrl, setCookie: String): Cookie? =
Cookie.parse(currentTimeMillis, url, setCookie)
fun cookieToString(cookie: Cookie, forObsoleteRfc2965: Boolean): String =
cookie.toString(forObsoleteRfc2965)
fun addHeaderLenient(builder: Headers.Builder, line: String): Headers.Builder =
builder.addLenient(line)
fun addHeaderLenient(builder: Headers.Builder, name: String, value: String): Headers.Builder =
builder.addLenient(name, value)
fun cacheGet(cache: Cache, request: Request): Response? = cache.get(request)
fun applyConnectionSpec(connectionSpec: ConnectionSpec, sslSocket: SSLSocket, isFallback: Boolean) =
connectionSpec.apply(sslSocket, isFallback)
fun ConnectionSpec.effectiveCipherSuites(socketEnabledCipherSuites: Array): Array {
return if (cipherSuitesAsString != null) {
socketEnabledCipherSuites.intersect(cipherSuitesAsString, CipherSuite.ORDER_BY_NAME)
} else {
socketEnabledCipherSuites
}
}
fun MediaType?.chooseCharset(): Pair {
var charset: Charset = Charsets.UTF_8
var finalContentType: MediaType? = this
if (this != null) {
val resolvedCharset = this.charset()
if (resolvedCharset == null) {
charset = Charsets.UTF_8
finalContentType = "$this; charset=utf-8".toMediaTypeOrNull()
} else {
charset = resolvedCharset
}
}
return charset to finalContentType
}
fun MediaType?.charset(defaultValue: Charset = Charsets.UTF_8): Charset {
return this?.charset(defaultValue) ?: Charsets.UTF_8
}
val Response.connection: RealConnection
get() = this.exchange!!.connection