musket 0.13.2

Musket is a command line interface to send a URL to several destinations.
Documentation
use super::{Destination, DestinationError};
use chrono::prelude::*;
use libsql::Builder;

pub struct Turso {
    pub url: String,
    pub token: String,
}

impl From<libsql::Error> for DestinationError {
    fn from(e: libsql::Error) -> Self {
        DestinationError::Turso {
            message: format!("The url cannot be sent to Turso due to {}.", e),
        }
    }
}

impl Destination for Turso {
    async fn fire(&self, url: &str, tags: &[String]) -> Result<(), DestinationError> {
        let local: DateTime<Local> = Local::now();
        let created = format!("{}", local.format("%Y-%m-%d %H:%M:%S"));

        let turso_db_url = self.url.clone();
        let turso_db_token = self.token.clone();

        let db = Builder::new_remote(turso_db_url, turso_db_token)
            .build()
            .await?;

        let conn = db.connect()?;

        conn.execute(
            "INSERT INTO links (url, tags, created) VALUES (:url, :tags, :created)",
            libsql::named_params! { ":url": url, ":tags": tags.join(", "), ":created": created },
        )
        .await?;

        Ok(())
    }
}