tuitbot-core 0.1.47

Core library for Tuitbot autonomous X growth assistant
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
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
//! Date-ranged metric queries over existing tables.
//!
//! All functions query existing tables (`action_log`, `follower_snapshots`,
//! `reply_performance`, `tweet_performance`, `original_tweets`, `replies_sent`)
//! with date bounds. No new data collection is needed.

use crate::error::StorageError;
use crate::storage::DbPool;

/// Action counts for a date range.
#[derive(Debug, Clone, Default, serde::Serialize)]
pub struct ActionCounts {
    pub replies: i64,
    pub tweets: i64,
    pub threads: i64,
    pub target_replies: i64,
}

/// A topic's performance within a date range.
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
pub struct TopicPerformance {
    pub topic: String,
    pub format: String,
    pub avg_score: f64,
    pub post_count: i64,
}

/// A top-performing content item.
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
pub struct ContentHighlight {
    pub content_type: String,
    pub content_preview: String,
    pub performance_score: f64,
    pub likes: i64,
    pub replies_received: i64,
}

/// Count actions by type within a date range.
///
/// Queries the `action_log` table. The range is `[start, end)`.
pub async fn count_actions_in_range(
    pool: &DbPool,
    start: &str,
    end: &str,
) -> Result<ActionCounts, StorageError> {
    let rows: Vec<(String, i64)> = sqlx::query_as(
        "SELECT action_type, COUNT(*) as cnt FROM action_log \
         WHERE created_at >= ? AND created_at < ? AND status = 'success' \
         GROUP BY action_type",
    )
    .bind(start)
    .bind(end)
    .fetch_all(pool)
    .await
    .map_err(|e| StorageError::Query { source: e })?;

    let mut counts = ActionCounts::default();
    for (action_type, count) in rows {
        match action_type.as_str() {
            "reply" => counts.replies = count,
            "tweet" => counts.tweets = count,
            "thread" => counts.threads = count,
            "target_reply" => counts.target_replies = count,
            _ => {}
        }
    }
    Ok(counts)
}

/// Get the follower count at or before a given date.
///
/// Returns the nearest snapshot whose date is `<= date`.
pub async fn get_follower_at_date(pool: &DbPool, date: &str) -> Result<Option<i64>, StorageError> {
    let row: Option<(i64,)> = sqlx::query_as(
        "SELECT follower_count FROM follower_snapshots \
         WHERE snapshot_date <= ? ORDER BY snapshot_date DESC LIMIT 1",
    )
    .bind(date)
    .fetch_optional(pool)
    .await
    .map_err(|e| StorageError::Query { source: e })?;

    Ok(row.map(|r| r.0))
}

/// Average reply performance score in a date range.
pub async fn avg_reply_score_in_range(
    pool: &DbPool,
    start: &str,
    end: &str,
) -> Result<f64, StorageError> {
    let row: (f64,) = sqlx::query_as(
        "SELECT COALESCE(AVG(rp.performance_score), 0.0) \
         FROM reply_performance rp \
         JOIN replies_sent rs ON rs.reply_tweet_id = rp.reply_id \
         WHERE rs.created_at >= ? AND rs.created_at < ?",
    )
    .bind(start)
    .bind(end)
    .fetch_one(pool)
    .await
    .map_err(|e| StorageError::Query { source: e })?;

    Ok(row.0)
}

/// Average tweet performance score in a date range.
pub async fn avg_tweet_score_in_range(
    pool: &DbPool,
    start: &str,
    end: &str,
) -> Result<f64, StorageError> {
    let row: (f64,) = sqlx::query_as(
        "SELECT COALESCE(AVG(tp.performance_score), 0.0) \
         FROM tweet_performance tp \
         JOIN original_tweets ot ON ot.tweet_id = tp.tweet_id \
         WHERE ot.created_at >= ? AND ot.created_at < ?",
    )
    .bind(start)
    .bind(end)
    .fetch_one(pool)
    .await
    .map_err(|e| StorageError::Query { source: e })?;

    Ok(row.0)
}

