-
Notifications
You must be signed in to change notification settings - Fork 597
/
Copy pathHttpsCallOptions.kt
73 lines (64 loc) · 2.42 KB
/
HttpsCallOptions.kt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
// Copyright 2018 Google LLC
//
// 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.google.firebase.functions
import java.util.concurrent.TimeUnit
import okhttp3.OkHttpClient
/** An internal class for keeping track of options applied to an HttpsCallableReference. */
internal class HttpsCallOptions {
// The timeout to use for calls from references created by this Functions.
private var timeout = DEFAULT_TIMEOUT
private var timeoutUnits = DEFAULT_TIMEOUT_UNITS
@JvmField public val limitedUseAppCheckTokens: Boolean
/** Creates an (internal) HttpsCallOptions from the (external) [HttpsCallableOptions]. */
internal constructor(publicCallableOptions: HttpsCallableOptions) {
limitedUseAppCheckTokens = publicCallableOptions.limitedUseAppCheckTokens
}
internal constructor() {
limitedUseAppCheckTokens = false
}
internal fun getLimitedUseAppCheckTokens(): Boolean {
return limitedUseAppCheckTokens
}
/**
* Changes the timeout for calls from this instance of Functions. The default is 60 seconds.
*
* @param timeout The length of the timeout, in the given units.
* @param units The units for the specified timeout.
*/
internal fun setTimeout(timeout: Long, units: TimeUnit) {
this.timeout = timeout
timeoutUnits = units
}
/**
* Returns the timeout for calls from this instance of Functions.
*
* @return The timeout, in milliseconds.
*/
internal fun getTimeout(): Long {
return timeoutUnits.toMillis(timeout)
}
/** Creates a new OkHttpClient with these options applied to it. */
internal fun apply(client: OkHttpClient): OkHttpClient {
return client
.newBuilder()
.callTimeout(timeout, timeoutUnits)
.readTimeout(timeout, timeoutUnits)
.build()
}
private companion object {
// The default timeout to use for all calls.
private const val DEFAULT_TIMEOUT: Long = 70
private val DEFAULT_TIMEOUT_UNITS = TimeUnit.SECONDS
}
}