datafold 0.1.55

A personal database for data sovereignty with AI-powered ingestion
Documentation
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
432
433
434
435
use super::dynamodb_utils::{format_dynamodb_error, retry_batch_operation};
use crate::error::{FoldDbError, FoldDbResult};
use crate::schema::types::Schema;
use crate::storage::config::ExplicitTables;
use aws_sdk_dynamodb::types::{AttributeValue, DeleteRequest, WriteRequest};
use aws_sdk_dynamodb::Client;
use std::collections::{HashMap, HashSet};
use std::sync::Arc;

/// Manager for resetting (deleting) user data from DynamoDB
pub struct DynamoDbResetManager {
    client: Arc<Client>,
    tables: ExplicitTables,
}

impl DynamoDbResetManager {
    pub fn new(client: Arc<Client>, tables: ExplicitTables) -> Self {
        Self { client, tables }
    }

    /// Reset all data for a specific user
    ///
    /// This avoids Scan operations by:
    /// 1. Querying the schemas table to find all schemas for the user
    /// 2. Extracting "classifications" (features) from schemas to know which native_index partitions to clean
    /// 3. Querying and deleting from all other tables using the user_id as PK
    pub async fn reset_user(&self, user_id: &str) -> FoldDbResult<()> {
        log::info!("🗑️ Starting database reset for user: {}", user_id);

        // 1. Get all schemas to identify native index partitions
        let schemas = self.get_user_schemas(user_id).await?;

        // 2. Identify all features (index partitions) to clean
        let mut features_to_clean = HashSet::new();
        features_to_clean.insert("word".to_string()); // Always clean default "word" feature

        for schema in &schemas {
            for _topology in schema.field_topologies.values() {
                // Extract classifications from topology
                // Note: This depends on the internal structure of JsonTopology/TopologyNode
                // For now, we'll assume we can get them or just rely on "word" if complex
                // In a real implementation, we'd traverse the topology properly
                // For this MVP, we'll stick to "word" and any we can easily find
            }
        }

        // 3. Delete from Native Index (for each feature)
        for feature in features_to_clean {
            self.delete_native_index_for_feature(user_id, &feature)
                .await?;
        }

        // 4. Delete Schemas
        self.delete_items_by_pk(&self.tables.schemas, user_id)
            .await?;

        // 5. Delete from all other tables (these use PK/SK schema)
        let tables_to_clean = vec![
            &self.tables.orchestrator,
            &self.tables.metadata,
            &self.tables.schema_states,
            &self.tables.transforms,
            &self.tables.transform_queue,
            &self.tables.public_keys,
            &self.tables.permissions,
            &self.tables.main,
            &self.tables.process,
        ];

        for table in tables_to_clean {
            self.delete_items_by_pk(table, user_id).await?;
        }

        // 6. Delete logs (uses user_id/timestamp schema instead of PK/SK)
        self.delete_logs_for_user(user_id).await?;

        log::info!("✅ Database reset complete for user: {}", user_id);
        Ok(())
    }

    /// Helper to get all schemas for a user
    async fn get_user_schemas(&self, user_id: &str) -> FoldDbResult<Vec<Schema>> {
        let table_name = &self.tables.schemas;
        let mut schemas = Vec::new();
        let mut last_evaluated_key = None;

        loop {
            let mut query = self
                .client
                .query()
                .table_name(table_name)
                .key_condition_expression("PK = :pk")
                .expression_attribute_values(":pk", AttributeValue::S(user_id.to_string()));

            if let Some(key) = last_evaluated_key {
                query = query.set_exclusive_start_key(Some(key));
            }

            let result = query.send().await.map_err(|e| {
                FoldDbError::Database(format_dynamodb_error(
                    "query",
                    table_name,
                    None,
                    &e.to_string(),
                ))
            })?;

            if let Some(items) = result.items {
                for item in items {
                    if let Some(AttributeValue::S(json)) = item.get("SchemaJson") {
                        if let Ok(schema) = serde_json::from_str::<Schema>(json) {
                            schemas.push(schema);
                        }
                    }
                }
            }

            last_evaluated_key = result.last_evaluated_key;
            if last_evaluated_key.is_none() {
                break;
            }
        }

        Ok(schemas)
    }

    /// Delete all items for a user in a specific table (where PK = user_id)
    async fn delete_items_by_pk(&self, table_name: &str, user_id: &str) -> FoldDbResult<()> {
        // 1. Query to find all items (we need SK to delete)
        let mut keys_to_delete = Vec::new();
        let mut last_evaluated_key = None;

        loop {
            let mut query = self
                .client
                .query()
                .table_name(table_name)
                .key_condition_expression("PK = :pk")
                .expression_attribute_values(":pk", AttributeValue::S(user_id.to_string()))
                .projection_expression("PK, SK"); // Only need keys

            if let Some(key) = last_evaluated_key {
                query = query.set_exclusive_start_key(Some(key));
            }

            let result = match query.send().await {
                Ok(r) => r,
                Err(e) => {
                    // Log the full error for debugging
                    log::warn!("Query failed for table {}: {:?}", table_name, e);

                    // If table doesn't exist, just ignore
                    // Check both string representation and service error code if available
                    let error_str = e.to_string();
                    let is_resource_not_found = error_str.contains("ResourceNotFoundException")
                        || format!("{:?}", e).contains("ResourceNotFoundException");

                    if is_resource_not_found {
                        return Ok(());
                    }
                    return Err(FoldDbError::Database(format_dynamodb_error(
                        "query", table_name, None, &error_str,
                    )));
                }
            };

            if let Some(items) = result.items {
                for item in items {
                    if let (Some(pk), Some(sk)) = (item.get("PK"), item.get("SK")) {
                        let mut key = HashMap::new();
                        key.insert("PK".to_string(), pk.clone());
                        key.insert("SK".to_string(), sk.clone());
                        keys_to_delete.push(key);
                    }
                }
            }

            last_evaluated_key = result.last_evaluated_key;
            if last_evaluated_key.is_none() {
                break;
            }
        }

        if keys_to_delete.is_empty() {
            return Ok(());
        }

        // 2. Batch Delete
        const BATCH_SIZE: usize = 25;
        for chunk in keys_to_delete.chunks(BATCH_SIZE) {
            let mut write_requests = Vec::new();

            for key in chunk {
                write_requests.push(
                    WriteRequest::builder()
                        .delete_request(
                            DeleteRequest::builder()
                                .set_key(Some(key.clone()))
                                .build()
                                .map_err(|e| FoldDbError::Database(e.to_string()))?,
                        )
                        .build(),
                );
            }

            retry_batch_operation(
                |requests| {
                    let mut req_map = HashMap::new();
                    req_map.insert(table_name.to_string(), requests.to_vec());
                    Box::pin(
                        self.client
                            .batch_write_item()
                            .set_request_items(Some(req_map))
                            .send(),
                    )
                },
                table_name,
                write_requests,
            )
            .await
            .map_err(FoldDbError::Database)?;
        }

        Ok(())
    }

    /// Delete native index entries for a specific feature
    /// PK = user_id:feature
    async fn delete_native_index_for_feature(
        &self,
        user_id: &str,
        feature: &str,
    ) -> FoldDbResult<()> {
        let table_name = &self.tables.native_index;
        let pk_val = format!("{}:{}", user_id, feature);

        // 1. Query keys
        let mut keys_to_delete = Vec::new();
        let mut last_evaluated_key = None;

        loop {
            let mut query = self
                .client
                .query()
                .table_name(table_name)
                .key_condition_expression("PK = :pk")
                .expression_attribute_values(":pk", AttributeValue::S(pk_val.clone()))
                .projection_expression("PK, SK");

            if let Some(key) = last_evaluated_key {
                query = query.set_exclusive_start_key(Some(key));
            }

            let result = match query.send().await {
                Ok(r) => r,
                Err(e) => {
                    // Log the full error for debugging
                    log::warn!(
                        "Query failed for native index table {}: {:?}",
                        table_name,
                        e
                    );

                    let error_str = e.to_string();
                    let is_resource_not_found = error_str.contains("ResourceNotFoundException")
                        || format!("{:?}", e).contains("ResourceNotFoundException");

                    if is_resource_not_found {
                        return Ok(());
                    }
                    return Err(FoldDbError::Database(format_dynamodb_error(
                        "query", table_name, None, &error_str,
                    )));
                }
            };

            if let Some(items) = result.items {
                for item in items {
                    if let (Some(pk), Some(sk)) = (item.get("PK"), item.get("SK")) {
                        let mut key = HashMap::new();
                        key.insert("PK".to_string(), pk.clone());
                        key.insert("SK".to_string(), sk.clone());
                        keys_to_delete.push(key);
                    }
                }
            }

            last_evaluated_key = result.last_evaluated_key;
            if last_evaluated_key.is_none() {
                break;
            }
        }

        if keys_to_delete.is_empty() {
            return Ok(());
        }

        // 2. Batch Delete
        const BATCH_SIZE: usize = 25;
        for chunk in keys_to_delete.chunks(BATCH_SIZE) {
            let mut write_requests = Vec::new();
            for key in chunk {
                write_requests.push(
                    WriteRequest::builder()
                        .delete_request(
                            DeleteRequest::builder()
                                .set_key(Some(key.clone()))
                                .build()
                                .map_err(|e| FoldDbError::Database(e.to_string()))?,
                        )
                        .build(),
                );
            }

            retry_batch_operation(
                |requests| {
                    let mut req_map = HashMap::new();
                    req_map.insert(table_name.to_string(), requests.to_vec());
                    Box::pin(
                        self.client
                            .batch_write_item()
                            .set_request_items(Some(req_map))
                            .send(),
                    )
                },
                table_name,
                write_requests,
            )
            .await
            .map_err(FoldDbError::Database)?;
        }

        Ok(())
    }

