mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-15 08:54:01 +00:00
5c6258390c
* Adding a way to GetComments for a community given its name only. * Adding getcomments to api docs. * A first pass at locally working isomorphic integration. * Testing out cargo-husky. * Testing a fail hook. * Revert "Testing a fail hook." This reverts commit0941cf1736
. * Moving server to top level, now that UI is gone. * Running cargo fmt using old way. * Adding nginx, fixing up docker-compose files, fixing docs. * Trying to re-add API tests. * Fixing prod dockerfile. * Redoing nightly fmt * Trying to fix private message api test. * Adding CommunityJoin, PostJoin instead of joins from GetComments, etc. - Fixes #1122 * Fixing fmt. * Fixing up docs. * Removing translations. * Adding apps / clients to readme. * Fixing main image. * Using new lemmy-isomorphic-ui with better javascript disabled. * Try to fix image uploads in federation test * Revert "Try to fix image uploads in federation test" This reverts commita2ddf2a90b
. * Fix post url federation * Adding some more tests, some still broken. * Don't need gitattributes anymore. * Update local federation test setup * Fixing tests. * Fixing travis build. * Fixing travis build, again. * Changing lemmy-isomorphic-ui to lemmy-ui * Error in travis build again. Co-authored-by: Felix Ableitner <me@nutomic.com>
513 lines
13 KiB
Rust
513 lines
13 KiB
Rust
use crate::limit_and_offset;
|
|
use diesel::{result::Error, *};
|
|
use serde::Serialize;
|
|
|
|
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, 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>,
|
|
page: Option<i64>,
|
|
limit: Option<i64>,
|
|
) -> Result<Vec<Self>, Error> {
|
|
use super::moderator_views::mod_remove_post_view::dsl::*;
|
|
let mut query = mod_remove_post_view.into_boxed();
|
|
|
|
let (limit, offset) = limit_and_offset(page, limit);
|
|
|
|
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, 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>,
|
|
page: Option<i64>,
|
|
limit: Option<i64>,
|
|
) -> Result<Vec<Self>, Error> {
|
|
use super::moderator_views::mod_lock_post_view::dsl::*;
|
|
let mut query = mod_lock_post_view.into_boxed();
|
|
|
|
let (limit, offset) = limit_and_offset(page, limit);
|
|
|
|
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_sticky_post_view (id) {
|
|
id -> Int4,
|
|
mod_user_id -> Int4,
|
|
post_id -> Int4,
|
|
stickied -> Nullable<Bool>,
|
|
when_ -> Timestamp,
|
|
mod_user_name -> Varchar,
|
|
post_name -> Varchar,
|
|
community_id -> Int4,
|
|
community_name -> Varchar,
|
|
}
|
|
}
|
|
|
|
#[derive(Queryable, Identifiable, PartialEq, Debug, Serialize, QueryableByName, Clone)]
|
|
#[table_name = "mod_sticky_post_view"]
|
|
pub struct ModStickyPostView {
|
|
pub id: i32,
|
|
pub mod_user_id: i32,
|
|
pub post_id: i32,
|
|
pub stickied: Option<bool>,
|
|
pub when_: chrono::NaiveDateTime,
|
|
pub mod_user_name: String,
|
|
pub post_name: String,
|
|
pub community_id: i32,
|
|
pub community_name: String,
|
|
}
|
|
|
|
impl ModStickyPostView {
|
|
pub fn list(
|
|
conn: &PgConnection,
|
|
from_community_id: Option<i32>,
|
|
from_mod_user_id: Option<i32>,
|
|
page: Option<i64>,
|
|
limit: Option<i64>,
|
|
) -> Result<Vec<Self>, Error> {
|
|
use super::moderator_views::mod_sticky_post_view::dsl::*;
|
|
let mut query = mod_sticky_post_view.into_boxed();
|
|
|
|
let (limit, offset) = limit_and_offset(page, limit);
|
|
|
|
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, 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>,
|
|
page: Option<i64>,
|
|
limit: Option<i64>,
|
|
) -> Result<Vec<Self>, Error> {
|
|
use super::moderator_views::mod_remove_comment_view::dsl::*;
|
|
let mut query = mod_remove_comment_view.into_boxed();
|
|
|
|
let (limit, offset) = limit_and_offset(page, limit);
|
|
|
|
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, 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>,
|
|
page: Option<i64>,
|
|
limit: Option<i64>,
|
|
) -> Result<Vec<Self>, Error> {
|
|
use super::moderator_views::mod_remove_community_view::dsl::*;
|
|
let mut query = mod_remove_community_view.into_boxed();
|
|
|
|
let (limit, offset) = limit_and_offset(page, limit);
|
|
|
|
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, 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>,
|
|
page: Option<i64>,
|
|
limit: Option<i64>,
|
|
) -> Result<Vec<Self>, Error> {
|
|
use super::moderator_views::mod_ban_from_community_view::dsl::*;
|
|
let mut query = mod_ban_from_community_view.into_boxed();
|
|
|
|
let (limit, offset) = limit_and_offset(page, limit);
|
|
|
|
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, 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>,
|
|
page: Option<i64>,
|
|
limit: Option<i64>,
|
|
) -> Result<Vec<Self>, Error> {
|
|
use super::moderator_views::mod_ban_view::dsl::*;
|
|
let mut query = mod_ban_view.into_boxed();
|
|
|
|
let (limit, offset) = limit_and_offset(page, limit);
|
|
|
|
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, 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>,
|
|
page: Option<i64>,
|
|
limit: Option<i64>,
|
|
) -> Result<Vec<Self>, Error> {
|
|
use super::moderator_views::mod_add_community_view::dsl::*;
|
|
let mut query = mod_add_community_view.into_boxed();
|
|
|
|
let (limit, offset) = limit_and_offset(page, limit);
|
|
|
|
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, 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>,
|
|
page: Option<i64>,
|
|
limit: Option<i64>,
|
|
) -> Result<Vec<Self>, Error> {
|
|
use super::moderator_views::mod_add_view::dsl::*;
|
|
let mut query = mod_add_view.into_boxed();
|
|
|
|
let (limit, offset) = limit_and_offset(page, limit);
|
|
|
|
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)
|
|
}
|
|
}
|