diff --git a/server/lemmy_db/src/comment.rs b/server/lemmy_db/src/comment.rs index c462db1bb..76fa5ea03 100644 --- a/server/lemmy_db/src/comment.rs +++ b/server/lemmy_db/src/comment.rs @@ -1,5 +1,13 @@ -use super::{post::Post, *}; -use crate::schema::{comment, comment_like, comment_saved}; +use super::post::Post; +use crate::{ + naive_now, + schema::{comment, comment_like, comment_saved}, + Crud, + Likeable, + Saveable, +}; +use diesel::{dsl::*, result::Error, *}; +use serde::{Deserialize, Serialize}; use url::{ParseError, Url}; // WITH RECURSIVE MyTree AS ( @@ -249,7 +257,16 @@ impl Saveable for CommentSaved { #[cfg(test)] mod tests { - use crate::{comment::*, community::*, post::*, tests::establish_unpooled_connection, user::*}; + use crate::{ + comment::*, + community::*, + post::*, + tests::establish_unpooled_connection, + user::*, + Crud, + ListingType, + SortType, + }; #[test] fn test_crud() { diff --git a/server/lemmy_db/src/lib.rs b/server/lemmy_db/src/lib.rs index a5805ef95..bf7d00cab 100644 --- a/server/lemmy_db/src/lib.rs +++ b/server/lemmy_db/src/lib.rs @@ -14,7 +14,7 @@ pub extern crate sha2; pub extern crate strum; use chrono::NaiveDateTime; -use diesel::{dsl::*, result::Error, *}; +use diesel::{result::Error, *}; use regex::Regex; use serde::{Deserialize, Serialize}; use std::{env, env::VarError}; diff --git a/server/lemmy_db/src/password_reset_request.rs b/server/lemmy_db/src/password_reset_request.rs index f248f0b49..0b0587439 100644 --- a/server/lemmy_db/src/password_reset_request.rs +++ b/server/lemmy_db/src/password_reset_request.rs @@ -2,7 +2,7 @@ use crate::{ schema::{password_reset_request, password_reset_request::dsl::*}, Crud, }; -use diesel::{dsl::*, result::Error, *}; +use diesel::{dsl::*, result::Error, PgConnection, *}; use sha2::{Digest, Sha256}; #[derive(Queryable, Identifiable, PartialEq, Debug)] @@ -78,8 +78,14 @@ impl PasswordResetRequest { #[cfg(test)] mod tests { - use super::{super::user::*, *}; - use crate::{tests::establish_unpooled_connection, ListingType, SortType}; + use super::super::user::*; + use crate::{ + password_reset_request::PasswordResetRequest, + tests::establish_unpooled_connection, + Crud, + ListingType, + SortType, + }; #[test] fn test_crud() { diff --git a/server/lemmy_db/src/private_message.rs b/server/lemmy_db/src/private_message.rs index 4361fa900..be54b9b2e 100644 --- a/server/lemmy_db/src/private_message.rs +++ b/server/lemmy_db/src/private_message.rs @@ -121,7 +121,10 @@ impl PrivateMessage { } // TODO use this - pub fn upsert(conn: &PgConnection, private_message_form: &PrivateMessageForm) -> Result { + pub fn upsert( + conn: &PgConnection, + private_message_form: &PrivateMessageForm, + ) -> Result { use crate::schema::private_message::dsl::*; insert_into(private_message) .values(private_message_form) diff --git a/server/lemmy_db/src/schema.rs b/server/lemmy_db/src/schema.rs index a189dbced..c446edd9f 100644 --- a/server/lemmy_db/src/schema.rs +++ b/server/lemmy_db/src/schema.rs @@ -523,36 +523,36 @@ joinable!(user_mention -> comment (comment_id)); joinable!(user_mention -> user_ (recipient_id)); allow_tables_to_appear_in_same_query!( - activity, - category, - comment, - comment_aggregates_fast, - comment_like, - comment_saved, - community, - community_aggregates_fast, - community_follower, - community_moderator, - community_user_ban, - mod_add, - mod_add_community, - mod_ban, - mod_ban_from_community, - mod_lock_post, - mod_remove_comment, - mod_remove_community, - mod_remove_post, - mod_sticky_post, - password_reset_request, - post, - post_aggregates_fast, - post_like, - post_read, - post_saved, - private_message, - site, - user_, - user_ban, - user_fast, - user_mention, + activity, + category, + comment, + comment_aggregates_fast, + comment_like, + comment_saved, + community, + community_aggregates_fast, + community_follower, + community_moderator, + community_user_ban, + mod_add, + mod_add_community, + mod_ban, + mod_ban_from_community, + mod_lock_post, + mod_remove_comment, + mod_remove_community, + mod_remove_post, + mod_sticky_post, + password_reset_request, + post, + post_aggregates_fast, + post_like, + post_read, + post_saved, + private_message, + site, + user_, + user_ban, + user_fast, + user_mention, ); diff --git a/server/src/api/community.rs b/server/src/api/community.rs index a7b3b6c7c..763a9114f 100644 --- a/server/src/api/community.rs +++ b/server/src/api/community.rs @@ -1,6 +1,14 @@ -use super::*; use crate::{ - api::{is_admin, is_mod_or_admin, APIError, Perform}, + api::{ + check_slurs, + check_slurs_opt, + get_user_from_jwt, + get_user_from_jwt_opt, + is_admin, + is_mod_or_admin, + APIError, + Perform, + }, apub::ActorType, blocking, websocket::{ @@ -8,14 +16,22 @@ use crate::{ UserOperation, }, ConnectionId, + LemmyContext, + LemmyError, }; +use actix_web::web::Data; use anyhow::Context; use lemmy_db::{ comment::Comment, comment_view::CommentQueryBuilder, + community::*, + community_view::*, diesel_option_overwrite, + moderator::*, naive_now, post::Post, + site::*, + user_view::*, Bannable, Crud, Followable, diff --git a/server/src/api/mod.rs b/server/src/api/mod.rs index 5f8706e00..1b213d9f4 100644 --- a/server/src/api/mod.rs +++ b/server/src/api/mod.rs @@ -1,13 +1,10 @@ use crate::{api::claims::Claims, blocking, ConnectionId, DbPool, LemmyContext, LemmyError}; use actix_web::web::Data; use lemmy_db::{ - community::*, - community_view::*, - moderator::*, + community::Community, + community_view::CommunityUserBanView, post::Post, - site::*, - user::*, - user_view::*, + user::User_, Crud, }; use lemmy_utils::{slur_check, slurs_vec_to_str}; diff --git a/server/src/websocket/chat_server.rs b/server/src/websocket/chat_server.rs index 6ee22f8c7..92633c06c 100644 --- a/server/src/websocket/chat_server.rs +++ b/server/src/websocket/chat_server.rs @@ -1,6 +1,5 @@ -use super::*; use crate::{ - api::{comment::*, community::*, post::*, site::*, user::*, *}, + api::{comment::*, community::*, post::*, site::*, user::*, APIError}, rate_limit::RateLimit, websocket::{ handlers::{do_user_operation, to_json_string, Args}, @@ -15,10 +14,22 @@ use crate::{ PostId, UserId, }; +use actix::prelude::*; use anyhow::Context as acontext; use background_jobs::QueueHandle; +use diesel::{ + r2d2::{ConnectionManager, Pool}, + PgConnection, +}; use lemmy_utils::location_info; +use rand::rngs::ThreadRng; use reqwest::Client; +use serde::Serialize; +use serde_json::Value; +use std::{ + collections::{HashMap, HashSet}, + str::FromStr, +}; /// `ChatServer` manages chat rooms and responsible for coordinating chat /// session. diff --git a/server/src/websocket/handlers.rs b/server/src/websocket/handlers.rs index 812ef9215..6d195ab03 100644 --- a/server/src/websocket/handlers.rs +++ b/server/src/websocket/handlers.rs @@ -1,4 +1,3 @@ -use super::*; use crate::{ api::Perform, rate_limit::RateLimit, @@ -12,8 +11,12 @@ use crate::{ LemmyContext, LemmyError, }; +use actix::{Actor, Context, Handler, ResponseFuture}; use actix_web::web; use lemmy_db::naive_now; +use log::{error, info}; +use rand::Rng; +use serde::{Deserialize, Serialize}; pub(super) struct Args<'a> { pub(super) context: LemmyContext, diff --git a/server/src/websocket/messages.rs b/server/src/websocket/messages.rs index 41b0cbc61..1289017c6 100644 --- a/server/src/websocket/messages.rs +++ b/server/src/websocket/messages.rs @@ -1,6 +1,5 @@ -use super::*; use crate::{ - api::{comment::*, post::*}, + api::{comment::CommentResponse, post::PostResponse}, websocket::UserOperation, CommunityId, ConnectionId, @@ -8,6 +7,8 @@ use crate::{ PostId, UserId, }; +use actix::{prelude::*, Recipient}; +use serde::{Deserialize, Serialize}; /// Chat server sends this messages to session #[derive(Message)] diff --git a/server/src/websocket/mod.rs b/server/src/websocket/mod.rs index 8bf8766da..b0441819e 100644 --- a/server/src/websocket/mod.rs +++ b/server/src/websocket/mod.rs @@ -2,20 +2,6 @@ pub mod chat_server; pub mod handlers; pub mod messages; -use actix::prelude::*; -use diesel::{ - r2d2::{ConnectionManager, Pool}, - PgConnection, -}; -use log::{error, info}; -use rand::{rngs::ThreadRng, Rng}; -use serde::{Deserialize, Serialize}; -use serde_json::Value; -use std::{ - collections::{HashMap, HashSet}, - str::FromStr, -}; - #[derive(EnumString, ToString, Debug, Clone)] pub enum UserOperation { Login,