Skip to content
This repository was archived by the owner on Nov 7, 2023. It is now read-only.

Add support for storage options #68

Open
wants to merge 5 commits into
base: master
Choose a base branch
from

Conversation

calintamas
Copy link

@calintamas calintamas commented Dec 20, 2021

Hi @emeraldsanto, thank you for this great library! This PR adds support for storage options, namely:

Both are optional and have sensible defaults (which we can change if you think it's required).

In terms of the API, I added an options object as the previous to last parameter to all methods (before the optional cb).

import EncryptedStorage, {
  KeychainAccessibility,
} from 'react-native-encrypted-storage'

await EncryptedStorage.setItem(key, value, {
    storageName: 'myStorage',
    keychainAccessibility: KeychainAccessibility.kSecAttrAccessibleWhenUnlockedThisDeviceOnly,
})

Following semver, this would be a breaking change in the function signature, so I suppose it requires a major version bump (if you agree with the API / approach).

Please let me know what you think.

@renchap
Copy link

renchap commented Nov 13, 2022

@emeraldsanto could you have a look at this?

We are storing JWT refresh tokens in react-native-encrypted-storage and are seeing quite a lot of error -25308 on iOS (and other people in #29 do as well).

It would make a lot of sense for us to set keychainAccessibility to kSecAttrAccessibleWhenUnlocked, which this PR allows.

#91 also points a potential issue with this.

@ryeker-herndon-lark
Copy link

This would be helpful to have for our business use case as well 👍

@@ -1 +1,3 @@
export { default } from './EncryptedStorage';
export { EncryptedStorageOptions } from './EncryptedStorage';
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should be export type, otherwise it will fail when using a bundle transformer stricter than the native Babel one (in my case, esbuild).


private String getStorageName(ReadableMap options) {
String bundleId = this.getReactApplicationContext().getPackageName();
String storageName = options.hasKey("storageName") ?
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You are not setting any default value for options, nor checking if is it defined.

This line throws if called without an options, for example:

EncryptedStorage.getItem("myValue")

@balsikandar
Copy link

@emeraldsanto any plans to merge this PR? This'll solve several issues all of us are facing.

@misha-pavlov
Copy link

Will this pull request be merged?

@chriswickham
Copy link

Also looking for this to be merged as it would resolve thousands of Sentry errors. Any update?

@varda-altusnova
Copy link

Any updates? @emeraldsanto

@qja0707
Copy link

qja0707 commented Jul 21, 2023

I have same problem. Should I wait for merge or make patch?

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

8 participants