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
//! # Gmail Rules CLI Module
//!
//! This module provides command-line interface functionality for configuring and executing
//! automated Gmail message retention rules. It enables users to create sophisticated
//! message lifecycle policies with configurable retention periods, label targeting,
//! and automated actions (trash/delete).
//!
//! ## Overview
//!
//! The rules command provides two main functionalities:
//! - **Configuration**: Create, modify, and manage retention rules
//! - **Execution**: Run configured rules to process Gmail messages automatically
//!
//! ## Rule-Based Message Management
//!
//! Rules enable automated message lifecycle management by:
//! - **Time-based filtering**: Target messages based on age criteria
//! - **Label-based targeting**: Apply rules to specific Gmail labels
//! - **Automated actions**: Perform trash or delete operations
//! - **Safety controls**: Built-in dry-run and logging capabilities
//!
//! ## Command Structure
//!
//! ```bash
//! cull-gmail rules <SUBCOMMAND>
//! ```
//!
//! ### Available Subcommands
//!
//! - **`config`**: Configure retention rules, labels, and actions
//! - **`run`**: Execute configured rules with optional safety controls
//!
//! ## Rule Configuration
//!
//! Rules are stored in TOML format with the following structure:
//!
//! ```toml
//! [rules."1"]
//! id = 1
//! retention = { age = "y:2", generate_label = true }
//! labels = ["old-emails"]
//! action = "Trash"
//!
//! [rules."2"]
//! id = 2
//! retention = { age = "m:6", generate_label = true }
//! labels = ["promotions", "newsletters"]
//! action = "Delete"
//! ```
//!
//! ## Retention Periods
//!
//! Supported time formats:
//! - **Years**: `y:1`, `y:2`, etc.
//! - **Months**: `m:6`, `m:12`, etc.
//! - **Days**: `d:30`, `d:90`, etc.
//!
//! ## Actions
//!
//! - **Trash**: Move messages to recoverable Trash folder (~30 day recovery)
//! - **Delete**: Permanently remove messages (irreversible)
//!
//! ## Safety Features
//!
//! - **Dry-run mode**: Default execution mode prevents accidental data loss
//! - **Rule validation**: Configuration validation before execution
//! - **Comprehensive logging**: Detailed operation tracking
//! - **Error isolation**: Individual rule failures don't stop processing
//!
//! ## Usage Examples
//!
//! ### Configure Rules
//! ```bash
//! # Add a new rule
//! cull-gmail rules config rules add
//!
//! # Configure rule labels
//! cull-gmail rules config label add 1 "old-emails"
//!
//! # Set rule action
//! cull-gmail rules config action 1 trash
//! ```
//!
//! ### Execute Rules
//! ```bash
//! # Dry-run (safe preview)
//! cull-gmail rules run
//!
//! # Execute for real
//! cull-gmail rules run --execute
//!
//! # Execute only specific action types
//! cull-gmail rules run --execute --skip-delete
//! ```
//!
//! ## Integration
//!
//! This module integrates with:
//! - **Rules engine**: Core rule processing and validation
//! - **GmailClient**: Message querying and batch operations
//! - **Configuration system**: TOML-based rule persistence
//! - **Logging system**: Comprehensive operation tracking
use ;
use ;
use ;
use ConfigCli;
use RunCli;
use ValidateCli;
/// Available subcommands for rules management and execution.
///
/// This enum defines the two main operational modes for the rules CLI:
/// configuration management and rule execution. Each mode provides
/// specialized functionality for different aspects of rule lifecycle management.
///
/// # Command Categories
///
/// - **Config**: Rule definition, modification, and management operations
/// - **Run**: Rule execution with various safety and control options
///
/// # Workflow Integration
///
/// Typical usage follows this pattern:
/// 1. Use `config` to set up rules, labels, and actions
/// 2. Use `run` to execute rules with dry-run testing
/// 3. Use `run --execute` for live rule execution
/// Command-line interface for Gmail message retention rule management.
///
/// This structure represents the rules subcommand, providing comprehensive
/// functionality for both configuring and executing automated Gmail message
/// retention policies. It serves as the main entry point for rule-based
/// message lifecycle management.
///
/// # Core Functionality
///
/// - **Rule Configuration**: Create, modify, and manage retention rules
/// - **Label Management**: Associate rules with specific Gmail labels
/// - **Action Control**: Configure trash or delete actions for rules
/// - **Rule Execution**: Run configured rules with safety controls
///
/// # Architecture
///
/// The RulesCli delegates to specialized subcommands:
/// - **ConfigCli**: Handles all rule configuration operations
/// - **RunCli**: Manages rule execution and safety controls
///
/// # Configuration Flow
///
/// 1. **Rule Creation**: Define retention periods and basic parameters
/// 2. **Label Assignment**: Associate rules with target Gmail labels
/// 3. **Action Configuration**: Set appropriate actions (trash/delete)
/// 4. **Validation**: Ensure rules are properly configured
/// 5. **Execution**: Run rules with appropriate safety controls
///
/// # Safety Integration
///
/// The RulesCli incorporates multiple safety layers:
/// - **Configuration validation**: Rules are validated before execution
/// - **Dry-run capabilities**: Preview rule effects before applying changes
/// - **Error isolation**: Individual rule failures don't stop processing
/// - **Comprehensive logging**: Detailed tracking of all operations
///
/// # Usage Context
///
/// This CLI is designed for:
/// - **System administrators**: Managing organizational Gmail retention policies
/// - **Power users**: Implementing personal email organization strategies
/// - **Automation**: Scheduled execution of maintenance tasks
/// - **Compliance**: Meeting data retention requirements
/// Loads Gmail retention rules from configuration with automatic fallback.
///
/// This function provides robust rule loading with automatic configuration
/// creation when no existing rules are found. It ensures that the rules
/// subsystem always has a valid configuration to work with.
///
/// # Returns
///
/// Returns `Result<Rules>` containing the loaded or newly created rules configuration.
///
/// # Loading Strategy
///
/// ## Primary Path
/// - Attempts to load existing rules from the configured rules file
/// - Validates rule structure and consistency
/// - Returns loaded rules if successful
///
/// ## Fallback Path
/// - Creates new default rules configuration if loading fails
/// - Saves the default configuration to disk for future use
/// - Returns the newly created default configuration
///
/// # Configuration Location
///
/// Rules are typically stored in:
/// - **Default location**: `~/.cull-gmail/rules.toml`
/// - **Format**: TOML configuration with structured rule definitions
/// - **Permissions**: Should be readable/writable by user only
///
/// # Error Handling
///
/// The function handles various error scenarios:
/// - **Missing configuration**: Creates default configuration automatically
/// - **Corrupted configuration**: Logs warnings and falls back to defaults
/// - **File system errors**: Propagates errors for disk access issues
///
/// # Default Configuration
///
/// When creating a new configuration, the function:
/// - Initializes an empty rules collection
/// - Sets up proper TOML structure for future rule additions
/// - Saves the configuration to disk for persistence
///
/// # Logging
///
/// The function provides appropriate logging:
/// - **Info**: Successful rule loading
/// - **Warn**: Fallback to default configuration
/// - **Error**: Critical failures during configuration creation
///
/// # Usage Context
///
/// This function is called by:
/// - **Rules CLI**: To load rules before configuration or execution
/// - **Main CLI**: For default rule execution when no subcommand is specified
/// - **Validation systems**: To verify rule configuration integrity
///
/// Loads rules from the default location.
/// Loads rules from a specified path, or the default location if None.
///
/// # Arguments
///
/// * `path` - Optional path to the rules file
///
/// # Returns
///
/// Returns the loaded rules, or creates and saves default rules if not found.