bookmark 0.1.2

Import, search, and open bookmarks from all browsers
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
436
437
438
439
440
441
442
443
444
445
446
use anyhow::Result;
use clap::{Parser, Subcommand};
use std::fs;
use std::path::PathBuf;

mod browser;
mod config;
mod deduplication;
mod exporter;
mod graph;
mod organization;
mod processor;
mod search;

use browser::Browser;
use deduplication::MergeStrategy;
use exporter::export_data;
use processor::{BookmarkProcessor, ProcessingConfig};
use search::{open_bookmark, search_bookmarks};

#[derive(Parser)]
#[command(name = "bookmark")]
#[command(about = "Import, search, and manage bookmarks from all browsers", version = "0.1.1")]
struct Cli {
    #[command(subcommand)]
    command: Commands,
}

#[derive(Subcommand)]
enum Commands {
    /// Export bookmarks/history from browsers
    Export {
        /// Browser (chrome, firefox, safari, edge, all)
        #[arg(short, long, default_value = "all")]
        browser: String,
        /// Data type (bookmarks, history, both)
        #[arg(short, long, default_value = "bookmarks")]
        data_type: String,
        /// Output directory
        #[arg(short, long)]
        output: Option<PathBuf>,
        /// Custom browser data directory
        #[arg(long)]
        profile_dir: Option<PathBuf>,
    },

    /// List available browsers
    List {
        /// Filter by specific browser
        browser: Option<String>,
    },

    /// Search bookmarks
    Search {
        /// Search query
        query: String,
        /// Search in title only
        #[arg(long)]
        title_only: bool,
        /// Search in URL only
        #[arg(long)]
        url_only: bool,
        /// Limit results
        #[arg(short, long, default_value = "20")]
        limit: usize,
    },

    /// Open bookmark in browser
    Open {
        /// Search query
        query: String,
        /// Open first match without asking
        #[arg(short, long)]
        first: bool,
    },

    /// Process bookmarks (deduplicate, organize, or both)
    Process {
        /// Input file
        #[arg(short, long)]
        input: PathBuf,
        /// Output file
        #[arg(short, long)]
        output: PathBuf,
        /// Processing mode (dedupe, organize, both)
        #[arg(short, long, default_value = "both")]
        mode: String,
        /// Merge strategy (first, last, recent, merge)
        #[arg(long, default_value = "merge")]
        strategy: String,
        /// Organization strategy (domain, category, custom)
        #[arg(long, default_value = "custom")]
        org_strategy: String,
        /// Preview without applying
        #[arg(long)]
        preview: bool,
        /// Create backup
        #[arg(long)]
        backup: bool,
    },

    /// Generate knowledge graph
    Graph {
        /// Browser source
        #[arg(short, long, default_value = "all")]
        browser: String,
        /// Data type (bookmarks, history, both)
        #[arg(short, long, default_value = "both")]
        data_type: String,
        /// Output format (dot, json, gexf)
        #[arg(short, long, default_value = "dot")]
        format: String,
        /// Output file
        #[arg(short, long)]
        output: PathBuf,
        /// Minimum bookmarks for domain node
        #[arg(long, default_value = "2")]
        min_threshold: usize,
    },

    /// Manage configuration
    Config {
        /// Show current config
        #[arg(long)]
        show: bool,
        /// Create sample config
        #[arg(long)]
        create_sample: Option<PathBuf>,
        /// List custom rules
        #[arg(long)]
        list_rules: bool,
    },
}

fn main() -> Result<()> {
    env_logger::init();
    let cli = Cli::parse();

    match cli.command {
        Commands::Export {
            browser,
            data_type,
            output,
            profile_dir,
        } => {
            if browser == "all" {
                export_all_browsers(&data_type, output, profile_dir)?;
            } else {
                export_data(&browser, &data_type, output, profile_dir)?;
            }
        }

        Commands::List { browser } => {
            if let Some(b) = browser {
                list_browser_profiles(&b)?;
            } else {
                list_all_browsers()?;
            }
        }

        Commands::Search {
            query,
            title_only,
            url_only,
            limit,
        } => {
            search_bookmarks(&query, title_only, url_only, limit)?;
        }

        Commands::Open { query, first } => {
            open_bookmark(&query, first)?;
        }

        Commands::Process {
            input,
            output,
            mode,
            strategy,
            org_strategy,
            preview,
            backup,
        } => {
            process_bookmarks(&input, &output, &mode, &strategy, &org_strategy, preview, backup)?;
        }

        Commands::Graph {
            browser,
            data_type,
            format,
            output,
            min_threshold,
        } => {
                generate_graph(&browser, &data_type, &format, output, min_threshold)?;
        }

        Commands::Config {
            show,
            create_sample,
            list_rules,
        } => {
            handle_config(show, create_sample, list_rules)?;
        }
    }

    Ok(())
}

