2020-12-18 16:17:21 +00:00
|
|
|
#[macro_use]
|
|
|
|
extern crate diesel;
|
|
|
|
|
2020-12-18 17:27:25 +00:00
|
|
|
use chrono::NaiveDateTime;
|
2021-01-27 16:42:23 +00:00
|
|
|
use diesel::{
|
|
|
|
backend::Backend,
|
|
|
|
deserialize::FromSql,
|
|
|
|
serialize::{Output, ToSql},
|
|
|
|
sql_types::Text,
|
|
|
|
};
|
2021-03-02 12:41:48 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2021-01-27 16:42:23 +00:00
|
|
|
use std::{
|
|
|
|
fmt::{Display, Formatter},
|
|
|
|
io::Write,
|
|
|
|
};
|
2021-03-02 12:41:48 +00:00
|
|
|
use url::Url;
|
2020-12-18 17:27:25 +00:00
|
|
|
|
2020-12-18 16:17:21 +00:00
|
|
|
pub mod schema;
|
2020-12-18 17:27:25 +00:00
|
|
|
pub mod source;
|
|
|
|
|
2021-01-27 16:42:23 +00:00
|
|
|
#[repr(transparent)]
|
2021-03-02 12:41:48 +00:00
|
|
|
#[derive(Clone, PartialEq, Serialize, Deserialize, Debug, AsExpression, FromSqlRow)]
|
2021-01-27 16:42:23 +00:00
|
|
|
#[sql_type = "Text"]
|
2021-03-02 12:41:48 +00:00
|
|
|
pub struct DbUrl(Url);
|
2021-01-27 16:42:23 +00:00
|
|
|
|
2021-03-02 12:41:48 +00:00
|
|
|
impl<DB: Backend> ToSql<Text, DB> for DbUrl
|
2021-01-27 16:42:23 +00:00
|
|
|
where
|
|
|
|
String: ToSql<Text, DB>,
|
|
|
|
{
|
|
|
|
fn to_sql<W: Write>(&self, out: &mut Output<W, DB>) -> diesel::serialize::Result {
|
|
|
|
self.0.to_string().to_sql(out)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-02 12:41:48 +00:00
|
|
|
impl<DB: Backend> FromSql<Text, DB> for DbUrl
|
2021-01-27 16:42:23 +00:00
|
|
|
where
|
|
|
|
String: FromSql<Text, DB>,
|
|
|
|
{
|
|
|
|
fn from_sql(bytes: Option<&DB::RawValue>) -> diesel::deserialize::Result<Self> {
|
|
|
|
let str = String::from_sql(bytes)?;
|
2021-03-02 12:41:48 +00:00
|
|
|
Ok(DbUrl(Url::parse(&str)?))
|
2021-01-27 16:42:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-02 12:41:48 +00:00
|
|
|
impl DbUrl {
|
|
|
|
pub fn into_inner(self) -> Url {
|
2021-01-27 16:42:23 +00:00
|
|
|
self.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-02 12:41:48 +00:00
|
|
|
impl Display for DbUrl {
|
2021-01-27 16:42:23 +00:00
|
|
|
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
|
|
|
|
self.to_owned().into_inner().fmt(f)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-02 12:41:48 +00:00
|
|
|
impl From<DbUrl> for Url {
|
|
|
|
fn from(url: DbUrl) -> Self {
|
2021-01-27 16:42:23 +00:00
|
|
|
url.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-02 12:41:48 +00:00
|
|
|
impl From<Url> for DbUrl {
|
|
|
|
fn from(url: Url) -> Self {
|
|
|
|
DbUrl(url)
|
2021-01-27 16:42:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-21 16:30:34 +00:00
|
|
|
// TODO: can probably move this back to lemmy_db_queries
|
2020-12-18 17:27:25 +00:00
|
|
|
pub fn naive_now() -> NaiveDateTime {
|
|
|
|
chrono::prelude::Utc::now().naive_utc()
|
|
|
|
}
|