2019-04-15 23:12:06 +00:00
|
|
|
extern crate diesel;
|
|
|
|
use diesel::*;
|
|
|
|
use diesel::result::Error;
|
|
|
|
use serde::{Deserialize, Serialize};
|
2019-04-17 18:30:13 +00:00
|
|
|
use {limit_and_offset};
|
2019-04-15 23:12:06 +00:00
|
|
|
|
|
|
|
table! {
|
|
|
|
mod_remove_post_view (id) {
|
|
|
|
id -> Int4,
|
|
|
|
mod_user_id -> Int4,
|
|
|
|
post_id -> Int4,
|
|
|
|
reason -> Nullable<Text>,
|
|
|
|
removed -> Nullable<Bool>,
|
|
|
|
when_ -> Timestamp,
|
|
|
|
mod_user_name -> Varchar,
|
|
|
|
post_name -> Varchar,
|
|
|
|
community_id -> Int4,
|
|
|
|
community_name -> Varchar,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize,QueryableByName,Clone)]
|
|
|
|
#[table_name="mod_remove_post_view"]
|
|
|
|
pub struct ModRemovePostView {
|
|
|
|
pub id: i32,
|
|
|
|
pub mod_user_id: i32,
|
|
|
|
pub post_id: i32,
|
|
|
|
pub reason: Option<String>,
|
|
|
|
pub removed: Option<bool>,
|
|
|
|
pub when_: chrono::NaiveDateTime,
|
|
|
|
pub mod_user_name: String,
|
|
|
|
pub post_name: String,
|
|
|
|
pub community_id: i32,
|
|
|
|
pub community_name: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ModRemovePostView {
|
|
|
|
pub fn list(conn: &PgConnection,
|
|
|
|
from_community_id: Option<i32>,
|
|
|
|
from_mod_user_id: Option<i32>,
|
2019-04-17 18:30:13 +00:00
|
|
|
page: Option<i64>,
|
2019-04-15 23:12:06 +00:00
|
|
|
limit: Option<i64>,
|
2019-04-17 18:30:13 +00:00
|
|
|
) -> Result<Vec<Self>, Error> {
|
2019-05-03 01:34:21 +00:00
|
|
|
use super::moderator_views::mod_remove_post_view::dsl::*;
|
2019-04-15 23:12:06 +00:00
|
|
|
let mut query = mod_remove_post_view.into_boxed();
|
|
|
|
|
2019-04-17 18:30:13 +00:00
|
|
|
let (limit, offset) = limit_and_offset(page, limit);
|
2019-04-15 23:12:06 +00:00
|
|
|
|
|
|
|
if let Some(from_community_id) = from_community_id {
|
|
|
|
query = query.filter(community_id.eq(from_community_id));
|
|
|
|
};
|
|
|
|
|
|
|
|
if let Some(from_mod_user_id) = from_mod_user_id {
|
|
|
|
query = query.filter(mod_user_id.eq(from_mod_user_id));
|
|
|
|
};
|
|
|
|
|
|
|
|
query.limit(limit).offset(offset).order_by(when_.desc()).load::<Self>(conn)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
|
|
|
mod_lock_post_view (id) {
|
|
|
|
id -> Int4,
|
|
|
|
mod_user_id -> Int4,
|
|
|
|
post_id -> Int4,
|
|
|
|
locked -> Nullable<Bool>,
|
|
|
|
when_ -> Timestamp,
|
|
|
|
mod_user_name -> Varchar,
|
|
|
|
post_name -> Varchar,
|
|
|
|
community_id -> Int4,
|
|
|
|
community_name -> Varchar,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#[derive(Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize,QueryableByName,Clone)]
|
|
|
|
#[table_name="mod_lock_post_view"]
|
|
|
|
pub struct ModLockPostView {
|
|
|
|
pub id: i32,
|
|
|
|
pub mod_user_id: i32,
|
|
|
|
pub post_id: i32,
|
|
|
|
pub locked: Option<bool>,
|
|
|
|
pub when_: chrono::NaiveDateTime,
|
|
|
|
pub mod_user_name: String,
|
|
|
|
pub post_name: String,
|
|
|
|
pub community_id: i32,
|
|
|
|
pub community_name: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ModLockPostView {
|
|
|
|
pub fn list(conn: &PgConnection,
|
|
|
|
from_community_id: Option<i32>,
|
|
|
|
from_mod_user_id: Option<i32>,
|
2019-04-17 18:30:13 +00:00
|
|
|
page: Option<i64>,
|
2019-04-15 23:12:06 +00:00
|
|
|
limit: Option<i64>,
|
2019-04-17 18:30:13 +00:00
|
|
|
) -> Result<Vec<Self>, Error> {
|
2019-05-03 01:34:21 +00:00
|
|
|
use super::moderator_views::mod_lock_post_view::dsl::*;
|
2019-04-15 23:12:06 +00:00
|
|
|
let mut query = mod_lock_post_view.into_boxed();
|
|
|
|
|
2019-04-17 18:30:13 +00:00
|
|
|
let (limit, offset) = limit_and_offset(page, limit);
|
2019-04-15 23:12:06 +00:00
|
|
|
|
|
|
|
if let Some(from_community_id) = from_community_id {
|
|
|
|
query = query.filter(community_id.eq(from_community_id));
|
|
|
|
};
|
|
|
|
|
|
|
|
if let Some(from_mod_user_id) = from_mod_user_id {
|
|
|
|
query = query.filter(mod_user_id.eq(from_mod_user_id));
|
|
|
|
};
|
|
|
|
|
|
|
|
query.limit(limit).offset(offset).order_by(when_.desc()).load::<Self>(conn)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
|
|
|
mod_remove_comment_view (id) {
|
|
|
|
id -> Int4,
|
|
|
|
mod_user_id -> Int4,
|
|
|
|
comment_id -> Int4,
|
|
|
|
reason -> Nullable<Text>,
|
|
|
|
removed -> Nullable<Bool>,
|
|
|
|
when_ -> Timestamp,
|
|
|
|
mod_user_name -> Varchar,
|
|
|
|
comment_user_id -> Int4,
|
|
|
|
comment_user_name -> Varchar,
|
|
|
|
comment_content -> Text,
|
|
|
|
post_id -> Int4,
|
|
|
|
post_name -> Varchar,
|
|
|
|
community_id -> Int4,
|
|
|
|
community_name -> Varchar,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize,QueryableByName,Clone)]
|
|
|
|
#[table_name="mod_remove_comment_view"]
|
|
|
|
pub struct ModRemoveCommentView {
|
|
|
|
pub id: i32,
|
|
|
|
pub mod_user_id: i32,
|
|
|
|
pub comment_id: i32,
|
|
|
|
pub reason: Option<String>,
|
|
|
|
pub removed: Option<bool>,
|
|
|
|
pub when_: chrono::NaiveDateTime,
|
|
|
|
pub mod_user_name: String,
|
|
|
|
pub comment_user_id: i32,
|
|
|
|
pub comment_user_name: String,
|
|
|
|
pub comment_content: String,
|
|
|
|
pub post_id: i32,
|
|
|
|
pub post_name: String,
|
|
|
|
pub community_id: i32,
|
|
|
|
pub community_name: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ModRemoveCommentView {
|
|
|
|
pub fn list(conn: &PgConnection,
|
|
|
|
from_community_id: Option<i32>,
|
|
|
|
from_mod_user_id: Option<i32>,
|
2019-04-17 18:30:13 +00:00
|
|
|
page: Option<i64>,
|
2019-04-15 23:12:06 +00:00
|
|
|
limit: Option<i64>,
|
2019-04-17 18:30:13 +00:00
|
|
|
) -> Result<Vec<Self>, Error> {
|
2019-05-03 01:34:21 +00:00
|
|
|
use super::moderator_views::mod_remove_comment_view::dsl::*;
|
2019-04-15 23:12:06 +00:00
|
|
|
let mut query = mod_remove_comment_view.into_boxed();
|
|
|
|
|
2019-04-17 18:30:13 +00:00
|
|
|
let (limit, offset) = limit_and_offset(page, limit);
|
2019-04-15 23:12:06 +00:00
|
|
|
|
|
|
|
if let Some(from_community_id) = from_community_id {
|
|
|
|
query = query.filter(community_id.eq(from_community_id));
|
|
|
|
};
|
|
|
|
|
|
|
|
if let Some(from_mod_user_id) = from_mod_user_id {
|
|
|
|
query = query.filter(mod_user_id.eq(from_mod_user_id));
|
|
|
|
};
|
|
|
|
|
|
|
|
query.limit(limit).offset(offset).order_by(when_.desc()).load::<Self>(conn)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
|
|
|
mod_remove_community_view (id) {
|
|
|
|
id -> Int4,
|
|
|
|
mod_user_id -> Int4,
|
|
|
|
community_id -> Int4,
|
|
|
|
reason -> Nullable<Text>,
|
|
|
|
removed -> Nullable<Bool>,
|
|
|
|
expires -> Nullable<Timestamp>,
|
|
|
|
when_ -> Timestamp,
|
|
|
|
mod_user_name -> Varchar,
|
|
|
|
community_name -> Varchar,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize,QueryableByName,Clone)]
|
|
|
|
#[table_name="mod_remove_community_view"]
|
|
|
|
pub struct ModRemoveCommunityView {
|
|
|
|
pub id: i32,
|
|
|
|
pub mod_user_id: i32,
|
|
|
|
pub community_id: i32,
|
|
|
|
pub reason: Option<String>,
|
|
|
|
pub removed: Option<bool>,
|
|
|
|
pub expires: Option<chrono::NaiveDateTime>,
|
|
|
|
pub when_: chrono::NaiveDateTime,
|
|
|
|
pub mod_user_name: String,
|
|
|
|
pub community_name: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ModRemoveCommunityView {
|
|
|
|
pub fn list(conn: &PgConnection,
|
|
|
|
from_mod_user_id: Option<i32>,
|
2019-04-17 18:30:13 +00:00
|
|
|
page: Option<i64>,
|
2019-04-15 23:12:06 +00:00
|
|
|
limit: Option<i64>,
|
2019-04-17 18:30:13 +00:00
|
|
|
) -> Result<Vec<Self>, Error> {
|
2019-05-03 01:34:21 +00:00
|
|
|
use super::moderator_views::mod_remove_community_view::dsl::*;
|
2019-04-15 23:12:06 +00:00
|
|
|
let mut query = mod_remove_community_view.into_boxed();
|
|
|
|
|
2019-04-17 18:30:13 +00:00
|
|
|
let (limit, offset) = limit_and_offset(page, limit);
|
2019-04-15 23:12:06 +00:00
|
|
|
|
|
|
|
if let Some(from_mod_user_id) = from_mod_user_id {
|
|
|
|
query = query.filter(mod_user_id.eq(from_mod_user_id));
|
|
|
|
};
|
|
|
|
|
|
|
|
query.limit(limit).offset(offset).order_by(when_.desc()).load::<Self>(conn)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
table! {
|
|
|
|
mod_ban_from_community_view (id) {
|
|
|
|
id -> Int4,
|
|
|
|
mod_user_id -> Int4,
|
|
|
|
other_user_id -> Int4,
|
|
|
|
community_id -> Int4,
|
|
|
|
reason -> Nullable<Text>,
|
|
|
|
banned -> Nullable<Bool>,
|
|
|
|
expires -> Nullable<Timestamp>,
|
|
|
|
when_ -> Timestamp,
|
|
|
|
mod_user_name -> Varchar,
|
|
|
|
other_user_name -> Varchar,
|
|
|
|
community_name -> Varchar,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize,QueryableByName,Clone)]
|
|
|
|
#[table_name="mod_ban_from_community_view"]
|
|
|
|
pub struct ModBanFromCommunityView {
|
|
|
|
pub id: i32,
|
|
|
|
pub mod_user_id: i32,
|
|
|
|
pub other_user_id: i32,
|
|
|
|
pub community_id: i32,
|
|
|
|
pub reason: Option<String>,
|
|
|
|
pub banned: Option<bool>,
|
|
|
|
pub expires: Option<chrono::NaiveDateTime>,
|
|
|
|
pub when_: chrono::NaiveDateTime,
|
|
|
|
pub mod_user_name: String,
|
|
|
|
pub other_user_name: String,
|
|
|
|
pub community_name: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ModBanFromCommunityView {
|
|
|
|
pub fn list(conn: &PgConnection,
|
|
|
|
from_community_id: Option<i32>,
|
|
|
|
from_mod_user_id: Option<i32>,
|
2019-04-17 18:30:13 +00:00
|
|
|
page: Option<i64>,
|
2019-04-15 23:12:06 +00:00
|
|
|
limit: Option<i64>,
|
2019-04-17 18:30:13 +00:00
|
|
|
) -> Result<Vec<Self>, Error> {
|
2019-05-03 01:34:21 +00:00
|
|
|
use super::moderator_views::mod_ban_from_community_view::dsl::*;
|
2019-04-15 23:12:06 +00:00
|
|
|
let mut query = mod_ban_from_community_view.into_boxed();
|
|
|
|
|
2019-04-17 18:30:13 +00:00
|
|
|
let (limit, offset) = limit_and_offset(page, limit);
|
2019-04-15 23:12:06 +00:00
|
|
|
|
|
|
|
if let Some(from_community_id) = from_community_id {
|
|
|
|
query = query.filter(community_id.eq(from_community_id));
|
|
|
|
};
|
|
|
|
|
|
|
|
if let Some(from_mod_user_id) = from_mod_user_id {
|
|
|
|
query = query.filter(mod_user_id.eq(from_mod_user_id));
|
|
|
|
};
|
|
|
|
|
|
|
|
query.limit(limit).offset(offset).order_by(when_.desc()).load::<Self>(conn)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
|
|
|
mod_ban_view (id) {
|
|
|
|
id -> Int4,
|
|
|
|
mod_user_id -> Int4,
|
|
|
|
other_user_id -> Int4,
|
|
|
|
reason -> Nullable<Text>,
|
|
|
|
banned -> Nullable<Bool>,
|
|
|
|
expires -> Nullable<Timestamp>,
|
|
|
|
when_ -> Timestamp,
|
|
|
|
mod_user_name -> Varchar,
|
|
|
|
other_user_name -> Varchar,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize,QueryableByName,Clone)]
|
|
|
|
#[table_name="mod_ban_view"]
|
|
|
|
pub struct ModBanView {
|
|
|
|
pub id: i32,
|
|
|
|
pub mod_user_id: i32,
|
|
|
|
pub other_user_id: i32,
|
|
|
|
pub reason: Option<String>,
|
|
|
|
pub banned: Option<bool>,
|
|
|
|
pub expires: Option<chrono::NaiveDateTime>,
|
|
|
|
pub when_: chrono::NaiveDateTime,
|
|
|
|
pub mod_user_name: String,
|
|
|
|
pub other_user_name: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ModBanView {
|
|
|
|
pub fn list(conn: &PgConnection,
|
|
|
|
from_mod_user_id: Option<i32>,
|
2019-04-17 18:30:13 +00:00
|
|
|
page: Option<i64>,
|
2019-04-15 23:12:06 +00:00
|
|
|
limit: Option<i64>,
|
2019-04-17 18:30:13 +00:00
|
|
|
) -> Result<Vec<Self>, Error> {
|
2019-05-03 01:34:21 +00:00
|
|
|
use super::moderator_views::mod_ban_view::dsl::*;
|
2019-04-15 23:12:06 +00:00
|
|
|
let mut query = mod_ban_view.into_boxed();
|
|
|
|
|
2019-04-17 18:30:13 +00:00
|
|
|
let (limit, offset) = limit_and_offset(page, limit);
|
2019-04-15 23:12:06 +00:00
|
|
|
|
|
|
|
if let Some(from_mod_user_id) = from_mod_user_id {
|
|
|
|
query = query.filter(mod_user_id.eq(from_mod_user_id));
|
|
|
|
};
|
|
|
|
|
|
|
|
query.limit(limit).offset(offset).order_by(when_.desc()).load::<Self>(conn)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
|
|
|
mod_add_community_view (id) {
|
|
|
|
id -> Int4,
|
|
|
|
mod_user_id -> Int4,
|
|
|
|
other_user_id -> Int4,
|
|
|
|
community_id -> Int4,
|
|
|
|
removed -> Nullable<Bool>,
|
|
|
|
when_ -> Timestamp,
|
|
|
|
mod_user_name -> Varchar,
|
|
|
|
other_user_name -> Varchar,
|
|
|
|
community_name -> Varchar,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize,QueryableByName,Clone)]
|
|
|
|
#[table_name="mod_add_community_view"]
|
|
|
|
pub struct ModAddCommunityView {
|
|
|
|
pub id: i32,
|
|
|
|
pub mod_user_id: i32,
|
|
|
|
pub other_user_id: i32,
|
|
|
|
pub community_id: i32,
|
|
|
|
pub removed: Option<bool>,
|
|
|
|
pub when_: chrono::NaiveDateTime,
|
|
|
|
pub mod_user_name: String,
|
|
|
|
pub other_user_name: String,
|
|
|
|
pub community_name: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ModAddCommunityView {
|
|
|
|
pub fn list(conn: &PgConnection,
|
|
|
|
from_community_id: Option<i32>,
|
|
|
|
from_mod_user_id: Option<i32>,
|
2019-04-17 18:30:13 +00:00
|
|
|
page: Option<i64>,
|
2019-04-15 23:12:06 +00:00
|
|
|
limit: Option<i64>,
|
2019-04-17 18:30:13 +00:00
|
|
|
) -> Result<Vec<Self>, Error> {
|
2019-05-03 01:34:21 +00:00
|
|
|
use super::moderator_views::mod_add_community_view::dsl::*;
|
2019-04-15 23:12:06 +00:00
|
|
|
let mut query = mod_add_community_view.into_boxed();
|
|
|
|
|
2019-04-17 18:30:13 +00:00
|
|
|
let (limit, offset) = limit_and_offset(page, limit);
|
2019-04-15 23:12:06 +00:00
|
|
|
|
|
|
|
if let Some(from_community_id) = from_community_id {
|
|
|
|
query = query.filter(community_id.eq(from_community_id));
|
|
|
|
};
|
|
|
|
|
|
|
|
if let Some(from_mod_user_id) = from_mod_user_id {
|
|
|
|
query = query.filter(mod_user_id.eq(from_mod_user_id));
|
|
|
|
};
|
|
|
|
|
|
|
|
query.limit(limit).offset(offset).order_by(when_.desc()).load::<Self>(conn)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
|
|
|
mod_add_view (id) {
|
|
|
|
id -> Int4,
|
|
|
|
mod_user_id -> Int4,
|
|
|
|
other_user_id -> Int4,
|
|
|
|
removed -> Nullable<Bool>,
|
|
|
|
when_ -> Timestamp,
|
|
|
|
mod_user_name -> Varchar,
|
|
|
|
other_user_name -> Varchar,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize,QueryableByName,Clone)]
|
|
|
|
#[table_name="mod_add_view"]
|
|
|
|
pub struct ModAddView {
|
|
|
|
pub id: i32,
|
|
|
|
pub mod_user_id: i32,
|
|
|
|
pub other_user_id: i32,
|
|
|
|
pub removed: Option<bool>,
|
|
|
|
pub when_: chrono::NaiveDateTime,
|
|
|
|
pub mod_user_name: String,
|
|
|
|
pub other_user_name: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ModAddView {
|
|
|
|
pub fn list(conn: &PgConnection,
|
|
|
|
from_mod_user_id: Option<i32>,
|
2019-04-17 18:30:13 +00:00
|
|
|
page: Option<i64>,
|
2019-04-15 23:12:06 +00:00
|
|
|
limit: Option<i64>,
|
2019-04-17 18:30:13 +00:00
|
|
|
) -> Result<Vec<Self>, Error> {
|
2019-05-03 01:34:21 +00:00
|
|
|
use super::moderator_views::mod_add_view::dsl::*;
|
2019-04-15 23:12:06 +00:00
|
|
|
let mut query = mod_add_view.into_boxed();
|
|
|
|
|
2019-04-17 18:30:13 +00:00
|
|
|
let (limit, offset) = limit_and_offset(page, limit);
|
2019-04-15 23:12:06 +00:00
|
|
|
|
|
|
|
if let Some(from_mod_user_id) = from_mod_user_id {
|
|
|
|
query = query.filter(mod_user_id.eq(from_mod_user_id));
|
|
|
|
};
|
|
|
|
|
|
|
|
query.limit(limit).offset(offset).order_by(when_.desc()).load::<Self>(conn)
|
|
|
|
}
|
|
|
|
}
|