forked from CredenceOrg/Credence-Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbondActionStorage.ts
More file actions
431 lines (380 loc) · 14.5 KB
/
Copy pathbondActionStorage.ts
File metadata and controls
431 lines (380 loc) · 14.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
/**
* @file bondActionStorage.ts
* @description Enhanced bond action storage with migration to unified mutation system.
*
* This module provides backward compatibility for existing bond operations while
* migrating to the new unified mutation storage system. It serves as a bridge
* between the legacy storage format and the new versioned mutation system.
*
* Migration Path:
* 1. Legacy v1 bond actions continue to work through compatibility layer
* 2. New operations automatically use the unified mutation system
* 3. Existing operations are migrated on first access
* 4. Legacy storage is preserved for rollback compatibility
*/
import { safeReadJson, safeWriteJson } from './storageJson'
import {
createMutationOperation,
updateMutationOperation,
getMutationOperations,
type MutationOperationId,
type MutationOperation,
} from './mutationStorage'
import { logInfo, logWarn } from './log'
// ═══════════════════════════════════════════════════════════════════════════
// Legacy Types (maintained for backward compatibility)
// ═══════════════════════════════════════════════════════════════════════════
export type BondActionStatus = 'idle' | 'pending' | 'success' | 'error'
export type BondActionKind = 'create' | 'withdraw'
export type BondActionError = {
type: 'network' | 'backend' | 'validation' | 'generic'
message: string
at: string
}
export type BondActionRecord = {
status: BondActionStatus
attempts: number
lastAttemptAt?: string
lastSuccessAt?: string
lastError?: BondActionError
// Minimal request metadata (no secrets); helps users reason about what they were doing.
lastRequest?: Record<string, unknown>
// Authoritative tx hash returned by the submit step (even if later unconfirmed).
lastTxHash?: string
// New fields for mutation system integration
operationId?: MutationOperationId
migratedToV2?: boolean
}
type BondActionsV1 = {
schemaVersion: 1
create: BondActionRecord
withdraw: BondActionRecord
// Migration metadata
migrationStatus?: {
migratedAt?: string
preservedLegacyData?: boolean
}
}
export const BOND_ACTIONS_V1_KEY = 'credence:bond-actions:v1'
const emptyRecord: BondActionRecord = { status: 'idle', attempts: 0 }
function defaultStore(): BondActionsV1 {
return { schemaVersion: 1, create: { ...emptyRecord }, withdraw: { ...emptyRecord } }
}
// ═══════════════════════════════════════════════════════════════════════════
// Enhanced Storage Operations with Migration Support
// ═══════════════════════════════════════════════════════════════════════════
/**
* Reads bond actions with automatic migration to unified mutation system.
*
* This function maintains backward compatibility while progressively migrating
* operations to the new system. Legacy operations are migrated on first access
* and linked to their corresponding mutation operations.
*/
export function readBondActions(autoMigrate: boolean = true): BondActionsV1 {
const res = safeReadJson<BondActionsV1>(BOND_ACTIONS_V1_KEY)
let bondActions: BondActionsV1
if (!res.ok || !res.value || res.value.schemaVersion !== 1) {
bondActions = defaultStore()
} else {
// Shallow coercion to keep compatibility with missing fields
bondActions = {
schemaVersion: 1,
create: { ...emptyRecord, ...(res.value.create ?? {}) },
withdraw: { ...emptyRecord, ...(res.value.withdraw ?? {}) },
migrationStatus: res.value.migrationStatus,
}
}
if (!autoMigrate) {
return bondActions
}
// Check if we need to perform migration for non-idle operations
let needsMigration = false
const updatedBondActions = { ...bondActions }
for (const kind of ['create', 'withdraw'] as const) {
const record = bondActions[kind]
if (record.status !== 'idle' && !record.migratedToV2 && !record.operationId) {
// Migrate this operation to the unified system
const migratedRecord = migrateRecordToMutationSystem(record, kind)
if (migratedRecord) {
updatedBondActions[kind] = migratedRecord
needsMigration = true
}
}
}
if (needsMigration) {
updatedBondActions.migrationStatus = {
migratedAt: new Date().toISOString(),
preservedLegacyData: true,
}
writeBondActions(updatedBondActions)
logInfo('bond_actions_partial_migration', {
createMigrated: updatedBondActions.create.migratedToV2,
withdrawMigrated: updatedBondActions.withdraw.migratedToV2,
})
}
return updatedBondActions
}
/**
* Migrates a legacy bond action record to the unified mutation system.
*/
function migrateRecordToMutationSystem(
record: BondActionRecord,
kind: BondActionKind
): BondActionRecord | null {
try {
const mutationType = kind === 'create' ? 'bond_create' : 'bond_withdraw'
const params = record.lastRequest || {}
// Create operation in the unified system
const { operationId } = createMutationOperation(mutationType, params, 3)
// Update the operation to match the legacy state
const operation = updateMutationOperation(operationId, (op) => ({
status: mapLegacyStatusToMutation(record.status),
attempts: [
{
attemptId: `legacy:${kind}:${Date.now()}`,
timestamp: record.lastAttemptAt || new Date().toISOString(),
requestHash: op.requestHash,
status: mapLegacyStatusToMutation(record.status),
error: record.lastError
? {
type: record.lastError.type as
| 'network'
| 'backend'
| 'validation'
| 'wallet_rejected'
| 'timeout'
| 'generic'
| 'rate_limit',
message: record.lastError.message,
timestamp: record.lastError.at,
retryable:
record.lastError.type === 'network' || record.lastError.type === 'generic',
}
: undefined,
txHash: record.lastTxHash,
},
],
completedAt: record.lastSuccessAt,
finalTxHash: record.lastTxHash,
isRecovered: true,
recoveredAt: new Date().toISOString(),
recoverySource: 'storage' as const,
}))
if (operation) {
return {
...record,
operationId,
migratedToV2: true,
}
}
return null
} catch (error) {
logWarn('bond_action_migration_failed', {
kind,
error: error instanceof Error ? error.message : String(error),
})
return null
}
}
function mapLegacyStatusToMutation(status: BondActionStatus): MutationOperation['status'] {
switch (status) {
case 'idle':
return 'idle'
case 'pending':
return 'pending'
case 'success':
return 'success'
case 'error':
return 'error'
default:
return 'error'
}
}
/**
* Writes bond actions with preservation of migration state.
*/
export function writeBondActions(next: BondActionsV1): void {
safeWriteJson(BOND_ACTIONS_V1_KEY, next)
}
/**
* Updates a bond action with automatic integration to mutation system.
*
* For new operations, this creates entries in both the legacy and unified systems.
* For existing migrated operations, this updates both systems consistently.
*/
export function updateBondAction(
kind: BondActionKind,
updater: (current: BondActionRecord) => BondActionRecord
): BondActionsV1 {
const current = readBondActions(false)
const record = kind === 'create' ? current.create : current.withdraw
const updated = updater(record)
// If this operation is linked to the mutation system, update both
if (updated.operationId) {
updateMutationOperation(updated.operationId, (op) => ({
status: mapLegacyStatusToMutation(updated.status),
updatedAt: new Date().toISOString(),
completedAt: updated.lastSuccessAt,
finalTxHash: updated.lastTxHash,
// Add new attempt if status changed to error or success
attempts:
updated.lastAttemptAt !== record.lastAttemptAt
? [
...op.attempts,
{
attemptId: `legacy-update:${Date.now()}`,
timestamp: updated.lastAttemptAt || new Date().toISOString(),
requestHash: op.requestHash,
status: mapLegacyStatusToMutation(updated.status),
error: updated.lastError
? {
type: updated.lastError.type as
| 'network'
| 'backend'
| 'validation'
| 'wallet_rejected'
| 'timeout'
| 'generic'
| 'rate_limit',
message: updated.lastError.message,
timestamp: updated.lastError.at,
retryable:
updated.lastError.type === 'network' ||
updated.lastError.type === 'generic',
}
: undefined,
txHash: updated.lastTxHash,
},
]
: op.attempts,
}))
}
const next: BondActionsV1 =
kind === 'create' ? { ...current, create: updated } : { ...current, withdraw: updated }
writeBondActions(next)
return next
}
// ═══════════════════════════════════════════════════════════════════════════
// Enhanced Bond Operations Integration
// ═══════════════════════════════════════════════════════════════════════════
/**
* Enhanced bond action creation that integrates with the unified mutation system.
*
* This function creates operations in both the legacy format (for backward compatibility)
* and the new unified mutation system (for enhanced features).
*/
export function createEnhancedBondAction(
kind: BondActionKind,
params: Record<string, unknown>
): { legacyUpdated: BondActionsV1; operationId: MutationOperationId; isNewOperation: boolean } {
const mutationType = kind === 'create' ? 'bond_create' : 'bond_withdraw'
// Create operation in unified system
const { operationId, isNewOperation } = createMutationOperation(mutationType, params, 3)
// Update legacy system to link to the new operation
const legacyUpdated = updateBondAction(kind, (current) => ({
...current,
status: 'pending',
attempts: current.attempts + (isNewOperation ? 1 : 0),
lastAttemptAt: new Date().toISOString(),
lastRequest: params,
operationId,
migratedToV2: true,
}))
logInfo('enhanced_bond_action_created', {
kind,
operationId,
isNewOperation,
})
return { legacyUpdated, operationId, isNewOperation }
}
/**
* Gets the unified mutation operation for a bond action.
*/
export function getBondActionMutationOperation(kind: BondActionKind): MutationOperation | null {
const bondActions = readBondActions(false)
const record = kind === 'create' ? bondActions.create : bondActions.withdraw
if (!record.operationId) {
return null
}
// Find the corresponding mutation operation
const operations = getMutationOperations(kind === 'create' ? 'bond_create' : 'bond_withdraw')
return operations.find((op) => op.operationId === record.operationId) || null
}
/**
* Checks if bond actions have been migrated to the unified system.
*/
export function getBondActionMigrationStatus(): {
createMigrated: boolean
withdrawMigrated: boolean
migrationTimestamp?: string
} {
const bondActions = readBondActions(false)
return {
createMigrated: !!bondActions.create.migratedToV2,
withdrawMigrated: !!bondActions.withdraw.migratedToV2,
migrationTimestamp: bondActions.migrationStatus?.migratedAt,
}
}
/**
* Forces migration of all bond actions to the unified system.
* This is useful for testing and ensuring complete migration.
*/
export function forceBondActionsMigration(): {
migrated: number
failed: number
operations: MutationOperationId[]
} {
const bondActions = readBondActions(false)
const results = { migrated: 0, failed: 0, operations: [] as MutationOperationId[] }
for (const kind of ['create', 'withdraw'] as const) {
const record = bondActions[kind]
if (record.status !== 'idle' && !record.migratedToV2) {
const migrated = migrateRecordToMutationSystem(record, kind)
if (migrated) {
// Update the record in storage
updateBondAction(kind, () => migrated)
results.migrated++
if (migrated.operationId) {
results.operations.push(migrated.operationId)
}
} else {
results.failed++
}
}
}
if (results.migrated > 0 || results.failed > 0) {
logInfo('bond_actions_force_migration', {
migratedCount: results.migrated,
failedCount: results.failed,
operationsCount: results.operations.length,
})
}
return results
}
// ═══════════════════════════════════════════════════════════════════════════
// Backward Compatibility Helpers
// ═══════════════════════════════════════════════════════════════════════════
/**
* Legacy function wrapper that maintains existing API while adding migration support.
* This ensures existing code continues to work without modification.
*/
export function readBondActionsLegacy(): BondActionsV1 {
return readBondActions()
}
/**
* Legacy function wrapper for updating bond actions.
*/
export function updateBondActionLegacy(
kind: BondActionKind,
updater: (current: BondActionRecord) => BondActionRecord
): BondActionsV1 {
return updateBondAction(kind, updater)
}
/**
* Export for testing and diagnostics.
*/
export const __testing__ = {
migrateRecordToMutationSystem,
mapLegacyStatusToMutation,
defaultStore,
}