Skip to content

Commit fe6f66e

Browse files
Merge pull request #2023 from Infomaniak/clean-code
Clean code
2 parents 2a8eaa8 + 92344e0 commit fe6f66e

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

app/src/main/java/com/infomaniak/mail/data/api/ApiRepository.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ object ApiRepository : ApiRepositoryCore() {
7373
method: ApiController.ApiMethod,
7474
body: Any? = null,
7575
okHttpClient: OkHttpClient = HttpClient.okHttpClient,
76-
): T = ApiController.callApi(url, method, body, okHttpClient, true)
76+
): T = ApiController.callApi(url, method, body, okHttpClient, useKotlinxSerialization = true)
7777

7878
fun ping(): ApiResponse<String> = callApi(ApiRoutes.ping(), GET)
7979

app/src/main/java/com/infomaniak/mail/utils/DraftUtils.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*/
1818
package com.infomaniak.mail.utils
1919

20-
import com.infomaniak.lib.core.api.ApiController
20+
import com.infomaniak.lib.core.api.ApiController.NetworkException
2121
import com.infomaniak.lib.core.utils.SentryLog
2222
import com.infomaniak.lib.core.utils.isNetworkException
2323
import com.infomaniak.mail.data.cache.mailboxContent.DraftController
@@ -74,7 +74,7 @@ private suspend fun Draft.uploadAttachments(mailbox: Mailbox, draftController: D
7474
}.onFailure { exception ->
7575
setUploadStatus(attachment, UploadStatus.AWAITING, step = "after failing upload")
7676
SentryLog.d(ATTACHMENT_TAG, "${exception.message}", exception)
77-
if ((exception as Exception).isNetworkException()) throw ApiController.NetworkException()
77+
if ((exception as Exception).isNetworkException()) throw NetworkException()
7878
throw exception
7979
}
8080
}

app/src/main/java/com/infomaniak/mail/utils/SentryDebug.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ object SentryDebug {
223223
scope.setExtra("folderRole", "${folder.role?.name}")
224224
scope.setExtra("folderId", folder.id)
225225
Sentry.captureMessage(
226-
"Message is in wrong Folder (related to 'Message has multiple parent folders'",
226+
"Message is in wrong Folder (related to 'Message has multiple parent folders')",
227227
SentryLevel.ERROR,
228228
)
229229
}

app/src/main/java/com/infomaniak/mail/workers/BaseCoroutineWorker.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import android.content.Context
2121
import androidx.work.CoroutineWorker
2222
import androidx.work.Data
2323
import androidx.work.WorkerParameters
24-
import com.infomaniak.lib.core.api.ApiController
24+
import com.infomaniak.lib.core.api.ApiController.NetworkException
2525
import io.sentry.Sentry
2626
import kotlinx.coroutines.CancellationException
2727

@@ -39,7 +39,7 @@ abstract class BaseCoroutineWorker(appContext: Context, params: WorkerParameters
3939
exception.printStackTrace()
4040
when (exception) {
4141
is CancellationException -> Result.failure()
42-
is ApiController.NetworkException -> Result.retry()
42+
is NetworkException -> Result.retry()
4343
else -> {
4444
Sentry.captureException(exception)
4545
Result.failure()

app/src/main/java/com/infomaniak/mail/workers/DraftsActionsWorker.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import androidx.hilt.work.HiltWorker
2323
import androidx.lifecycle.LiveData
2424
import androidx.work.*
2525
import androidx.work.WorkInfo.State
26-
import com.infomaniak.lib.core.api.ApiController
26+
import com.infomaniak.lib.core.api.ApiController.NetworkException
2727
import com.infomaniak.lib.core.models.ApiResponse
2828
import com.infomaniak.lib.core.utils.FORMAT_DATE_WITH_TIMEZONE
2929
import com.infomaniak.lib.core.utils.SentryLog
@@ -165,7 +165,7 @@ class DraftsActionsWorker @AssistedInject constructor(
165165
}
166166
}.onFailure { exception ->
167167
when (exception) {
168-
is ApiController.NetworkException -> {
168+
is NetworkException -> {
169169
mailboxContentRealm.executeRealmCallbacks(realmActionsOnDraft)
170170
throw exception
171171
}

app/src/standard/java/com/infomaniak/mail/firebase/RegisterUserDeviceWorker.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ package com.infomaniak.mail.firebase
2020
import android.content.Context
2121
import androidx.hilt.work.HiltWorker
2222
import androidx.work.*
23-
import com.infomaniak.lib.core.api.ApiController
23+
import com.infomaniak.lib.core.api.ApiController.NetworkException
2424
import com.infomaniak.lib.core.utils.SentryLog
2525
import com.infomaniak.mail.data.LocalSettings
2626
import com.infomaniak.mail.di.IoDispatcher
@@ -62,7 +62,7 @@ class RegisterUserDeviceWorker @AssistedInject constructor(
6262
runCatching {
6363
apiResponse.throwErrorAsException()
6464
}.onFailure { exception ->
65-
if (exception !is ApiController.NetworkException) Sentry.captureException(exception)
65+
if (exception !is NetworkException) Sentry.captureException(exception)
6666
SentryLog.w(TAG, "launchWork: register ${user.id} failed", exception)
6767
return@withContext Result.retry()
6868
}

0 commit comments

Comments
 (0)