-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: leaking UI context GetE2EICertificateUseCase (WPB-6648) (#2717)
Co-authored-by: Alexandre Ferris <[email protected]>
- Loading branch information
1 parent
a2e16ee
commit a0fdb2e
Showing
11 changed files
with
107 additions
and
61 deletions.
There are no files selected for viewing
48 changes: 48 additions & 0 deletions
48
app/src/main/kotlin/com/wire/android/di/GetE2EICertificateUseCaseProvider.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* | ||
* Wire | ||
* Copyright (C) 2024 Wire Swiss GmbH | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see http://www.gnu.org/licenses/. | ||
*/ | ||
package com.wire.android.di | ||
|
||
import android.content.Context | ||
import com.wire.android.feature.e2ei.GetE2EICertificateUseCase | ||
import com.wire.android.util.dispatchers.DispatcherProvider | ||
import com.wire.kalium.logic.CoreLogic | ||
import com.wire.kalium.logic.data.user.UserId | ||
import dagger.assisted.Assisted | ||
import dagger.assisted.AssistedFactory | ||
import dagger.assisted.AssistedInject | ||
import dagger.hilt.android.qualifiers.ApplicationContext | ||
|
||
class GetE2EICertificateUseCaseProvider @AssistedInject constructor( | ||
@KaliumCoreLogic private val coreLogic: CoreLogic, | ||
@ApplicationContext private val applicationContext: Context, | ||
@Assisted private val userId: UserId, | ||
@Assisted private val dispatcherProvider: DispatcherProvider | ||
) { | ||
|
||
val useCase: GetE2EICertificateUseCase | ||
get() = GetE2EICertificateUseCase( | ||
enrollE2EI = coreLogic.getSessionScope(userId).enrollE2EI, | ||
applicationContext = applicationContext, | ||
dispatcherProvider = dispatcherProvider | ||
) | ||
|
||
@AssistedFactory | ||
interface Factory { | ||
fun create(userId: UserId, dispatcherProvider: DispatcherProvider): GetE2EICertificateUseCaseProvider | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.