fix: remove item before adding it to secure storage

This commit is contained in:
Jovan Krunić
2022-10-08 09:18:44 +00:00
committed by Rainer Killinger
parent fed4f20c3c
commit ec511fb8f4
2 changed files with 32 additions and 2 deletions

View File

@@ -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();
};

View 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);
}
}