/// Reply acceptance rate: fraction of replies that received at least one reply back.
pub async fn reply_acceptance_rate(
    pool: &DbPool,
    start: &str,
    end: &str,
) -> Result<f64, StorageError> {
    let row: (i64, i64) = sqlx::query_as(
        "SELECT \
            COUNT(*) as total, \
            SUM(CASE WHEN rp.replies_received > 0 THEN 1 ELSE 0 END) as accepted \
         FROM replies_sent rs \
         JOIN reply_performance rp ON rp.reply_id = rs.reply_tweet_id \
         WHERE rs.created_at >= ? AND rs.created_at < ?",
    )
    .bind(start)
    .bind(end)
    .fetch_one(pool)
    .await
    .map_err(|e| StorageError::Query { source: e })?;

    if row.0 == 0 {
        return Ok(0.0);
    }
    Ok(row.1 as f64 / row.0 as f64)
}

/// Top topics by average performance score in a date range.
pub async fn top_topics_in_range(
    pool: &DbPool,
    start: &str,
    end: &str,
    limit: u32,
) -> Result<Vec<TopicPerformance>, StorageError> {
    let rows: Vec<(String, String, f64, i64)> = sqlx::query_as(
        "SELECT ot.topic, COALESCE(ot.topic, '') as format, \
                AVG(tp.performance_score) as avg_score, COUNT(*) as post_count \
         FROM tweet_performance tp \
         JOIN original_tweets ot ON ot.tweet_id = tp.tweet_id \
         WHERE ot.created_at >= ? AND ot.created_at < ? AND ot.topic IS NOT NULL \
         GROUP BY ot.topic \
         HAVING post_count >= 1 \
         ORDER BY avg_score DESC \
         LIMIT ?",
    )
    .bind(start)
    .bind(end)
    .bind(limit)
    .fetch_all(pool)
    .await
    .map_err(|e| StorageError::Query { source: e })?;

    Ok(rows
        .into_iter()
        .map(|r| TopicPerformance {
            topic: r.0,
            format: r.1,
            avg_score: r.2,
            post_count: r.3,
        })
        .collect())
}

/// Bottom topics by average performance score in a date range (minimum 3 posts).
pub async fn bottom_topics_in_range(
    pool: &DbPool,
    start: &str,
    end: &str,
    limit: u32,
) -> Result<Vec<TopicPerformance>, StorageError> {
    let rows: Vec<(String, String, f64, i64)> = sqlx::query_as(
        "SELECT ot.topic, COALESCE(ot.topic, '') as format, \
                AVG(tp.performance_score) as avg_score, COUNT(*) as post_count \
         FROM tweet_performance tp \
         JOIN original_tweets ot ON ot.tweet_id = tp.tweet_id \
         WHERE ot.created_at >= ? AND ot.created_at < ? AND ot.topic IS NOT NULL \
         GROUP BY ot.topic \
         HAVING post_count >= 3 \
         ORDER BY avg_score ASC \
         LIMIT ?",
    )
    .bind(start)
    .bind(end)
    .bind(limit)
    .fetch_all(pool)
    .await
    .map_err(|e| StorageError::Query { source: e })?;

    Ok(rows
        .into_iter()
        .map(|r| TopicPerformance {
            topic: r.0,
            format: r.1,
            avg_score: r.2,
            post_count: r.3,
        })
        .collect())
}

/// Top-performing content items (UNION of replies + tweets) in a date range.
pub async fn top_content_in_range(
    pool: &DbPool,
    start: &str,
    end: &str,
    limit: u32,
) -> Result<Vec<ContentHighlight>, StorageError> {
    let rows: Vec<(String, String, f64, i64, i64)> = sqlx::query_as(
        "SELECT content_type, content_preview, performance_score, likes, replies_received FROM ( \
            SELECT 'reply' as content_type, \
                   SUBSTR(rs.reply_content, 1, 120) as content_preview, \
                   rp.performance_score, rp.likes_received as likes, \
                   rp.replies_received, rs.created_at as posted_at \
            FROM reply_performance rp \
            JOIN replies_sent rs ON rs.reply_tweet_id = rp.reply_id \
            WHERE rs.created_at >= ? AND rs.created_at < ? \
            UNION ALL \
            SELECT 'tweet' as content_type, \
                   SUBSTR(ot.content, 1, 120) as content_preview, \
                   tp.performance_score, tp.likes_received as likes, \
                   tp.replies_received, ot.created_at as posted_at \
            FROM tweet_performance tp \
            JOIN original_tweets ot ON ot.tweet_id = tp.tweet_id \
            WHERE ot.created_at >= ? AND ot.created_at < ? \
         ) ORDER BY performance_score DESC LIMIT ?",
    )
    .bind(start)
    .bind(end)
    .bind(start)
    .bind(end)
    .bind(limit)
    .fetch_all(pool)
    .await
    .map_err(|e| StorageError::Query { source: e })?;

    Ok(rows
        .into_iter()
        .map(|r| ContentHighlight {
            content_type: r.0,
            content_preview: r.1,
            performance_score: r.2,
            likes: r.3,
            replies_received: r.4,
        })
        .collect())
}

/// Count distinct topics posted in a date range.
pub async fn distinct_topic_count(
    pool: &DbPool,
    start: &str,
    end: &str,
) -> Result<i64, StorageError> {
    let row: (i64,) = sqlx::query_as(
        "SELECT COUNT(DISTINCT topic) FROM original_tweets \
         WHERE created_at >= ? AND created_at < ? AND topic IS NOT NULL AND topic != ''",
    )
    .bind(start)
    .bind(end)
    .fetch_one(pool)
    .await
    .map_err(|e| StorageError::Query { source: e })?;

    Ok(row.0)
}

// ── Per-account variants ──────────────────────────────────────────────────────
//
// These mirror the global functions above but add `AND <table>.account_id = ?`
// to scope results to a single X account. Used by compute_report_for().

/// Count actions by type in a date range, scoped to one account.
pub async fn count_actions_in_range_for(
    pool: &DbPool,
    account_id: &str,
    start: &str,
    end: &str,
) -> Result<ActionCounts, StorageError> {
    let rows: Vec<(String, i64)> = sqlx::query_as(
        "SELECT action_type, COUNT(*) as cnt FROM action_log \
         WHERE created_at >= ? AND created_at < ? AND status = 'success' \
         AND account_id = ? \
         GROUP BY action_type",
    )
    .bind(start)
    .bind(end)
    .bind(account_id)
    .fetch_all(pool)
    .await
    .map_err(|e| StorageError::Query { source: e })?;

    let mut counts = ActionCounts::default();
    for (action_type, count) in rows {
        match action_type.as_str() {
            "reply" => counts.replies = count,
            "tweet" => counts.tweets = count,
            "thread" => counts.threads = count,
            "target_reply" => counts.target_replies = count,
            _ => {}
        }
    }
    Ok(counts)
}

/// Get the follower count at or before a given date, scoped to one account.
pub async fn get_follower_at_date_for(
    pool: &DbPool,
    account_id: &str,
    date: &str,
) -> Result<Option<i64>, StorageError> {
    let row: Option<(i64,)> = sqlx::query_as(
        "SELECT follower_count FROM follower_snapshots \
         WHERE snapshot_date <= ? AND account_id = ? \
         ORDER BY snapshot_date DESC LIMIT 1",
    )
    .bind(date)
    .bind(account_id)
    .fetch_optional(pool)
    .await
    .map_err(|e| StorageError::Query { source: e })?;

    Ok(row.map(|r| r.0))
}

/// Average reply performance score in a date range, scoped to one account.
pub async fn avg_reply_score_in_range_for(
    pool: &DbPool,
    account_id: &str,
    start: &str,
    end: &str,
) -> Result<f64, StorageError> {
    let row: (f64,) = sqlx::query_as(
        "SELECT COALESCE(AVG(rp.performance_score), 0.0) \
         FROM reply_performance rp \
         JOIN replies_sent rs ON rs.reply_tweet_id = rp.reply_id \
         WHERE rs.created_at >= ? AND rs.created_at < ? AND rs.account_id = ?",
    )
    .bind(start)
    .bind(end)
    .bind(account_id)
    .fetch_one(pool)
    .await
    .map_err(|e| StorageError::Query { source: e })?;

    Ok(row.0)
}

/// Average tweet performance score in a date range, scoped to one account.
pub async fn avg_tweet_score_in_range_for(
    pool: &DbPool,
    account_id: &str,
    start: &str,
    end: &str,
) -> Result<f64, StorageError> {
    let row: (f64,) = sqlx::query_as(
        "SELECT COALESCE(AVG(tp.performance_score), 0.0) \
         FROM tweet_performance tp \
         JOIN original_tweets ot ON ot.tweet_id = tp.tweet_id \
         WHERE ot.created_at >= ? AND ot.created_at < ? AND ot.account_id = ?",
    )
    .bind(start)
    .bind(end)
    .bind(account_id)
    .fetch_one(pool)
    .await
    .map_err(|e| StorageError::Query { source: e })?;

    Ok(row.0)
}