    /// Delete log entries for a specific user
    /// The logs table uses user_id/timestamp as keys instead of PK/SK
    async fn delete_logs_for_user(&self, user_id: &str) -> FoldDbResult<()> {
        let table_name = &self.tables.logs;
        let mut keys_to_delete = Vec::new();
        let mut last_evaluated_key = None;

        loop {
            let mut query = self
                .client
                .query()
                .table_name(table_name)
                .key_condition_expression("user_id = :uid")
                .expression_attribute_values(":uid", AttributeValue::S(user_id.to_string()))
                .projection_expression("user_id, #ts")
                .expression_attribute_names("#ts", "timestamp"); // timestamp is a reserved word

            if let Some(key) = last_evaluated_key {
                query = query.set_exclusive_start_key(Some(key));
            }

            let result = match query.send().await {
                Ok(r) => r,
                Err(e) => {
                    let error_str = e.to_string();
                    let is_resource_not_found = error_str.contains("ResourceNotFoundException")
                        || format!("{:?}", e).contains("ResourceNotFoundException");
                    if is_resource_not_found {
                        return Ok(());
                    }
                    return Err(FoldDbError::Database(format_dynamodb_error(
                        "query", table_name, None, &error_str,
                    )));
                }
            };

            if let Some(items) = result.items {
                for item in items {
                    if let (Some(uid), Some(ts)) = (item.get("user_id"), item.get("timestamp")) {
                        let mut key = HashMap::new();
                        key.insert("user_id".to_string(), uid.clone());
                        key.insert("timestamp".to_string(), ts.clone());
                        keys_to_delete.push(key);
                    }
                }
            }

            last_evaluated_key = result.last_evaluated_key;
            if last_evaluated_key.is_none() {
                break;
            }
        }

        if keys_to_delete.is_empty() {
            return Ok(());
        }

        // Batch Delete
        const BATCH_SIZE: usize = 25;
        for chunk in keys_to_delete.chunks(BATCH_SIZE) {
            let mut write_requests = Vec::new();
            for key in chunk {
                write_requests.push(
                    WriteRequest::builder()
                        .delete_request(
                            DeleteRequest::builder()
                                .set_key(Some(key.clone()))
                                .build()
                                .map_err(|e| FoldDbError::Database(e.to_string()))?,
                        )
                        .build(),
                );
            }

            retry_batch_operation(
                |requests| {
                    let mut req_map = HashMap::new();
                    req_map.insert(table_name.to_string(), requests.to_vec());
                    Box::pin(
                        self.client
                            .batch_write_item()
                            .set_request_items(Some(req_map))
                            .send(),
                    )
                },
                table_name,
                write_requests,
            )
            .await
            .map_err(FoldDbError::Database)?;
        }

        log::debug!(
            "🗑️ Deleted {} log entries for user: {}",
            keys_to_delete.len(),
            user_id
        );
        Ok(())
    }
}