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
//! # Delete Operations
//!
//! This module provides comprehensive functionality for removing records from Supabase tables.
//! It supports deletion by ID, custom column matching, and includes safety measures for
//! preventing accidental data loss.
//!
//! ## 🎯 Core Features
//!
//! - **[`delete`]**: Remove records by ID (most common)
//! - **[`delete_without_defined_key`]**: Remove records by custom column matching
//! - **Safety Measures**: Built-in safeguards against accidental bulk deletions
//! - **Error Handling**: Clear feedback for failed operations
//!
//! ## 🏗️ Operation Types
//!
//! | Method | Targeting | Safety Level | Use Case |
//! |--------|-----------|--------------|----------|
//! | `delete` | By ID | ✅ Safe | Standard record removal |
//! | `delete_without_defined_key` | By custom column | ⚠️ Use carefully | Flexible targeting |
//!
//! ## ⚠️ Safety Considerations
//!
//! - **Single Record Focus**: Both methods target individual records
//! - **No Bulk Delete**: Prevents accidental mass deletions
//! - **Explicit Targeting**: Requires specific column/value pairs
//! - **Error Feedback**: Clear messages for failed operations
//!
//! ## 📖 Usage Examples
//!
//! ### Basic Delete Operations
//!
//! ```rust,no_run
//! use supabase_rs::SupabaseClient;
//!
//! # async fn example() -> Result<(), String> {
//! # let client = SupabaseClient::new("url".to_string(), "key".to_string()).unwrap();
//! // Delete by ID (most common and safest)
//! client.delete("users", "123").await?;
//! println!("✅ User deleted successfully");
//!
//! // Delete with error handling
//! match client.delete("posts", "456").await {
//! Ok(_) => println!("✅ Post deleted"),
//! Err(err) => {
//! if err.contains("404") {
//! println!("⚠️ Post not found (may already be deleted)");
//! } else {
//! println!("❌ Delete failed: {}", err);
//! }
//! }
//! }
//! # Ok(())
//! # }
//! ```
//!
//! ### Delete by Custom Column
//!
//! ```rust,no_run
//! # use supabase_rs::SupabaseClient;
//! # async fn example() -> Result<(), String> {
//! # let client = SupabaseClient::new("url".to_string(), "key".to_string()).unwrap();
//! // Delete session by token
//! client.delete_without_defined_key("sessions", "token", "abc123xyz").await?;
//!
//! // Delete user by email (use with caution)
//! client.delete_without_defined_key("users", "email", "user@example.com").await?;
//!
//! // Delete expired records
//! client.delete_without_defined_key("temp_data", "expires_at", "2024-01-01").await?;
//! # Ok(())
//! # }
//! ```
//!
//! ## 🚨 Error Handling and Recovery
//!
//! ```rust,no_run
//! # use supabase_rs::SupabaseClient;
//! # async fn example() -> Result<(), String> {
//! # let client = SupabaseClient::new("url".to_string(), "key".to_string()).unwrap();
//! // Comprehensive error handling for delete operations
//! async fn safe_delete(client: &SupabaseClient, table: &str, id: &str) -> Result<(), String> {
//! match client.delete(table, id).await {
//! Ok(_) => {
//! println!("✅ Record deleted successfully");
//! Ok(())
//! },
//! Err(err) => {
//! if err.contains("404") {
//! println!("⚠️ Record not found (may already be deleted)");
//! Ok(()) // Treat as success - desired state achieved
//! } else if err.contains("403") {
//! println!("🚫 Permission denied - check RLS policies");
//! Err("Insufficient permissions for delete operation".to_string())
//! } else if err.contains("409") {
//! println!("⚠️ Cannot delete - record has dependent references");
//! Err("Delete blocked by foreign key constraints".to_string())
//! } else {
//! println!("❌ Unexpected delete error: {}", err);
//! Err(err)
//! }
//! }
//! }
//! }
//! # Ok(())
//! # }
//! ```
//!
//! ## 🛡️ Best Practices
//!
//! ### Safe Deletion Patterns
//!
//! ```rust,no_run
//! # use supabase_rs::SupabaseClient;
//! # async fn example() -> Result<(), String> {
//! # let client = SupabaseClient::new("url".to_string(), "key".to_string()).unwrap();
//! // ✅ Good: Verify record exists before deletion
//! let users = client.select("users").eq("id", "123").execute().await?;
//! if !users.is_empty() {
//! client.delete("users", "123").await?;
//! println!("User deleted after verification");
//! } else {
//! println!("User not found, no deletion needed");
//! }
//!
//! // ✅ Good: Use specific column matching for safety
//! client.delete_without_defined_key("sessions", "user_id", "123").await?;
//!
//! // ⚠️ Consider: Soft deletes for important data
//! // Instead of hard delete, mark as deleted
//! // client.update("users", "123", json!({"deleted_at": "2024-01-15T10:30:00Z"})).await?;
//! # Ok(())
//! # }
//! ```
//!
//! ## 🔄 Alternative Patterns
//!
//! ### Soft Delete Implementation
//!
//! For critical data, consider implementing soft deletes:
//!
//! ```rust,no_run
//! # use supabase_rs::SupabaseClient;
//! # use serde_json::json;
//! # async fn example() -> Result<(), String> {
//! # let client = SupabaseClient::new("url".to_string(), "key".to_string()).unwrap();
//! // Soft delete - mark as deleted instead of removing
//! client.update("users", "123", json!({
//! "deleted_at": "2024-01-15T10:30:00Z",
//! "deleted_by": "admin_user_456"
//! })).await?;
//!
//! // Query active records only
//! let active_users = client
//! .select("users")
//! .eq("deleted_at", "is.null")
//! .execute()
//! .await?;
//! # Ok(())
//! # }
//! ```
use crateHeadersTypes;
use crateSupabaseClient;
use Response;
use json;