-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(auth): Fallback to in-memory key value storage if encryption fails (
- Loading branch information
1 parent
7d1603c
commit 97ddb8b
Showing
14 changed files
with
299 additions
and
56 deletions.
There are no files selected for viewing
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
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
46 changes: 46 additions & 0 deletions
46
core/src/main/java/com/amplifyframework/core/store/AmplifyKeyValueRepository.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,46 @@ | ||
/* | ||
* Copyright 2025 Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"). | ||
* You may not use this file except in compliance with the License. | ||
* A copy of the License is located at | ||
* | ||
* http://aws.amazon.com/apache2.0 | ||
* | ||
* or in the "license" file accompanying this file. This file 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.amplifyframework.core.store | ||
|
||
import android.content.Context | ||
import com.amplifyframework.annotations.InternalAmplifyApi | ||
|
||
@InternalAmplifyApi | ||
class AmplifyKeyValueRepository( | ||
private val context: Context, | ||
private val sharedPreferencesName: String | ||
) : KeyValueRepository { | ||
|
||
// We attempt to get an encrypted persistent repository, but if that fails, use an in memory one instead. | ||
private val repository: KeyValueRepository by lazy { | ||
try { | ||
EncryptedKeyValueRepository(context, sharedPreferencesName).also { | ||
// This attempts to open EncryptedSharedPrefs. If it opens, we are good to use. | ||
it.sharedPreferences | ||
} | ||
} catch (exception: Exception) { | ||
// We crashed attempting to open EncryptedKeyValueRepository, use In-Memory Instead. | ||
InMemoryKeyValueRepositoryProvider.getKeyValueRepository(sharedPreferencesName) | ||
} | ||
} | ||
|
||
override fun get(dataKey: String): String? = repository.get(dataKey) | ||
|
||
override fun put(dataKey: String, value: String?) = repository.put(dataKey, value) | ||
|
||
override fun remove(dataKey: String) = repository.remove(dataKey) | ||
|
||
override fun removeAll() = repository.removeAll() | ||
} |
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
26 changes: 26 additions & 0 deletions
26
core/src/main/java/com/amplifyframework/core/store/InMemoryKeyValueRepositoryProvider.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,26 @@ | ||
/* | ||
* Copyright 2025 Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"). | ||
* You may not use this file except in compliance with the License. | ||
* A copy of the License is located at | ||
* | ||
* http://aws.amazon.com/apache2.0 | ||
* | ||
* or in the "license" file accompanying this file. This file 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.amplifyframework.core.store | ||
|
||
import java.util.concurrent.ConcurrentHashMap | ||
|
||
internal object InMemoryKeyValueRepositoryProvider { | ||
private val inMemoryRepositories = ConcurrentHashMap<String, InMemoryKeyValueRepository>() | ||
|
||
@Synchronized | ||
fun getKeyValueRepository(name: String): InMemoryKeyValueRepository { | ||
return inMemoryRepositories.getOrPut(name) { InMemoryKeyValueRepository() } | ||
} | ||
} |
Oops, something went wrong.