]> Untitled Git - lemmy.git/blobdiff - crates/db_views_moderator/src/admin_purge_comment_view.rs
Make functions work with both connection and pool (#3420)
[lemmy.git] / crates / db_views_moderator / src / admin_purge_comment_view.rs
index d9edaa1043a314e02b1736f24b738a15c2d1aeaf..ccfc2892a909a42a8102342392e87bed02cd184d 100644 (file)
@@ -12,19 +12,15 @@ use diesel_async::RunQueryDsl;
 use lemmy_db_schema::{
   newtypes::PersonId,
   schema::{admin_purge_comment, person, post},
-  source::{
-    moderator::AdminPurgeComment,
-    person::{Person, PersonSafe},
-    post::Post,
-  },
-  traits::{ToSafe, ViewToVec},
+  source::{moderator::AdminPurgeComment, person::Person, post::Post},
+  traits::JoinView,
   utils::{get_conn, limit_and_offset, DbPool},
 };
 
-type AdminPurgeCommentViewTuple = (AdminPurgeComment, Option<PersonSafe>, Post);
+type AdminPurgeCommentViewTuple = (AdminPurgeComment, Option<Person>, Post);
 
 impl AdminPurgeCommentView {
-  pub async fn list(pool: &DbPool, params: ModlogListParams) -> Result<Vec<Self>, Error> {
+  pub async fn list(pool: &mut DbPool<'_>, params: ModlogListParams) -> Result<Vec<Self>, Error> {
     let conn = &mut get_conn(pool).await?;
     let admin_person_id_join = params.mod_person_id.unwrap_or(PersonId(-1));
     let show_mod_names = !params.hide_modlog_names;
@@ -39,7 +35,7 @@ impl AdminPurgeCommentView {
       .inner_join(post::table)
       .select((
         admin_purge_comment::all_columns,
-        Person::safe_columns_tuple().nullable(),
+        person::all_columns.nullable(),
         post::all_columns,
       ))
       .into_boxed();
@@ -57,21 +53,18 @@ impl AdminPurgeCommentView {
       .load::<AdminPurgeCommentViewTuple>(conn)
       .await?;
 
-    let results = Self::from_tuple_to_vec(res);
+    let results = res.into_iter().map(Self::from_tuple).collect();
     Ok(results)
   }
 }
 
-impl ViewToVec for AdminPurgeCommentView {
-  type DbTuple = AdminPurgeCommentViewTuple;
-  fn from_tuple_to_vec(items: Vec<Self::DbTuple>) -> Vec<Self> {
-    items
-      .into_iter()
-      .map(|a| Self {
-        admin_purge_comment: a.0,
-        admin: a.1,
-        post: a.2,
-      })
-      .collect::<Vec<Self>>()
+impl JoinView for AdminPurgeCommentView {
+  type JoinTuple = AdminPurgeCommentViewTuple;
+  fn from_tuple(a: Self::JoinTuple) -> Self {
+    Self {
+      admin_purge_comment: a.0,
+      admin: a.1,
+      post: a.2,
+    }
   }
 }