2022-10-27 09:24:07 +00:00
|
|
|
use crate::{
|
|
|
|
newtypes::InstanceId,
|
|
|
|
schema::{federation_allowlist, federation_blocklist, instance},
|
|
|
|
source::instance::{Instance, InstanceForm},
|
2022-11-09 10:05:00 +00:00
|
|
|
utils::{get_conn, naive_now, DbPool},
|
2022-10-27 09:24:07 +00:00
|
|
|
};
|
2022-11-19 04:33:54 +00:00
|
|
|
use diesel::{dsl::insert_into, result::Error, ExpressionMethods, QueryDsl};
|
2022-11-09 10:05:00 +00:00
|
|
|
use diesel_async::{AsyncPgConnection, RunQueryDsl};
|
2022-10-27 09:24:07 +00:00
|
|
|
use url::Url;
|
|
|
|
|
|
|
|
impl Instance {
|
2022-11-09 10:05:00 +00:00
|
|
|
async fn create_from_form_conn(
|
|
|
|
conn: &mut AsyncPgConnection,
|
|
|
|
form: &InstanceForm,
|
|
|
|
) -> Result<Self, Error> {
|
2022-10-27 09:24:07 +00:00
|
|
|
// Do upsert on domain name conflict
|
|
|
|
insert_into(instance::table)
|
|
|
|
.values(form)
|
|
|
|
.on_conflict(instance::domain)
|
|
|
|
.do_update()
|
|
|
|
.set(form)
|
|
|
|
.get_result::<Self>(conn)
|
2022-11-09 10:05:00 +00:00
|
|
|
.await
|
2022-10-27 09:24:07 +00:00
|
|
|
}
|
2022-11-09 10:05:00 +00:00
|
|
|
pub async fn create(pool: &DbPool, domain: &str) -> Result<Self, Error> {
|
|
|
|
let conn = &mut get_conn(pool).await?;
|
|
|
|
Self::create_conn(conn, domain).await
|
|
|
|
}
|
|
|
|
pub async fn create_from_actor_id(pool: &DbPool, actor_id: &Url) -> Result<Self, Error> {
|
2023-02-16 04:05:14 +00:00
|
|
|
let domain = actor_id.host_str().expect("actor id missing a domain");
|
2022-11-09 10:05:00 +00:00
|
|
|
Self::create(pool, domain).await
|
|
|
|
}
|
|
|
|
pub async fn create_conn(conn: &mut AsyncPgConnection, domain: &str) -> Result<Self, Error> {
|
2022-10-27 09:24:07 +00:00
|
|
|
let form = InstanceForm {
|
|
|
|
domain: domain.to_string(),
|
|
|
|
updated: Some(naive_now()),
|
|
|
|
};
|
2022-11-09 10:05:00 +00:00
|
|
|
Self::create_from_form_conn(conn, &form).await
|
2022-10-27 09:24:07 +00:00
|
|
|
}
|
2022-11-09 10:05:00 +00:00
|
|
|
pub async fn delete(pool: &DbPool, instance_id: InstanceId) -> Result<usize, Error> {
|
|
|
|
let conn = &mut get_conn(pool).await?;
|
|
|
|
diesel::delete(instance::table.find(instance_id))
|
|
|
|
.execute(conn)
|
|
|
|
.await
|
2022-10-27 09:24:07 +00:00
|
|
|
}
|
2022-11-09 10:05:00 +00:00
|
|
|
pub async fn delete_all(pool: &DbPool) -> Result<usize, Error> {
|
|
|
|
let conn = &mut get_conn(pool).await?;
|
|
|
|
diesel::delete(instance::table).execute(conn).await
|
2022-10-27 09:24:07 +00:00
|
|
|
}
|
2022-11-09 10:05:00 +00:00
|
|
|
pub async fn allowlist(pool: &DbPool) -> Result<Vec<String>, Error> {
|
|
|
|
let conn = &mut get_conn(pool).await?;
|
2022-10-27 09:24:07 +00:00
|
|
|
instance::table
|
|
|
|
.inner_join(federation_allowlist::table)
|
|
|
|
.select(instance::domain)
|
|
|
|
.load::<String>(conn)
|
2022-11-09 10:05:00 +00:00
|
|
|
.await
|
2022-10-27 09:24:07 +00:00
|
|
|
}
|
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
pub async fn blocklist(pool: &DbPool) -> Result<Vec<String>, Error> {
|
|
|
|
let conn = &mut get_conn(pool).await?;
|
2022-10-27 09:24:07 +00:00
|
|
|
instance::table
|
|
|
|
.inner_join(federation_blocklist::table)
|
|
|
|
.select(instance::domain)
|
|
|
|
.load::<String>(conn)
|
2022-11-09 10:05:00 +00:00
|
|
|
.await
|
2022-10-27 09:24:07 +00:00
|
|
|
}
|
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
pub async fn linked(pool: &DbPool) -> Result<Vec<String>, Error> {
|
|
|
|
let conn = &mut get_conn(pool).await?;
|
2022-10-27 09:24:07 +00:00
|
|
|
instance::table
|
|
|
|
.left_join(federation_blocklist::table)
|
|
|
|
.filter(federation_blocklist::id.is_null())
|
|
|
|
.select(instance::domain)
|
|
|
|
.load::<String>(conn)
|
2022-11-09 10:05:00 +00:00
|
|
|
.await
|
2022-10-27 09:24:07 +00:00
|
|
|
}
|
|
|
|
}
|