package com.unity3d.ads.network.client; import com.unity3d.ads.network.mapper.HttpRequestToOkHttpRequestKt; import com.unity3d.ads.network.model.HttpRequest; import com.unity3d.ads.network.model.HttpResponse; import java.util.Map; import kotlin.ResultKt; import kotlin.Unit; import kotlin.coroutines.Continuation; import kotlin.coroutines.intrinsics.IntrinsicsKt__IntrinsicsKt; import kotlin.coroutines.jvm.internal.DebugMetadata; import kotlin.coroutines.jvm.internal.SuspendLambda; import kotlin.jvm.functions.Function2; import kotlin.jvm.internal.Intrinsics; import kotlinx.coroutines.CoroutineScope; import okhttp3.Request; import okhttp3.Response; import okhttp3.ResponseBody; @DebugMetadata(c = "com.unity3d.ads.network.client.OkHttp3Client$execute$2", f = "OkHttp3Client.kt", l = {35}, m = "invokeSuspend") /* loaded from: classes4.dex */ public final class OkHttp3Client$execute$2 extends SuspendLambda implements Function2 { final /* synthetic */ HttpRequest $request; int label; final /* synthetic */ OkHttp3Client this$0; /* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */ public OkHttp3Client$execute$2(HttpRequest httpRequest, OkHttp3Client okHttp3Client, Continuation continuation) { super(2, continuation); this.$request = httpRequest; this.this$0 = okHttp3Client; } @Override // kotlin.coroutines.jvm.internal.BaseContinuationImpl public final Continuation create(Object obj, Continuation continuation) { return new OkHttp3Client$execute$2(this.$request, this.this$0, continuation); } @Override // kotlin.jvm.functions.Function2 public final Object invoke(CoroutineScope coroutineScope, Continuation continuation) { return ((OkHttp3Client$execute$2) create(coroutineScope, continuation)).invokeSuspend(Unit.INSTANCE); } @Override // kotlin.coroutines.jvm.internal.BaseContinuationImpl public final Object invokeSuspend(Object obj) { Object coroutine_suspended; coroutine_suspended = IntrinsicsKt__IntrinsicsKt.getCOROUTINE_SUSPENDED(); int i = this.label; if (i == 0) { ResultKt.throwOnFailure(obj); Request okHttpRequest = HttpRequestToOkHttpRequestKt.toOkHttpRequest(this.$request); OkHttp3Client okHttp3Client = this.this$0; long connectTimeout = this.$request.getConnectTimeout(); long readTimeout = this.$request.getReadTimeout(); this.label = 1; obj = okHttp3Client.makeRequest(okHttpRequest, connectTimeout, readTimeout, this); if (obj == coroutine_suspended) { return coroutine_suspended; } } else { if (i != 1) { throw new IllegalStateException("call to 'resume' before 'invoke' with coroutine"); } ResultKt.throwOnFailure(obj); } Response response = (Response) obj; int code = response.code(); Map multimap = response.headers().toMultimap(); String httpUrl = response.request().url().toString(); ResponseBody body = response.body(); String string = body != null ? body.string() : null; if (string == null) { string = ""; } Intrinsics.checkNotNullExpressionValue(multimap, "toMultimap()"); Intrinsics.checkNotNullExpressionValue(httpUrl, "toString()"); return new HttpResponse(string, code, multimap, httpUrl); } }