This commit is contained in:
parent
151576df14
commit
4ede8e16e8
1 changed files with 22 additions and 2 deletions
|
@ -8,6 +8,26 @@ use serde_json::json;
|
||||||
use sqlx::prelude::FromRow;
|
use sqlx::prelude::FromRow;
|
||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
|
|
||||||
|
pub trait LogAndIgnore {
|
||||||
|
fn log_and_ignore(self, msg: &str);
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<T, E: std::fmt::Debug> LogAndIgnore for Result<T, E> {
|
||||||
|
/// Handles the result by ignoring and logging it if it contains an error.
|
||||||
|
///
|
||||||
|
/// If the result is `Ok`, does nothing.
|
||||||
|
/// If the result is `Err(e)`
|
||||||
|
/// logs the message provided (`msg`) along with the error.
|
||||||
|
fn log_and_ignore(self, msg: &str) {
|
||||||
|
match self {
|
||||||
|
Ok(_) => {}
|
||||||
|
Err(e) => {
|
||||||
|
log::error!("{msg} : {:?}", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Debug, Clone, Serialize, Deserialize, FromRow)]
|
#[derive(Debug, Clone, Serialize, Deserialize, FromRow)]
|
||||||
pub struct YouTubeMeta {
|
pub struct YouTubeMeta {
|
||||||
pub id: String,
|
pub id: String,
|
||||||
|
@ -132,7 +152,7 @@ impl Video {
|
||||||
.bind(cat)
|
.bind(cat)
|
||||||
.execute(&mut *tx)
|
.execute(&mut *tx)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.log_and_ignore("Category mapping already exists");
|
||||||
}
|
}
|
||||||
|
|
||||||
if let Some(tags) = meta.tags() {
|
if let Some(tags) = meta.tags() {
|
||||||
|
@ -142,7 +162,7 @@ impl Video {
|
||||||
.bind(&tag)
|
.bind(&tag)
|
||||||
.execute(&mut *tx)
|
.execute(&mut *tx)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.log_and_ignore("YT Tag mapping already exists");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue