1
1
import * as fs from "fs" ;
2
2
import { createClient , type RedisClientType } from "redis" ;
3
3
4
- // Storage constants
4
+ // Storage constantsf
5
5
export const WALLET_KEY_PREFIX = "wallet_data:" ;
6
- export const LOCAL_STORAGE_DIR = ".data/wallet_data" ;
6
+ export const WALLET_STORAGE_DIR = ".data/wallet_data" ;
7
+ export const XMTP_STORAGE_DIR = ".data/xmtp" ;
7
8
export let redisClient : RedisClientType | null = null ;
8
9
9
- if ( ! process . env . REDIS_URL ) {
10
- console . warn (
11
- "Warning: REDIS_URL not set, using local file storage for wallet data" ,
12
- ) ;
13
- }
14
10
/**
15
11
* Initialize Redis client and handle fallback to local storage
16
12
*/
17
13
export async function initializeStorage ( ) {
18
14
if ( process . env . REDIS_URL ) {
19
- try {
20
- redisClient = createClient ( {
21
- url : process . env . REDIS_URL ,
22
- } ) ;
15
+ redisClient = createClient ( {
16
+ url : process . env . REDIS_URL ,
17
+ } ) ;
23
18
24
- await redisClient . connect ( ) ;
25
- console . log ( "Connected to Redis" ) ;
26
- } catch ( error : unknown ) {
27
- console . error ( "Failed to connect to Redis:" , error ) ;
28
- console . log ( "Falling back to local file storage" ) ;
29
- redisClient = null ;
30
- ensureLocalStorage ( ) ;
31
- }
19
+ await redisClient . connect ( ) ;
20
+ console . log ( "Connected to Redis" ) ;
32
21
} else {
33
22
console . log ( "Using local file storage for wallet data" ) ;
34
23
ensureLocalStorage ( ) ;
@@ -39,8 +28,8 @@ export async function initializeStorage() {
39
28
* Ensure local storage directory exists
40
29
*/
41
30
export function ensureLocalStorage ( ) {
42
- if ( ! fs . existsSync ( LOCAL_STORAGE_DIR ) ) {
43
- fs . mkdirSync ( LOCAL_STORAGE_DIR , { recursive : true } ) ;
31
+ if ( ! fs . existsSync ( WALLET_STORAGE_DIR ) ) {
32
+ fs . mkdirSync ( WALLET_STORAGE_DIR , { recursive : true } ) ;
44
33
}
45
34
}
46
35
@@ -59,7 +48,7 @@ export async function saveWalletData(
59
48
} else {
60
49
// Save to local file
61
50
try {
62
- fs . writeFileSync ( LOCAL_STORAGE_DIR + "/" + key + ".json" , walletData ) ;
51
+ fs . writeFileSync ( WALLET_STORAGE_DIR + "/" + key + ".json" , walletData ) ;
63
52
} catch ( error : unknown ) {
64
53
const errorMessage =
65
54
error instanceof Error ? error . message : String ( error ) ;
@@ -81,11 +70,8 @@ export async function getWalletData(
81
70
return await redisClient . get ( userKey ) ;
82
71
} else {
83
72
try {
84
- if ( fs . existsSync ( LOCAL_STORAGE_DIR + "/" + userKey + ".json" ) ) {
85
- return fs . readFileSync (
86
- LOCAL_STORAGE_DIR + "/" + userKey + ".json" ,
87
- "utf8" ,
88
- ) ;
73
+ if ( fs . existsSync ( WALLET_STORAGE_DIR + "/" + userKey ) ) {
74
+ return fs . readFileSync ( WALLET_STORAGE_DIR + "/" + userKey , "utf8" ) ;
89
75
}
90
76
} catch ( error : unknown ) {
91
77
const errorMessage =
0 commit comments