Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SpeziStorage #108

Merged
merged 24 commits into from
Oct 27, 2024
Merged

SpeziStorage #108

merged 24 commits into from
Oct 27, 2024

Commits on Sep 21, 2024

  1. Add SpeziStorage

    pauljohanneskraft committed Sep 21, 2024
    Configuration menu
    Copy the full SHA
    0fb7343 View commit details
    Browse the repository at this point in the history

Commits on Sep 24, 2024

  1. Configuration menu
    Copy the full SHA
    f1a6105 View commit details
    Browse the repository at this point in the history

Commits on Oct 2, 2024

  1. detekt

    pauljohanneskraft committed Oct 2, 2024
    Configuration menu
    Copy the full SHA
    0ed5bea View commit details
    Browse the repository at this point in the history

Commits on Oct 3, 2024

  1. Configuration menu
    Copy the full SHA
    a7dc44d View commit details
    Browse the repository at this point in the history
  2. detekt

    pauljohanneskraft committed Oct 3, 2024
    Configuration menu
    Copy the full SHA
    86da8af View commit details
    Browse the repository at this point in the history
  3. Remove unused code

    pauljohanneskraft committed Oct 3, 2024
    Configuration menu
    Copy the full SHA
    953073c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    dbfe0a8 View commit details
    Browse the repository at this point in the history
  5. detekt

    pauljohanneskraft committed Oct 3, 2024
    Configuration menu
    Copy the full SHA
    01125f7 View commit details
    Browse the repository at this point in the history
  6. Use OAEPPadding

    pauljohanneskraft committed Oct 3, 2024
    Configuration menu
    Copy the full SHA
    3e35f37 View commit details
    Browse the repository at this point in the history
  7. Use other padding

    pauljohanneskraft committed Oct 3, 2024
    Configuration menu
    Copy the full SHA
    072b5d2 View commit details
    Browse the repository at this point in the history
  8. Update

    pauljohanneskraft committed Oct 3, 2024
    Configuration menu
    Copy the full SHA
    cc1ee5e View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    86e4129 View commit details
    Browse the repository at this point in the history
  10. Review adaptions

    pauljohanneskraft committed Oct 3, 2024
    Configuration menu
    Copy the full SHA
    0d0ff55 View commit details
    Browse the repository at this point in the history

Commits on Oct 6, 2024

  1. Configuration menu
    Copy the full SHA
    acdd6d6 View commit details
    Browse the repository at this point in the history
  2. merge main

    eldcn committed Oct 6, 2024
    Configuration menu
    Copy the full SHA
    f5bcd32 View commit details
    Browse the repository at this point in the history

Commits on Oct 14, 2024

  1. Apply suggestion

    pauljohanneskraft committed Oct 14, 2024
    Configuration menu
    Copy the full SHA
    89000f8 View commit details
    Browse the repository at this point in the history