fn export_all_browsers(data_type: &str, output_dir: Option<PathBuf>, profile_dir: Option<PathBuf>) -> Result<()> {
    let browsers = ["Chrome", "Firefox", "Safari", "Edge"];
    let output_dir = output_dir.unwrap_or_else(|| PathBuf::from("."));
    fs::create_dir_all(&output_dir)?;

    println!("Scanning browsers...");
    let mut found = Vec::new();

    for browser_name in browsers {
        if let Ok(browser) = Browser::from_str(browser_name) {
            if let Ok(profiles) = browser.find_profiles(profile_dir.as_deref()) {
                if !profiles.is_empty() {
                    found.push(browser_name);
                    let output_file = output_dir.join(format!("{}-{}.yaml", browser_name.to_lowercase(), data_type));
                    println!("Exporting {}...", browser_name);
                    match export_data(browser_name, data_type, Some(output_file), profile_dir.clone()) {
                        Ok(_) => println!("  ✓ Success"),
                        Err(e) => println!("  ✗ Failed: {}", e),
                    }
                }
            }
        }
    }

    if found.is_empty() {
        println!("No browsers found");
    } else {
        println!("\nExported: {}", found.join(", "));
    }
    Ok(())
}

fn process_bookmarks(
    input: &PathBuf,
    output: &PathBuf,
    mode: &str,
    strategy: &str,
    org_strategy: &str,
    preview: bool,
    backup: bool,
) -> Result<()> {
    println!("Loading {}...", input.display());
    let content = fs::read_to_string(input)?;
    let browser_data: Vec<exporter::BrowserData> = serde_yaml::from_str(&content)?;

    let mut all_bookmarks = Vec::new();
    for data in browser_data {
        if let Some(bookmarks) = data.bookmarks {
            all_bookmarks.extend(bookmarks);
        }
    }

    println!("Loaded {} bookmarks", all_bookmarks.len());

    let merge_strategy = match strategy {
        "first" => MergeStrategy::KeepFirst,
        "last" => MergeStrategy::KeepLast,
        "recent" => MergeStrategy::KeepMostRecent,
        "merge" => MergeStrategy::MergeMetadata,
        _ => return Err(anyhow::anyhow!("Invalid strategy: {}", strategy)),
    };

    let dedupe_enabled = mode == "dedupe" || mode == "both";

    let config = ProcessingConfig {
        deduplication_config: deduplication::DeduplicationConfig {
            merge_strategy,
            normalize_urls: dedupe_enabled,
            ..Default::default()
        },
        organization_config: organization::OrganizationConfig {
            organize_by_domain: org_strategy == "domain" || org_strategy == "custom",
            organize_by_category: org_strategy == "category" || org_strategy == "custom",
            ..Default::default()
        },
        dry_run: preview,
        backup_original: backup,
    };

    let processor = BookmarkProcessor::new(config);
    let result = processor.process_bookmarks(&all_bookmarks)?;

    if !preview {
        processor.export_processed_bookmarks(&result.processed_bookmarks, output)?;
    }

    println!(
        "Original: {} | Final: {} | Duplicates removed: {}",
        result.processing_summary.original_count,
        result.processing_summary.final_count,
        result.processing_summary.duplicates_removed
    );

    Ok(())
}

