2022-10-27 09:24:07 +00:00
|
|
|
use crate::{
|
2023-07-13 14:12:01 +00:00
|
|
|
diesel::dsl::IntervalDsl,
|
2022-10-27 09:24:07 +00:00
|
|
|
newtypes::InstanceId,
|
2023-11-06 21:07:04 +00:00
|
|
|
schema::{
|
|
|
|
federation_allowlist,
|
|
|
|
federation_blocklist,
|
|
|
|
federation_queue_state,
|
|
|
|
instance,
|
|
|
|
local_site,
|
|
|
|
site,
|
|
|
|
},
|
|
|
|
source::{
|
|
|
|
federation_queue_state::FederationQueueState,
|
|
|
|
instance::{Instance, InstanceForm},
|
|
|
|
},
|
2023-08-24 15:27:00 +00:00
|
|
|
utils::{functions::lower, get_conn, naive_now, now, DbPool},
|
2022-10-27 09:24:07 +00:00
|
|
|
};
|
2023-07-13 14:12:01 +00:00
|
|
|
use diesel::{
|
2023-09-09 16:25:03 +00:00
|
|
|
dsl::{count_star, insert_into},
|
2023-07-13 14:12:01 +00:00
|
|
|
result::Error,
|
2023-08-24 15:27:00 +00:00
|
|
|
sql_types::{Nullable, Timestamptz},
|
2023-07-13 14:12:01 +00:00
|
|
|
ExpressionMethods,
|
2023-09-09 16:25:03 +00:00
|
|
|
NullableExpressionMethods,
|
2023-07-13 14:12:01 +00:00
|
|
|
QueryDsl,
|
2023-09-09 16:25:03 +00:00
|
|
|
SelectableHelper,
|
2023-07-13 14:12:01 +00:00
|
|
|
};
|
2023-07-11 13:09:59 +00:00
|
|
|
use diesel_async::RunQueryDsl;
|
2022-10-27 09:24:07 +00:00
|
|
|
|
|
|
|
impl Instance {
|
2023-07-11 13:09:59 +00:00
|
|
|
/// Attempt to read Instance column for the given domain. If it doesnt exist, insert a new one.
|
|
|
|
/// There is no need for update as the domain of an existing instance cant change.
|
|
|
|
pub async fn read_or_create(pool: &mut DbPool<'_>, domain_: String) -> Result<Self, Error> {
|
2023-03-01 02:36:57 +00:00
|
|
|
use crate::schema::instance::domain;
|
2023-07-11 13:09:59 +00:00
|
|
|
let conn = &mut get_conn(pool).await?;
|
|
|
|
|
2023-03-01 02:36:57 +00:00
|
|
|
// First try to read the instance row and return directly if found
|
|
|
|
let instance = instance::table
|
2023-08-22 15:10:21 +00:00
|
|
|
.filter(lower(domain).eq(&domain_.to_lowercase()))
|
2023-03-01 02:36:57 +00:00
|
|
|
.first::<Self>(conn)
|
|
|
|
.await;
|
|
|
|
match instance {
|
|
|
|
Ok(i) => Ok(i),
|
|
|
|
Err(diesel::NotFound) => {
|
|
|
|
// Instance not in database yet, insert it
|
|
|
|
let form = InstanceForm::builder()
|
|
|
|
.domain(domain_)
|
|
|
|
.updated(Some(naive_now()))
|
|
|
|
.build();
|
|
|
|
insert_into(instance::table)
|
|
|
|
.values(&form)
|
|
|
|
// Necessary because this method may be called concurrently for the same domain. This
|
|
|
|
// could be handled with a transaction, but nested transactions arent allowed
|
|
|
|
.on_conflict(instance::domain)
|
|
|
|
.do_update()
|
|
|
|
.set(&form)
|
|
|
|
.get_result::<Self>(conn)
|
|
|
|
.await
|
|
|
|
}
|
|
|
|
e => e,
|
|
|
|
}
|
2022-10-27 09:24:07 +00:00
|
|
|
}
|
2023-07-11 13:09:59 +00:00
|
|
|
pub async fn delete(pool: &mut DbPool<'_>, instance_id: InstanceId) -> Result<usize, Error> {
|
2022-11-09 10:05:00 +00:00
|
|
|
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
|
|
|
}
|
2023-07-13 14:12:01 +00:00
|
|
|
|
|
|
|
pub async fn read_all(pool: &mut DbPool<'_>) -> Result<Vec<Instance>, Error> {
|
|
|
|
let conn = &mut get_conn(pool).await?;
|
|
|
|
instance::table
|
2023-11-06 21:07:04 +00:00
|
|
|
.select(Self::as_select())
|
2023-07-13 14:12:01 +00:00
|
|
|
.get_results(conn)
|
|
|
|
.await
|
|
|
|
}
|
|
|
|
|
2023-03-01 02:36:57 +00:00
|
|
|
#[cfg(test)]
|
2023-07-11 13:09:59 +00:00
|
|
|
pub async fn delete_all(pool: &mut DbPool<'_>) -> Result<usize, Error> {
|
2022-11-09 10:05:00 +00:00
|
|
|
let conn = &mut get_conn(pool).await?;
|
|
|
|
diesel::delete(instance::table).execute(conn).await
|
2022-10-27 09:24:07 +00:00
|
|
|
}
|
2023-07-11 13:09:59 +00:00
|
|
|
pub async fn allowlist(pool: &mut DbPool<'_>) -> Result<Vec<Self>, Error> {
|
2022-11-09 10:05:00 +00:00
|
|
|
let conn = &mut get_conn(pool).await?;
|
2022-10-27 09:24:07 +00:00
|
|
|
instance::table
|
|
|
|
.inner_join(federation_allowlist::table)
|
2023-11-06 21:07:04 +00:00
|
|
|
.select(Self::as_select())
|
2023-02-18 14:36:12 +00:00
|
|
|
.get_results(conn)
|
2022-11-09 10:05:00 +00:00
|
|
|
.await
|
2022-10-27 09:24:07 +00:00
|
|
|
}
|
|
|
|
|
2023-07-11 13:09:59 +00:00
|
|
|
pub async fn blocklist(pool: &mut DbPool<'_>) -> Result<Vec<Self>, Error> {
|
2022-11-09 10:05:00 +00:00
|
|
|
let conn = &mut get_conn(pool).await?;
|
2022-10-27 09:24:07 +00:00
|
|
|
instance::table
|
|
|
|
.inner_join(federation_blocklist::table)
|
2023-11-06 21:07:04 +00:00
|
|
|
.select(Self::as_select())
|
2023-02-18 14:36:12 +00:00
|
|
|
.get_results(conn)
|
2022-11-09 10:05:00 +00:00
|
|
|
.await
|
2022-10-27 09:24:07 +00:00
|
|
|
}
|
|
|
|
|
2023-09-09 16:25:03 +00:00
|
|
|
/// returns a list of all instances, each with a flag of whether the instance is allowed or not and dead or not
|
|
|
|
/// ordered by id
|
2023-11-06 21:07:04 +00:00
|
|
|
pub async fn read_federated_with_blocked_and_dead(
|
2023-09-09 16:25:03 +00:00
|
|
|
pool: &mut DbPool<'_>,
|
|
|
|
) -> Result<Vec<(Self, bool, bool)>, Error> {
|
|
|
|
let conn = &mut get_conn(pool).await?;
|
|
|
|
let is_dead_expr = coalesce(instance::updated, instance::published).lt(now() - 3.days());
|
|
|
|
// this needs to be done in two steps because the meaning of the "blocked" column depends on the existence
|
|
|
|
// of any value at all in the allowlist. (so a normal join wouldn't work)
|
|
|
|
let use_allowlist = federation_allowlist::table
|
|
|
|
.select(count_star().gt(0))
|
|
|
|
.get_result::<bool>(conn)
|
|
|
|
.await?;
|
|
|
|
if use_allowlist {
|
|
|
|
instance::table
|
|
|
|
.left_join(federation_allowlist::table)
|
|
|
|
.select((
|
|
|
|
Self::as_select(),
|
Remove id column and use different primary key on some tables (#4093)
* post_saved
* fmt
* remove unique and not null
* put person_id first in primary key and remove index
* use post_saved.find
* change captcha_answer
* remove removal of not null
* comment_aggregates
* comment_like
* comment_saved
* aggregates
* remove "\"
* deduplicate site_aggregates
* person_post_aggregates
* community_moderator
* community_block
* community_person_ban
* custom_emoji_keyword
* federation allow/block list
* federation_queue_state
* instance_block
* local_site_rate_limit, local_user_language, login_token
* person_ban, person_block, person_follower, post_like, post_read, received_activity
* community_follower, community_language, site_language
* fmt
* image_upload
* remove unused newtypes
* remove more indexes
* use .find
* merge
* fix site_aggregates_site function
* fmt
* Primary keys dess (#17)
* Also order reports by oldest first (ref #4123) (#4129)
* Support signed fetch for federation (fixes #868) (#4125)
* Support signed fetch for federation (fixes #868)
* taplo
* add federation queue state to get_federated_instances api (#4104)
* add federation queue state to get_federated_instances api
* feature gate
* move retry sleep function
* move stuff around
* Add UI setting for collapsing bot comments. Fixes #3838 (#4098)
* Add UI setting for collapsing bot comments. Fixes #3838
* Fixing clippy check.
* Only keep sent and received activities for 7 days (fixes #4113, fixes #4110) (#4131)
* Only check auth secure on release mode. (#4127)
* Only check auth secure on release mode.
* Fixing wrong js-client.
* Adding is_debug_mode var.
* Fixing the desktop image on the README. (#4135)
* Delete dupes and add possibly missing unique constraint on person_aggregates.
* Fixing clippy lints.
---------
Co-authored-by: Nutomic <me@nutomic.com>
Co-authored-by: phiresky <phireskyde+git@gmail.com>
* fmt
* Update community_block.rs
* Update instance_block.rs
* Update person_block.rs
* Update person_block.rs
---------
Co-authored-by: Dessalines <dessalines@users.noreply.github.com>
Co-authored-by: Nutomic <me@nutomic.com>
Co-authored-by: phiresky <phireskyde+git@gmail.com>
2023-11-13 13:14:07 +00:00
|
|
|
federation_allowlist::instance_id.nullable().is_not_null(),
|
2023-09-09 16:25:03 +00:00
|
|
|
is_dead_expr,
|
|
|
|
))
|
|
|
|
.order_by(instance::id)
|
|
|
|
.get_results::<(Self, bool, bool)>(conn)
|
|
|
|
.await
|
|
|
|
} else {
|
|
|
|
instance::table
|
|
|
|
.left_join(federation_blocklist::table)
|
|
|
|
.select((
|
|
|
|
Self::as_select(),
|
Remove id column and use different primary key on some tables (#4093)
* post_saved
* fmt
* remove unique and not null
* put person_id first in primary key and remove index
* use post_saved.find
* change captcha_answer
* remove removal of not null
* comment_aggregates
* comment_like
* comment_saved
* aggregates
* remove "\"
* deduplicate site_aggregates
* person_post_aggregates
* community_moderator
* community_block
* community_person_ban
* custom_emoji_keyword
* federation allow/block list
* federation_queue_state
* instance_block
* local_site_rate_limit, local_user_language, login_token
* person_ban, person_block, person_follower, post_like, post_read, received_activity
* community_follower, community_language, site_language
* fmt
* image_upload
* remove unused newtypes
* remove more indexes
* use .find
* merge
* fix site_aggregates_site function
* fmt
* Primary keys dess (#17)
* Also order reports by oldest first (ref #4123) (#4129)
* Support signed fetch for federation (fixes #868) (#4125)
* Support signed fetch for federation (fixes #868)
* taplo
* add federation queue state to get_federated_instances api (#4104)
* add federation queue state to get_federated_instances api
* feature gate
* move retry sleep function
* move stuff around
* Add UI setting for collapsing bot comments. Fixes #3838 (#4098)
* Add UI setting for collapsing bot comments. Fixes #3838
* Fixing clippy check.
* Only keep sent and received activities for 7 days (fixes #4113, fixes #4110) (#4131)
* Only check auth secure on release mode. (#4127)
* Only check auth secure on release mode.
* Fixing wrong js-client.
* Adding is_debug_mode var.
* Fixing the desktop image on the README. (#4135)
* Delete dupes and add possibly missing unique constraint on person_aggregates.
* Fixing clippy lints.
---------
Co-authored-by: Nutomic <me@nutomic.com>
Co-authored-by: phiresky <phireskyde+git@gmail.com>
* fmt
* Update community_block.rs
* Update instance_block.rs
* Update person_block.rs
* Update person_block.rs
---------
Co-authored-by: Dessalines <dessalines@users.noreply.github.com>
Co-authored-by: Nutomic <me@nutomic.com>
Co-authored-by: phiresky <phireskyde+git@gmail.com>
2023-11-13 13:14:07 +00:00
|
|
|
federation_blocklist::instance_id.nullable().is_null(),
|
2023-09-09 16:25:03 +00:00
|
|
|
is_dead_expr,
|
|
|
|
))
|
|
|
|
.order_by(instance::id)
|
|
|
|
.get_results::<(Self, bool, bool)>(conn)
|
|
|
|
.await
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-06 21:07:04 +00:00
|
|
|
/// returns (instance, blocked, allowed, fed queue state) tuples
|
|
|
|
pub async fn read_all_with_fed_state(
|
|
|
|
pool: &mut DbPool<'_>,
|
|
|
|
) -> Result<Vec<(Self, Option<FederationQueueState>, bool, bool)>, Error> {
|
2022-11-09 10:05:00 +00:00
|
|
|
let conn = &mut get_conn(pool).await?;
|
2022-10-27 09:24:07 +00:00
|
|
|
instance::table
|
2023-07-27 10:12:18 +00:00
|
|
|
// omit instance representing the local site
|
|
|
|
.left_join(site::table.inner_join(local_site::table))
|
|
|
|
.filter(local_site::id.is_null())
|
2022-10-27 09:24:07 +00:00
|
|
|
.left_join(federation_blocklist::table)
|
2023-11-06 21:07:04 +00:00
|
|
|
.left_join(federation_allowlist::table)
|
|
|
|
.left_join(federation_queue_state::table)
|
|
|
|
.select((
|
|
|
|
Self::as_select(),
|
|
|
|
Option::<FederationQueueState>::as_select(),
|
Remove id column and use different primary key on some tables (#4093)
* post_saved
* fmt
* remove unique and not null
* put person_id first in primary key and remove index
* use post_saved.find
* change captcha_answer
* remove removal of not null
* comment_aggregates
* comment_like
* comment_saved
* aggregates
* remove "\"
* deduplicate site_aggregates
* person_post_aggregates
* community_moderator
* community_block
* community_person_ban
* custom_emoji_keyword
* federation allow/block list
* federation_queue_state
* instance_block
* local_site_rate_limit, local_user_language, login_token
* person_ban, person_block, person_follower, post_like, post_read, received_activity
* community_follower, community_language, site_language
* fmt
* image_upload
* remove unused newtypes
* remove more indexes
* use .find
* merge
* fix site_aggregates_site function
* fmt
* Primary keys dess (#17)
* Also order reports by oldest first (ref #4123) (#4129)
* Support signed fetch for federation (fixes #868) (#4125)
* Support signed fetch for federation (fixes #868)
* taplo
* add federation queue state to get_federated_instances api (#4104)
* add federation queue state to get_federated_instances api
* feature gate
* move retry sleep function
* move stuff around
* Add UI setting for collapsing bot comments. Fixes #3838 (#4098)
* Add UI setting for collapsing bot comments. Fixes #3838
* Fixing clippy check.
* Only keep sent and received activities for 7 days (fixes #4113, fixes #4110) (#4131)
* Only check auth secure on release mode. (#4127)
* Only check auth secure on release mode.
* Fixing wrong js-client.
* Adding is_debug_mode var.
* Fixing the desktop image on the README. (#4135)
* Delete dupes and add possibly missing unique constraint on person_aggregates.
* Fixing clippy lints.
---------
Co-authored-by: Nutomic <me@nutomic.com>
Co-authored-by: phiresky <phireskyde+git@gmail.com>
* fmt
* Update community_block.rs
* Update instance_block.rs
* Update person_block.rs
* Update person_block.rs
---------
Co-authored-by: Dessalines <dessalines@users.noreply.github.com>
Co-authored-by: Nutomic <me@nutomic.com>
Co-authored-by: phiresky <phireskyde+git@gmail.com>
2023-11-13 13:14:07 +00:00
|
|
|
federation_blocklist::instance_id.nullable().is_not_null(),
|
|
|
|
federation_allowlist::instance_id.nullable().is_not_null(),
|
2023-11-06 21:07:04 +00:00
|
|
|
))
|
2023-02-18 14:36:12 +00:00
|
|
|
.get_results(conn)
|
2022-11-09 10:05:00 +00:00
|
|
|
.await
|
2022-10-27 09:24:07 +00:00
|
|
|
}
|
|
|
|
}
|
2023-07-13 14:12:01 +00:00
|
|
|
|
2023-08-24 15:27:00 +00:00
|
|
|
sql_function! { fn coalesce(x: Nullable<Timestamptz>, y: Timestamptz) -> Timestamptz; }
|