Commits on Oct 21, 2024

  1. Configuration menu
    Copy the full SHA
    6bd38de View commit details
    Browse the repository at this point in the history
  2. SpeziStorage - Review and API proposals (#123)

    # SpeziStorage - Review and API proposals
    
    ## What was done
    
    We have aligned with @pauljohanneskraft that I will bring my proposals
    in the former PR #108 in a new PR.
    
    - In previous PRs we already implemented `KeyValueStorage` which
    provides an API to write encrypted data for primitive types in
    [SharedPreferences](https://developer.android.com/reference/android/content/SharedPreferences).
    This component now got customized to write in shared preferences in
    encrypted and unencrypted way via
    `KeyValueStorageFactory#create(fileName, KeyValueStorageType)`. Consumer
    of the API have the opportunity to either use the default storages, or
    create a custom one via the factory. Furthermore, since we were using
    data store in the previous version of LocalKeyValueStorage, it got
    removed now and all the functions of the key value storage are not
    suspending anymore - This is safe as shared preferences caches all the
    changes in memory first, and writes in the disc asynchronously.
    - `SecureStorage` - 
    <img width="738" alt="image"
    src="https://github.com/user-attachments/assets/dfbb4573-16d1-40fa-ae69-1e1f012a7b4e">
    
    - This component was breaking single responsibility principle in my
    opinion. On one hand, it was providing methods to store, read, delete
    and update `Credentials`, on the other hand was providing some methods
    to create public and private keys from key store (key chain in iOS). Key
    related methods however, were solely used in the context of
    `LocalStorage` when using `LocalStorageSetting.EncryptedUsingKeyStore`
    setting to store a data in a file.
    - Removes key related from `SecureStorage` and solely provides CRUD
    methods to it to handle Credentials. Furthermore, the api got extended
    to retrieve all credentials of a user, and delete credentials per user
    and per server separately. Under the hood, the `SecureStorage` uses an
    encrypted `KeyValueStorage` that persists the encrypted json of
    `Credentials` object.
    - I would propose to rename this component to `CredentialsSecureStorage`
    or `CredentialsStorage`, but it requires alignment with iOS
    -
    ![image](https://github.com/user-attachments/assets/f517d380-2736-49b8-9a9d-e3b1973279fa)
    - Introduces public component `AndroidKeyStore` which can be used to
    create public/private key pairs which then can later on be used in the
    context of `LocalStorageSetting.Encrypted(KeyPair)`
    -
    ![image](https://github.com/user-attachments/assets/fe021ed8-af45-4e3b-a245-b69ff20f3aad)
    - Each method of `SecureStorage` was requesting `server` as a separate
    parameter, while it in my opinion belongs to the `Credentials` type - A
    hint comes also from this [swiftlin
    disable](https://github.com/StanfordSpezi/SpeziStorage/blob/main/Sources/SpeziSecureStorage/SecureStorage.swift#L310).
    Hence, `Credentials` now receives a nullable server property as well.
    - `SecureStorageItemType` was indicating three cases `KEY;
    SERVER_CREDENTIALS; NON_SERVER_CREDENTIALS;`, however `KEY` was never
    used in the context of `SecureStorage`. Furthermore, the storage is
    offering a method to `deleteAllCredentials(SecureStorageItemType)`, if
    `KEY` would be part of the types, we would be all the `PrivateKey` and
    `PublicKey`s of the keystore, which is a side effect and a buggy
    behaviour. I removed `KEY` from `SecureStorageItemType` which complies
    semantically with `Credentials` type, which can either have a `server`
    property or not (`null`).
    - `LocalStorage` - Keeps similar API as iOS by using kotlin
    serialization
    -
    ![image](https://github.com/user-attachments/assets/df0cdbde-1ffa-413c-bdae-45cb8b559334)
    - Every public component of the library is provides as an interface, and
    the corresponding implementation as an internal component which is bound
    by default in hilt graph in `StorageModule.kt`. `StorageModule` (hilt
    module) serves at the same time also as the public api of the module
    itself.
    - All components have been tested
    - A recording of the public API and generated files and their content:
    
    
    https://github.com/user-attachments/assets/45bfad64-22b4-436f-976c-b136642b5395
    
    
    ## ⚙️ Release Notes 
    *Add a bullet point list summary of the feature and possible migration
    guides if this is a breaking change so this section can be added to the
    release notes.*
    *Include code snippets that provide examples of the feature implemented
    or links to the documentation if it appends or changes the public
    interface.*
    
    
    ## 📚 Documentation
    *Please ensure that you properly document any additions in conformance
    to [Spezi Documentation
    Guide](https://github.com/StanfordSpezi/.github/blob/main/DOCUMENTATIONGUIDE.md).*
    *You can use this section to describe your solution, but we encourage
    contributors to document your reasoning and changes using in-line
    documentation.*
    
    
    ## ✅ Testing
    *Please ensure that the PR meets the testing requirements set by CodeCov
    and that new functionality is appropriately tested.*
    *This section describes important information about the tests and why
    some elements might not be testable.*
    
    
    ## 📝 Code of Conduct & Contributing Guidelines 
    
    By submitting creating this pull request, you agree to follow our [Code
    of
    Conduct](https://github.com/StanfordSpezi/.github/blob/main/CODE_OF_CONDUCT.md)
    and [Contributing
    Guidelines](https://github.com/StanfordSpezi/.github/blob/main/CONTRIBUTING.md):
    - [ ] I agree to follow the [Code of
    Conduct](https://github.com/StanfordSpezi/.github/blob/main/CODE_OF_CONDUCT.md)
    and [Contributing
    Guidelines](https://github.com/StanfordSpezi/.github/blob/main/CONTRIBUTING.md).
    
    ---------
    
    Co-authored-by: Kilian Schneider <[email protected]>
    Co-authored-by: Paul Kraft <[email protected]>
    3 people authored Oct 21, 2024
    Configuration menu
    Copy the full SHA
    49d7f04 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d56ffed View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d57fdd6 View commit details
    Browse the repository at this point in the history
  5. Update

    pauljohanneskraft committed Oct 21, 2024
    Configuration menu
    Copy the full SHA
    930f640 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    9919af8 View commit details
    Browse the repository at this point in the history
  7. fix tests

    pauljohanneskraft committed Oct 21, 2024
    Configuration menu
    Copy the full SHA
    cafe5d4 View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2024

  1. minor adjustments

    eldcn committed Oct 27, 2024
    Configuration menu
    Copy the full SHA
    9da53d7 View commit details
    Browse the repository at this point in the history