storageCache.ts 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. import { cacheCipher } from '/@/settings/encryptionSetting';
  2. import type { EncryptionParams } from '/@/utils/cipher';
  3. import { AesEncryption } from '/@/utils/cipher';
  4. import { isNullOrUnDef } from '/@/utils/is';
  5. export interface CreateStorageParams extends EncryptionParams {
  6. prefixKey: string;
  7. storage: Storage;
  8. hasEncrypt: boolean;
  9. timeout?: Nullable<number>;
  10. }
  11. export const createStorage = ({
  12. prefixKey = '',
  13. storage = sessionStorage,
  14. key = cacheCipher.key,
  15. iv = cacheCipher.iv,
  16. timeout = null,
  17. hasEncrypt = true,
  18. }: Partial<CreateStorageParams> = {}) => {
  19. if (hasEncrypt && [key.length, iv.length].some((item) => item !== 16)) {
  20. throw new Error('When hasEncrypt is true, the key or iv must be 16 bits!');
  21. }
  22. const encryption = new AesEncryption({ key, iv });
  23. /**
  24. *Cache class
  25. *Construction parameters can be passed into sessionStorage, localStorage,
  26. * @class Cache
  27. * @example
  28. */
  29. const WebStorage = class WebStorage {
  30. private storage: Storage;
  31. private prefixKey?: string;
  32. private encryption: AesEncryption;
  33. private hasEncrypt: boolean;
  34. /**
  35. *
  36. * @param {*} storage
  37. */
  38. constructor() {
  39. this.storage = storage;
  40. this.prefixKey = prefixKey;
  41. this.encryption = encryption;
  42. this.hasEncrypt = hasEncrypt;
  43. }
  44. private getKey(key: string) {
  45. return `${this.prefixKey}${key}`.toUpperCase();
  46. }
  47. /**
  48. *
  49. * Set cache
  50. * @param {string} key
  51. * @param {*} value
  52. * @expire Expiration time in seconds
  53. * @memberof Cache
  54. */
  55. set(key: string, value: any, expire: number | null = timeout) {
  56. const stringData = JSON.stringify({
  57. value,
  58. time: Date.now(),
  59. expire: !isNullOrUnDef(expire) ? new Date().getTime() + expire * 1000 : null,
  60. });
  61. const stringifyValue = this.hasEncrypt ? this.encryption.encryptByAES(stringData) : stringData;
  62. this.storage.setItem(this.getKey(key), stringifyValue);
  63. }
  64. /**
  65. *Read cache
  66. * @param {string} key
  67. * @memberof Cache
  68. */
  69. get(key: string, def: any = null): any {
  70. const val = this.storage.getItem(this.getKey(key));
  71. if (!val) return def;
  72. try {
  73. const decVal = this.hasEncrypt ? this.encryption.decryptByAES(val) : val;
  74. const data = JSON.parse(decVal);
  75. const { value, expire } = data;
  76. if (isNullOrUnDef(expire) || expire >= new Date().getTime()) {
  77. return value;
  78. }
  79. this.remove(key);
  80. } catch (e) {
  81. return def;
  82. }
  83. }
  84. /**
  85. * Delete cache based on key
  86. * @param {string} key
  87. * @memberof Cache
  88. */
  89. remove(key: string) {
  90. this.storage.removeItem(this.getKey(key));
  91. }
  92. /**
  93. * Delete all caches of this instance
  94. */
  95. clear(): void {
  96. this.storage.clear();
  97. }
  98. };
  99. return new WebStorage();
  100. };