/// Reply acceptance rate scoped to one account.
pub async fn reply_acceptance_rate_for(
    pool: &DbPool,
    account_id: &str,
    start: &str,
    end: &str,
) -> Result<f64, StorageError> {
    let row: (i64, i64) = sqlx::query_as(
        "SELECT \
            COUNT(*) as total, \
            SUM(CASE WHEN rp.replies_received > 0 THEN 1 ELSE 0 END) as accepted \
         FROM replies_sent rs \
         JOIN reply_performance rp ON rp.reply_id = rs.reply_tweet_id \
         WHERE rs.created_at >= ? AND rs.created_at < ? AND rs.account_id = ?",
    )
    .bind(start)
    .bind(end)
    .bind(account_id)
    .fetch_one(pool)
    .await
    .map_err(|e| StorageError::Query { source: e })?;

    if row.0 == 0 {
        return Ok(0.0);
    }
    Ok(row.1 as f64 / row.0 as f64)
}

/// Top topics by performance score in a date range, scoped to one account.
pub async fn top_topics_in_range_for(
    pool: &DbPool,
    account_id: &str,
    start: &str,
    end: &str,
    limit: u32,
) -> Result<Vec<TopicPerformance>, StorageError> {
    let rows: Vec<(String, String, f64, i64)> = sqlx::query_as(
        "SELECT ot.topic, COALESCE(ot.topic, '') as format, \
                AVG(tp.performance_score) as avg_score, COUNT(*) as post_count \
         FROM tweet_performance tp \
         JOIN original_tweets ot ON ot.tweet_id = tp.tweet_id \
         WHERE ot.created_at >= ? AND ot.created_at < ? AND ot.topic IS NOT NULL \
         AND ot.account_id = ? \
         GROUP BY ot.topic \
         HAVING post_count >= 1 \
         ORDER BY avg_score DESC \
         LIMIT ?",
    )
    .bind(start)
    .bind(end)
    .bind(account_id)
    .bind(limit)
    .fetch_all(pool)
    .await
    .map_err(|e| StorageError::Query { source: e })?;

    Ok(rows
        .into_iter()
        .map(|r| TopicPerformance {
            topic: r.0,
            format: r.1,
            avg_score: r.2,
            post_count: r.3,
        })
        .collect())
}

/// Bottom topics by performance score in a date range, scoped to one account.
pub async fn bottom_topics_in_range_for(
    pool: &DbPool,
    account_id: &str,
    start: &str,
    end: &str,
    limit: u32,
) -> Result<Vec<TopicPerformance>, StorageError> {
    let rows: Vec<(String, String, f64, i64)> = sqlx::query_as(
        "SELECT ot.topic, COALESCE(ot.topic, '') as format, \
                AVG(tp.performance_score) as avg_score, COUNT(*) as post_count \
         FROM tweet_performance tp \
         JOIN original_tweets ot ON ot.tweet_id = tp.tweet_id \
         WHERE ot.created_at >= ? AND ot.created_at < ? AND ot.topic IS NOT NULL \
         AND ot.account_id = ? \
         GROUP BY ot.topic \
         HAVING post_count >= 3 \
         ORDER BY avg_score ASC \
         LIMIT ?",
    )
    .bind(start)
    .bind(end)
    .bind(account_id)
    .bind(limit)
    .fetch_all(pool)
    .await
    .map_err(|e| StorageError::Query { source: e })?;

    Ok(rows
        .into_iter()
        .map(|r| TopicPerformance {
            topic: r.0,
            format: r.1,
            avg_score: r.2,
            post_count: r.3,
        })
        .collect())
}