fn generate_graph(
    browser: &str,
    data_type: &str,
    format: &str,
    output: PathBuf,
    min_threshold: usize,
) -> Result<()> {
    println!("Generating knowledge graph...");

    let (bookmarks, history) = load_browser_data(browser, data_type)?;

    let config = graph::GraphConfig {
        min_domain_threshold: min_threshold,
        ..Default::default()
    };

    let mut builder = graph::GraphBuilder::new(config);
    let graph = match data_type {
        "bookmarks" => builder.from_bookmarks(&bookmarks)?,
        "history" => builder.from_history(&history)?,
        "both" => builder.from_both(&bookmarks, &history)?,
        _ => return Err(anyhow::anyhow!("Invalid data type")),
    };

    let content = match format {
        "dot" => graph::formats::to_dot(&graph),
        "json" => graph::formats::to_json(&graph),
        "gexf" => graph::formats::to_gexf(&graph),
        _ => return Err(anyhow::anyhow!("Invalid format")),
    };

    fs::write(&output, content)?;

    println!("✓ Graph generated: {}", output.display());
    println!("  Nodes: {} (bookmarks: {}, domains: {}, folders: {})",
        graph.metadata.total_nodes,
        graph.metadata.bookmark_count,
        graph.metadata.domain_count,
        graph.metadata.folder_count
    );
    println!("  Edges: {}", graph.metadata.total_edges);

    Ok(())
}

fn load_browser_data(browser: &str, data_type: &str) -> Result<(Vec<exporter::Bookmark>, Vec<exporter::UrlEntry>)> {
    let temp_dir = PathBuf::from("/tmp/bookmark_graph");

    if browser == "all" {
        fs::create_dir_all(&temp_dir)?;
        export_all_browsers(data_type, Some(temp_dir.clone()), None)?;
    } else {
        fs::create_dir_all(&temp_dir)?;
        export_data(browser, data_type, Some(temp_dir.join(format!("{}.yaml", browser))), None)?;
    }

    let mut all_bookmarks = Vec::new();
    let mut all_history = Vec::new();

    let browsers: Vec<&str> = if browser == "all" {
        vec!["chrome", "firefox", "safari", "edge"]
    } else {
        vec![browser]
    };

    for browser_name in browsers {
        let file = temp_dir.join(format!("{}-{}.yaml", browser_name, data_type));
        if file.exists() {
            let content = fs::read_to_string(&file)?;
            let browser_data: Vec<exporter::BrowserData> = serde_yaml::from_str(&content)?;
            for data in browser_data {
                if let Some(b) = data.bookmarks {
                    all_bookmarks.extend(b);
                }
                if let Some(h) = data.history {
                    all_history.extend(h.urls);
                }
            }
        }
    }

    Ok((all_bookmarks, all_history))
}

fn handle_config(show: bool, create_sample: Option<PathBuf>, list_rules: bool) -> Result<()> {
    if let Some(path) = create_sample {
        config::AppConfig::create_sample_config(&path)?;
        println!("Created: {}", path.display());
        return Ok(());
    }

    if show {
        let config = config::AppConfig::load_or_create()?;
        println!("{}", serde_yaml::to_string(&config)?);
        return Ok(());
    }

    if list_rules {
        let config = config::AppConfig::load_or_create()?;
        let rules = config.list_rules();
        if rules.is_empty() {
            println!("No custom rules");
        } else {
            for rule in rules {
                println!("{}: {} -> {}", rule.name, rule.pattern, rule.folder);
            }
        }
        return Ok(());
    }

    println!("Config commands:");
    println!("  --show           Show current configuration");
    println!("  --create-sample  Create sample config file");
    println!("  --list-rules     List custom organization rules");

    Ok(())
}

fn list_all_browsers() -> Result<()> {
    println!("Available browsers:");
    for browser_name in &["Chrome", "Firefox", "Safari", "Edge"] {
        if let Ok(browser) = Browser::from_str(browser_name) {
            if let Ok(profiles) = browser.find_profiles(None) {
                println!("  {}: {} profile(s)", browser_name, profiles.len());
            }
        }
    }
    Ok(())
}

fn list_browser_profiles(browser_name: &str) -> Result<()> {
    let browser = Browser::from_str(browser_name)?;
    let profiles = browser.find_profiles(None)?;
    if profiles.is_empty() {
        println!("No profiles found for {}", browser_name);
    } else {
        println!("Profiles for {}:", browser_name);
        for (i, p) in profiles.iter().enumerate() {
            println!("  {}: {}", i + 1, p.display());
        }
    }
    Ok(())
}