mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-04-09 16:43:19 +08:00
174 lines
4.6 KiB
TypeScript
174 lines
4.6 KiB
TypeScript
import { Injectable } from '@angular/core';
|
|
import { CordovaCheck, CordovaInstance, getPromise, IonicNativePlugin, Plugin } from '@ionic-native/core';
|
|
|
|
export interface SecureStorageEchoOptions {
|
|
android: {
|
|
/**
|
|
* See https://github.com/mibrito707/cordova-plugin-secure-storage-echo#sharing-data-android
|
|
*/
|
|
packageName?: string;
|
|
/**
|
|
* Sets the duration of time (seconds) for which the Private Encryption Key is authorized to be used after the user is successfully authenticated.
|
|
* See https://developer.android.com/reference/android/security/keystore/KeyGenParameterSpec.Builder.html#setUserAuthenticationValidityDurationSeconds(int)
|
|
*/
|
|
userAuthenticationValidityDuration?: number;
|
|
/**
|
|
* Custom title for Confirm Credentials screen.
|
|
* See https://developer.android.com/reference/android/app/KeyguardManager.html#createConfirmDeviceCredentialIntent(java.lang.CharSequence,%20java.lang.CharSequence)
|
|
*/
|
|
unlockCredentialsTitle?: string;
|
|
/**
|
|
* Custom description for Confirm Credentials screen.
|
|
*/
|
|
unlockCredentialsDescription?: string;
|
|
};
|
|
}
|
|
|
|
/**
|
|
* @hidden
|
|
*/
|
|
export class SecureStorageEchoObject {
|
|
constructor(private _objectInstance: any) {}
|
|
|
|
/**
|
|
* Gets a stored item
|
|
* @param key {string}
|
|
* @returns {Promise<string>}
|
|
*/
|
|
@CordovaInstance({
|
|
callbackOrder: 'reverse',
|
|
})
|
|
get(key: string): Promise<string> {
|
|
return;
|
|
}
|
|
|
|
/**
|
|
* Stores a value
|
|
* @param key {string}
|
|
* @param value {string}
|
|
* @returns {Promise<any>}
|
|
*/
|
|
@CordovaInstance({
|
|
callbackOrder: 'reverse',
|
|
})
|
|
set(key: string, value: string): Promise<any> {
|
|
return;
|
|
}
|
|
|
|
/**
|
|
* Removes a single stored item
|
|
* @param key {string}
|
|
* @returns {Promise<string>} returns a promise that resolves with the key that was removed
|
|
*/
|
|
@CordovaInstance({
|
|
callbackOrder: 'reverse',
|
|
})
|
|
remove(key: string): Promise<string> {
|
|
return;
|
|
}
|
|
|
|
/**
|
|
* Get all references from the storage.
|
|
* @returns {Promise<string[]>} returns a promise that resolves with array of keys storage
|
|
*/
|
|
@CordovaInstance({
|
|
callbackOrder: 'reverse',
|
|
})
|
|
keys(): Promise<string[]> {
|
|
return;
|
|
}
|
|
|
|
/**
|
|
* Clear all references from the storage.
|
|
* @returns {Promise<any>}
|
|
*/
|
|
@CordovaInstance({
|
|
callbackOrder: 'reverse',
|
|
})
|
|
clear(): Promise<any> {
|
|
return;
|
|
}
|
|
|
|
/**
|
|
* Brings up the screen-lock settings
|
|
* @returns {Promise<any>}
|
|
*/
|
|
@CordovaInstance()
|
|
secureDevice(): Promise<any> {
|
|
return;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @name Secure Storage Echo
|
|
* @description
|
|
* This plugin gets, sets and removes key,value pairs from a device's secure storage.
|
|
*
|
|
* Requires Cordova plugin: `cordova-plugin-secure-storage-echo`. For more info, please see the [Cordova Secure Storage docs](https://github.com/mibrito707/cordova-plugin-secure-storage-echo).
|
|
*
|
|
* The browser platform is supported as a mock only. Key/values are stored unencrypted in localStorage.
|
|
*
|
|
* @usage
|
|
*
|
|
* ```typescript
|
|
* import { SecureStorageEcho, SecureStorageEchoObject } from '@ionic-native/secure-storage-echo/ngx';
|
|
*
|
|
* constructor(private secureStorageEcho: SecureStorageEcho) { }
|
|
*
|
|
* ...
|
|
*
|
|
* this.secureStorageEcho.create('my_store_name')
|
|
* .then((storage: SecureStorageEchoObject) => {
|
|
*
|
|
* storage.get('key')
|
|
* .then(
|
|
* data => console.log(data),
|
|
* error => console.log(error)
|
|
* );
|
|
*
|
|
* storage.set('key', 'value')
|
|
* .then(
|
|
* data => console.log(data),
|
|
* error => console.log(error)
|
|
* );
|
|
*
|
|
* storage.remove('key')
|
|
* .then(
|
|
* data => console.log(data),
|
|
* error => console.log(error)
|
|
* );
|
|
*
|
|
* });
|
|
*
|
|
*
|
|
* ```
|
|
* @classes
|
|
* SecureStorageEchoObject
|
|
*/
|
|
@Plugin({
|
|
pluginName: 'SecureStorageEcho',
|
|
plugin: 'cordova-plugin-secure-storage-echo',
|
|
pluginRef: 'cordova.plugins.SecureStorage',
|
|
repo: 'https://github.com/mibrito707/cordova-plugin-secure-storage-echo',
|
|
platforms: ['Android', 'Browser', 'iOS', 'Windows'],
|
|
})
|
|
@Injectable()
|
|
export class SecureStorageEcho extends IonicNativePlugin {
|
|
/**
|
|
* Creates a namespaced storage.
|
|
* @param store {string}
|
|
* @returns {Promise<SecureStorageEchoObject>}
|
|
*/
|
|
@CordovaCheck()
|
|
create(store: string, options?: SecureStorageEchoOptions): Promise<SecureStorageEchoObject> {
|
|
return getPromise<SecureStorageEchoObject>((res: Function, rej: Function) => {
|
|
const instance = new (SecureStorageEcho.getPlugin())(
|
|
() => res(new SecureStorageEchoObject(instance)),
|
|
() => rej(new SecureStorageEchoObject(instance)),
|
|
store,
|
|
options
|
|
);
|
|
});
|
|
}
|
|
}
|