/// Top-performing content items in a date range, scoped to one account.
pub async fn top_content_in_range_for(
    pool: &DbPool,
    account_id: &str,
    start: &str,
    end: &str,
    limit: u32,
) -> Result<Vec<ContentHighlight>, StorageError> {
    let rows: Vec<(String, String, f64, i64, i64)> = sqlx::query_as(
        "SELECT content_type, content_preview, performance_score, likes, replies_received FROM ( \
            SELECT 'reply' as content_type, \
                   SUBSTR(rs.reply_content, 1, 120) as content_preview, \
                   rp.performance_score, rp.likes_received as likes, \
                   rp.replies_received, rs.created_at as posted_at \
            FROM reply_performance rp \
            JOIN replies_sent rs ON rs.reply_tweet_id = rp.reply_id \
            WHERE rs.created_at >= ? AND rs.created_at < ? AND rs.account_id = ? \
            UNION ALL \
            SELECT 'tweet' as content_type, \
                   SUBSTR(ot.content, 1, 120) as content_preview, \
                   tp.performance_score, tp.likes_received as likes, \
                   tp.replies_received, ot.created_at as posted_at \
            FROM tweet_performance tp \
            JOIN original_tweets ot ON ot.tweet_id = tp.tweet_id \
            WHERE ot.created_at >= ? AND ot.created_at < ? AND ot.account_id = ? \
         ) ORDER BY performance_score DESC LIMIT ?",
    )
    .bind(start)
    .bind(end)
    .bind(account_id)
    .bind(start)
    .bind(end)
    .bind(account_id)
    .bind(limit)
    .fetch_all(pool)
    .await
    .map_err(|e| StorageError::Query { source: e })?;

    Ok(rows
        .into_iter()
        .map(|r| ContentHighlight {
            content_type: r.0,
            content_preview: r.1,
            performance_score: r.2,
            likes: r.3,
            replies_received: r.4,
        })
        .collect())
}

/// Count distinct topics in a date range, scoped to one account.
pub async fn distinct_topic_count_for(
    pool: &DbPool,
    account_id: &str,
    start: &str,
    end: &str,
) -> Result<i64, StorageError> {
    let row: (i64,) = sqlx::query_as(
        "SELECT COUNT(DISTINCT topic) FROM original_tweets \
         WHERE created_at >= ? AND created_at < ? AND topic IS NOT NULL \
         AND topic != '' AND account_id = ?",
    )
    .bind(start)
    .bind(end)
    .bind(account_id)
    .fetch_one(pool)
    .await
    .map_err(|e| StorageError::Query { source: e })?;

    Ok(row.0)
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::storage::init_test_db;

    #[tokio::test]
    async fn count_actions_empty() {
        let pool = init_test_db().await.expect("init db");
        let counts = count_actions_in_range(&pool, "2026-01-01T00:00:00Z", "2026-12-31T23:59:59Z")
            .await
            .expect("count");
        assert_eq!(counts.replies, 0);
        assert_eq!(counts.tweets, 0);
    }

    #[tokio::test]
    async fn follower_at_date_empty() {
        let pool = init_test_db().await.expect("init db");
        let count = get_follower_at_date(&pool, "2026-12-31")
            .await
            .expect("get");
        assert!(count.is_none());
    }

    #[tokio::test]
    async fn avg_reply_score_empty() {
        let pool = init_test_db().await.expect("init db");
        let score = avg_reply_score_in_range(&pool, "2026-01-01T00:00:00Z", "2026-12-31T23:59:59Z")
            .await
            .expect("avg");
        assert!((score - 0.0).abs() < 0.01);
    }

    #[tokio::test]
    async fn reply_acceptance_rate_empty() {
        let pool = init_test_db().await.expect("init db");
        let rate = reply_acceptance_rate(&pool, "2026-01-01T00:00:00Z", "2026-12-31T23:59:59Z")
            .await
            .expect("rate");
        assert!((rate - 0.0).abs() < 0.01);
    }

    #[tokio::test]
    async fn top_topics_empty() {
        let pool = init_test_db().await.expect("init db");
        let topics = top_topics_in_range(&pool, "2026-01-01T00:00:00Z", "2026-12-31T23:59:59Z", 5)
            .await
            .expect("topics");
        assert!(topics.is_empty());
    }

    #[tokio::test]
    async fn top_content_empty() {
        let pool = init_test_db().await.expect("init db");
        let items = top_content_in_range(&pool, "2026-01-01T00:00:00Z", "2026-12-31T23:59:59Z", 5)
            .await
            .expect("content");
        assert!(items.is_empty());
    }

    #[tokio::test]
    async fn distinct_topic_count_empty() {
        let pool = init_test_db().await.expect("init db");
        let count = distinct_topic_count(&pool, "2026-01-01T00:00:00Z", "2026-12-31T23:59:59Z")
            .await
            .expect("count");
        assert_eq!(count, 0);
    }
}