mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-19 16:13:06 +00:00
fix: remove item before adding it to secure storage
This commit is contained in:
committed by
Rainer Killinger
parent
fed4f20c3c
commit
ec511fb8f4
@@ -1,9 +1,9 @@
|
||||
import {Platform} from '@ionic/angular';
|
||||
import {CapacitorSecureStorage} from 'ionic-appauth/lib/capacitor';
|
||||
import {IonicStorage} from 'ionic-appauth/lib';
|
||||
import {SafeCapacitorSecureStorage} from '../../storage/capacitor-secure-storage';
|
||||
|
||||
export const storageFactory = (platform: Platform) => {
|
||||
return platform.is('capacitor')
|
||||
? new CapacitorSecureStorage()
|
||||
? new SafeCapacitorSecureStorage()
|
||||
: new IonicStorage();
|
||||
};
|
||||
|
||||
30
src/app/modules/storage/capacitor-secure-storage.ts
Normal file
30
src/app/modules/storage/capacitor-secure-storage.ts
Normal file
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
* Copyright (C) 2022 StApps
|
||||
* 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, version 3.
|
||||
*
|
||||
* 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 <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
import {CapacitorSecureStorage} from 'ionic-appauth/lib/capacitor';
|
||||
|
||||
/*
|
||||
* Removes an item from storage before entering the new one to avoid issues
|
||||
* after iOS upgrade (iOS 16)
|
||||
*/
|
||||
export class SafeCapacitorSecureStorage extends CapacitorSecureStorage {
|
||||
async setItem(name: string, value: string): Promise<void> {
|
||||
if (!Storage) throw new Error('Capacitor Storage Is Undefined!');
|
||||
|
||||
try {
|
||||
await super.removeItem(name);
|
||||
} catch {}
|
||||
return super.setItem(name, value);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user