2022-10-06 18:27:58 +00:00
|
|
|
use crate::{
|
|
|
|
newtypes::{DbUrl, SiteId},
|
2022-11-09 10:05:00 +00:00
|
|
|
schema::site::dsl::*,
|
2022-10-06 18:27:58 +00:00
|
|
|
source::{actor_language::SiteLanguage, site::*},
|
|
|
|
traits::Crud,
|
2022-11-09 10:05:00 +00:00
|
|
|
utils::{get_conn, DbPool},
|
2022-10-06 18:27:58 +00:00
|
|
|
};
|
2022-11-09 10:05:00 +00:00
|
|
|
use diesel::{dsl::*, result::Error, ExpressionMethods, QueryDsl};
|
|
|
|
use diesel_async::RunQueryDsl;
|
2022-02-07 19:23:12 +00:00
|
|
|
use url::Url;
|
2019-12-11 20:21:47 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
#[async_trait]
|
2021-08-17 18:04:58 +00:00
|
|
|
impl Crud for Site {
|
2022-10-27 09:24:07 +00:00
|
|
|
type InsertForm = SiteInsertForm;
|
|
|
|
type UpdateForm = SiteUpdateForm;
|
2022-10-06 18:27:58 +00:00
|
|
|
type IdType = SiteId;
|
2019-12-11 20:21:47 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
async fn read(pool: &DbPool, _site_id: SiteId) -> Result<Self, Error> {
|
|
|
|
let conn = &mut get_conn(pool).await?;
|
|
|
|
site.first::<Self>(conn).await
|
|
|
|
}
|
2022-10-27 09:24:07 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
async fn create(pool: &DbPool, form: &Self::InsertForm) -> Result<Self, Error> {
|
|
|
|
let conn = &mut get_conn(pool).await?;
|
2022-10-06 18:27:58 +00:00
|
|
|
let site_ = insert_into(site)
|
2022-10-27 09:24:07 +00:00
|
|
|
.values(form)
|
|
|
|
.on_conflict(actor_id)
|
|
|
|
.do_update()
|
|
|
|
.set(form)
|
2022-11-09 10:05:00 +00:00
|
|
|
.get_result::<Self>(conn)
|
|
|
|
.await?;
|
2022-10-06 18:27:58 +00:00
|
|
|
|
|
|
|
// initialize with all languages
|
2022-11-09 10:05:00 +00:00
|
|
|
SiteLanguage::update(pool, vec![], &site_).await?;
|
2022-10-06 18:27:58 +00:00
|
|
|
Ok(site_)
|
2019-12-11 20:21:47 +00:00
|
|
|
}
|
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
async fn update(
|
|
|
|
pool: &DbPool,
|
2022-10-27 09:24:07 +00:00
|
|
|
site_id: SiteId,
|
|
|
|
new_site: &Self::UpdateForm,
|
|
|
|
) -> Result<Self, Error> {
|
2022-11-09 10:05:00 +00:00
|
|
|
let conn = &mut get_conn(pool).await?;
|
2019-12-11 20:21:47 +00:00
|
|
|
diesel::update(site.find(site_id))
|
|
|
|
.set(new_site)
|
|
|
|
.get_result::<Self>(conn)
|
2022-11-09 10:05:00 +00:00
|
|
|
.await
|
2019-12-11 20:21:47 +00:00
|
|
|
}
|
2022-10-06 18:27:58 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
async fn delete(pool: &DbPool, site_id: SiteId) -> Result<usize, Error> {
|
|
|
|
let conn = &mut get_conn(pool).await?;
|
|
|
|
diesel::delete(site.find(site_id)).execute(conn).await
|
2020-12-20 05:09:20 +00:00
|
|
|
}
|
2019-12-11 20:21:47 +00:00
|
|
|
}
|
2020-08-05 16:03:46 +00:00
|
|
|
|
2021-10-16 13:33:38 +00:00
|
|
|
impl Site {
|
2022-11-09 10:05:00 +00:00
|
|
|
pub async fn read_from_apub_id(pool: &DbPool, object_id: Url) -> Result<Option<Self>, Error> {
|
|
|
|
let conn = &mut get_conn(pool).await?;
|
2022-02-07 19:23:12 +00:00
|
|
|
let object_id: DbUrl = object_id.into();
|
|
|
|
Ok(
|
|
|
|
site
|
|
|
|
.filter(actor_id.eq(object_id))
|
|
|
|
.first::<Site>(conn)
|
2022-11-09 10:05:00 +00:00
|
|
|
.await
|
2022-02-07 19:23:12 +00:00
|
|
|
.ok()
|
|
|
|
.map(Into::into),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-10-27 09:24:07 +00:00
|
|
|
// TODO this needs fixed
|
2022-11-09 10:05:00 +00:00
|
|
|
pub async fn read_remote_sites(pool: &DbPool) -> Result<Vec<Self>, Error> {
|
|
|
|
let conn = &mut get_conn(pool).await?;
|
|
|
|
site.order_by(id).offset(1).get_results::<Self>(conn).await
|
2020-12-20 01:10:47 +00:00
|
|
|
}
|
2020-08-05 16:03:46 +00:00
|
|
|
}
|