lastfm-edit 6.0.1

Rust crate for programmatic access to Last.fm's scrobble editing functionality via web scraping
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
use super::utils::parse_range;
use lastfm_edit::{LastFmEditClientImpl, Track};
use serde::{Deserialize, Serialize};
use std::io::{self, Write};

/// Events emitted by delete commands (JSON output to stdout)
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(tag = "type")]
pub enum DeleteEvent {
    /// Found a scrobble that would be deleted (dry run)
    ScrobbleFound {
        index: usize,
        offset: Option<u64>,
        artist: String,
        track: String,
        timestamp: Option<u64>,
    },
    /// Scrobble was deleted
    ScrobbleDeleted {
        index: usize,
        artist: String,
        track: String,
        timestamp: u64,
        success: bool,
        message: Option<String>,
    },
    /// Summary of delete operation
    Summary {
        total_found: usize,
        successful_deletions: usize,
        failed_deletions: usize,
        dry_run: bool,
    },
}

/// Output a delete event as JSON to stdout
fn output_event(event: &DeleteEvent) {
    if let Ok(json) = serde_json::to_string(event) {
        println!("{json}");
    } else {
        log::error!("Failed to serialize event to JSON");
    }
}

/// Utility function to ask for user confirmation (goes to stderr)
fn ask_for_confirmation(message: &str) -> Result<bool, Box<dyn std::error::Error>> {
    eprint!("{message} (y/N): ");
    io::stderr().flush()?;

    let mut input = String::new();
    io::stdin().read_line(&mut input)?;

    let response = input.trim().to_lowercase();
    Ok(response == "y" || response == "yes")
}

/// Struct to hold scrobble info for deletion
struct ScrobbleToDelete {
    artist: String,
    track: String,
    timestamp: u64,
}

/// Handle deletion of scrobbles from recent pages
pub async fn handle_delete_recent_pages(
    client: &LastFmEditClientImpl,
    pages_range: &str,
    dry_run: bool,
) -> Result<(), Box<dyn std::error::Error>> {
    let (start_page, end_page) = parse_range(pages_range, "pages")?;

    log::info!("Delete recent scrobbles from pages {start_page}-{end_page}");
    if dry_run {
        log::info!("DRY RUN - No actual deletions will be performed");
    }

    let mut scrobbles_to_delete = Vec::new();
    let mut index = 0;

    // Collect scrobbles from the specified pages
    for page in start_page..=end_page {
        log::info!("Processing page {page}...");

        match client.get_recent_scrobbles(page.try_into().unwrap()).await {
            Ok(scrobbles) => {
                if scrobbles.is_empty() {
                    log::info!("No scrobbles found on page {page}");
                    break;
                }

                log::info!("Found {} scrobbles on page {page}", scrobbles.len());

                for scrobble in scrobbles {
                    index += 1;
                    if let Some(timestamp) = scrobble.timestamp {
                        output_event(&DeleteEvent::ScrobbleFound {
                            index,
                            offset: None,
                            artist: scrobble.artist.clone(),
                            track: scrobble.name.clone(),
                            timestamp: Some(timestamp),
                        });

                        scrobbles_to_delete.push(ScrobbleToDelete {
                            artist: scrobble.artist,
                            track: scrobble.name,
                            timestamp,
                        });
                    } else {
                        log::warn!(
                            "Skipping scrobble without timestamp: '{}' by '{}'",
                            scrobble.name,
                            scrobble.artist
                        );
                    }
                }
            }
            Err(e) => {
                log::error!("Error fetching page {page}: {e}");
                break;
            }
        }
    }

    execute_deletions(client, scrobbles_to_delete, dry_run).await
}

/// Handle deletion of scrobbles from timestamp range
pub async fn handle_delete_timestamp_range(
    client: &LastFmEditClientImpl,
    timestamp_range: &str,
    dry_run: bool,
) -> Result<(), Box<dyn std::error::Error>> {
    let (start_ts, end_ts) = parse_range(timestamp_range, "timestamp")?;

    log::info!("Delete scrobbles from timestamp range {start_ts}-{end_ts}");
    if dry_run {
        log::info!("DRY RUN - No actual deletions will be performed");
    }

    let mut scrobbles_to_delete = Vec::new();
    let mut index = 0;
    let max_pages = 20;

    for page in 1..=max_pages {
        log::debug!("Searching page {page} for scrobbles in timestamp range...");

        match client.get_recent_scrobbles(page).await {
            Ok(scrobbles) => {
                if scrobbles.is_empty() {
                    log::info!("No more scrobbles found, stopping search");
                    break;
                }

                for scrobble in scrobbles {
                    if let Some(timestamp) = scrobble.timestamp {
                        if timestamp >= start_ts && timestamp <= end_ts {
                            index += 1;
                            output_event(&DeleteEvent::ScrobbleFound {
                                index,
                                offset: None,
                                artist: scrobble.artist.clone(),
                                track: scrobble.name.clone(),
                                timestamp: Some(timestamp),
                            });

                            scrobbles_to_delete.push(ScrobbleToDelete {
                                artist: scrobble.artist,
                                track: scrobble.name,
                                timestamp,
                            });
                        }
                    }
                }
            }
            Err(e) => {
                log::error!("Error fetching page {page}: {e}");
                break;
            }
        }
    }

    execute_deletions(client, scrobbles_to_delete, dry_run).await
}

/// Handle deletion of scrobbles by offset from most recent
pub async fn handle_delete_recent_offset(
    client: &LastFmEditClientImpl,
    offset_range: &str,
    dry_run: bool,
) -> Result<(), Box<dyn std::error::Error>> {
    let (start_offset, end_offset) = parse_range(offset_range, "offset")?;

    log::info!("Delete scrobbles by offset: {start_offset}-{end_offset} (0-indexed)");
    if dry_run {
        log::info!("DRY RUN - No actual deletions will be performed");
    }

    let mut all_scrobbles: Vec<Track> = Vec::new();
    let mut page = 1;
    let needed_scrobbles = (end_offset + 1) as usize;

    log::info!("Collecting recent scrobbles to reach offset {end_offset}...");

    while all_scrobbles.len() < needed_scrobbles {
        match client.get_recent_scrobbles(page.try_into().unwrap()).await {
            Ok(scrobbles) => {
                if scrobbles.is_empty() {
                    log::info!("No more scrobbles found on page {page}");
                    break;
                }

                log::debug!(
                    "Page {page}: Found {} scrobbles (total: {})",
                    scrobbles.len(),
                    all_scrobbles.len() + scrobbles.len()
                );
                all_scrobbles.extend(scrobbles);
                page += 1;

                if all_scrobbles.len() >= needed_scrobbles {
                    break;
                }
            }
            Err(e) => {
                log::error!("Error fetching page {page}: {e}");
                break;
            }
        }
    }

    if all_scrobbles.len() <= start_offset as usize {
        log::error!(
            "Not enough recent scrobbles found. You have {} scrobbles, but requested offset starts at {} (0-indexed)",
            all_scrobbles.len(),
            start_offset
        );
        output_event(&DeleteEvent::Summary {
            total_found: 0,
            successful_deletions: 0,
            failed_deletions: 0,
            dry_run,
        });
        return Ok(());
    }

    // Extract scrobbles in range
    let actual_end_index = std::cmp::min(end_offset as usize, all_scrobbles.len() - 1);
    let scrobbles_in_range = &all_scrobbles[start_offset as usize..=actual_end_index];

    let mut scrobbles_to_delete = Vec::new();

    for (i, scrobble) in scrobbles_in_range.iter().enumerate() {
        let offset = start_offset + i as u64;
        if let Some(timestamp) = scrobble.timestamp {
            output_event(&DeleteEvent::ScrobbleFound {
                index: i + 1,
                offset: Some(offset),
                artist: scrobble.artist.clone(),
                track: scrobble.name.clone(),
                timestamp: Some(timestamp),
            });

            scrobbles_to_delete.push(ScrobbleToDelete {
                artist: scrobble.artist.clone(),
                track: scrobble.name.clone(),
                timestamp,
            });
        } else {
            log::warn!(
                "Skipping scrobble at offset {} without timestamp: '{}' by '{}'",
                offset,
                scrobble.name,
                scrobble.artist
            );
        }
    }

    execute_deletions(client, scrobbles_to_delete, dry_run).await
}

/// Common deletion execution logic
async fn execute_deletions(
    client: &LastFmEditClientImpl,
    scrobbles: Vec<ScrobbleToDelete>,
    dry_run: bool,
) -> Result<(), Box<dyn std::error::Error>> {
    if scrobbles.is_empty() {
        log::info!("No scrobbles with timestamps found to delete");
        output_event(&DeleteEvent::Summary {
            total_found: 0,
            successful_deletions: 0,
            failed_deletions: 0,
            dry_run,
        });
        return Ok(());
    }

    log::info!("Found {} scrobbles to delete", scrobbles.len());

    if dry_run {
        log::info!("DRY RUN - No actual deletions performed");
        log::info!("Use --apply to execute these deletions");
        output_event(&DeleteEvent::Summary {
            total_found: scrobbles.len(),
            successful_deletions: 0,
            failed_deletions: 0,
            dry_run: true,
        });
        return Ok(());
    }

    // Ask for confirmation
    eprintln!();
    eprintln!("About to delete {} scrobble(s):", scrobbles.len());
    if let Some(first) = scrobbles.first() {
        eprintln!("  First: '{}' by '{}'", first.track, first.artist);
    }
    if scrobbles.len() > 1 {
        if let Some(last) = scrobbles.last() {
            eprintln!("  Last:  '{}' by '{}'", last.track, last.artist);
        }
    }

    if !ask_for_confirmation("\nDo you want to proceed with deleting these scrobbles?")? {
        log::info!("Deletion cancelled by user");
        output_event(&DeleteEvent::Summary {
            total_found: scrobbles.len(),
            successful_deletions: 0,
            failed_deletions: 0,
            dry_run: false,
        });
        return Ok(());
    }

    log::info!("Deleting scrobbles...");

    let mut successful_deletions = 0;
    let mut failed_deletions = 0;

    for (i, scrobble) in scrobbles.iter().enumerate() {
        log::debug!(
            "Deleting {}/{}: '{}' by '{}'",
            i + 1,
            scrobbles.len(),
            scrobble.track,
            scrobble.artist
        );

        match client
            .delete_scrobble(&scrobble.artist, &scrobble.track, scrobble.timestamp)
            .await
        {
            Ok(true) => {
                successful_deletions += 1;
                output_event(&DeleteEvent::ScrobbleDeleted {
                    index: i + 1,
                    artist: scrobble.artist.clone(),
                    track: scrobble.track.clone(),
                    timestamp: scrobble.timestamp,
                    success: true,
                    message: None,
                });
            }
            Ok(false) => {
                failed_deletions += 1;
                output_event(&DeleteEvent::ScrobbleDeleted {
                    index: i + 1,
                    artist: scrobble.artist.clone(),
                    track: scrobble.track.clone(),
                    timestamp: scrobble.timestamp,
                    success: false,
                    message: Some("Deletion failed".to_string()),
                });
            }
            Err(e) => {
                failed_deletions += 1;
                output_event(&DeleteEvent::ScrobbleDeleted {
                    index: i + 1,
                    artist: scrobble.artist.clone(),
                    track: scrobble.track.clone(),
                    timestamp: scrobble.timestamp,
                    success: false,
                    message: Some(e.to_string()),
                });
            }
        }

        // Add delay between deletions to be respectful to the server
        if i < scrobbles.len() - 1 {
            tokio::time::sleep(std::time::Duration::from_millis(1000)).await;
        }
    }

    output_event(&DeleteEvent::Summary {
        total_found: scrobbles.len(),
        successful_deletions,
        failed_deletions,
        dry_run: false,
    });

    log::info!(
        "Deletion complete: {} successful, {} failed out of {} total",
        successful_deletions,
        failed_deletions,
        scrobbles.len()
    );

    Ok(())
}