2019-04-03 23:01:20 +00:00
|
|
|
extern crate diesel;
|
|
|
|
use diesel::*;
|
|
|
|
use diesel::result::Error;
|
|
|
|
use serde::{Deserialize, Serialize};
|
2019-04-10 06:19:12 +00:00
|
|
|
use {SortType};
|
2019-04-03 23:01:20 +00:00
|
|
|
|
|
|
|
table! {
|
|
|
|
community_view (id) {
|
|
|
|
id -> Int4,
|
|
|
|
name -> Varchar,
|
|
|
|
title -> Varchar,
|
|
|
|
description -> Nullable<Text>,
|
|
|
|
category_id -> Int4,
|
|
|
|
creator_id -> Int4,
|
|
|
|
published -> Timestamp,
|
|
|
|
updated -> Nullable<Timestamp>,
|
|
|
|
creator_name -> Varchar,
|
|
|
|
category_name -> Varchar,
|
|
|
|
number_of_subscribers -> BigInt,
|
|
|
|
number_of_posts -> BigInt,
|
2019-04-04 20:00:19 +00:00
|
|
|
number_of_comments -> BigInt,
|
2019-04-05 06:26:38 +00:00
|
|
|
user_id -> Nullable<Int4>,
|
|
|
|
subscribed -> Nullable<Bool>,
|
2019-04-03 23:01:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-04 20:53:32 +00:00
|
|
|
table! {
|
|
|
|
community_moderator_view (id) {
|
|
|
|
id -> Int4,
|
|
|
|
community_id -> Int4,
|
|
|
|
user_id -> Int4,
|
|
|
|
published -> Timestamp,
|
|
|
|
user_name -> Varchar,
|
|
|
|
community_name -> Varchar,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
table! {
|
|
|
|
community_follower_view (id) {
|
|
|
|
id -> Int4,
|
|
|
|
community_id -> Int4,
|
|
|
|
user_id -> Int4,
|
|
|
|
published -> Timestamp,
|
|
|
|
user_name -> Varchar,
|
|
|
|
community_name -> Varchar,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-03 23:01:20 +00:00
|
|
|
#[derive(Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize,QueryableByName,Clone)]
|
|
|
|
#[table_name="community_view"]
|
|
|
|
pub struct CommunityView {
|
|
|
|
pub id: i32,
|
|
|
|
pub name: String,
|
|
|
|
pub title: String,
|
|
|
|
pub description: Option<String>,
|
|
|
|
pub category_id: i32,
|
|
|
|
pub creator_id: i32,
|
|
|
|
pub published: chrono::NaiveDateTime,
|
|
|
|
pub updated: Option<chrono::NaiveDateTime>,
|
|
|
|
pub creator_name: String,
|
|
|
|
pub category_name: String,
|
|
|
|
pub number_of_subscribers: i64,
|
2019-04-04 20:00:19 +00:00
|
|
|
pub number_of_posts: i64,
|
2019-04-05 06:26:38 +00:00
|
|
|
pub number_of_comments: i64,
|
|
|
|
pub user_id: Option<i32>,
|
|
|
|
pub subscribed: Option<bool>,
|
2019-04-03 23:01:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl CommunityView {
|
2019-04-05 06:26:38 +00:00
|
|
|
pub fn read(conn: &PgConnection, from_community_id: i32, from_user_id: Option<i32>) -> Result<Self, Error> {
|
2019-04-03 23:01:20 +00:00
|
|
|
use actions::community_view::community_view::dsl::*;
|
2019-04-05 06:26:38 +00:00
|
|
|
|
|
|
|
let mut query = community_view.into_boxed();
|
|
|
|
|
|
|
|
query = query.filter(id.eq(from_community_id));
|
|
|
|
|
|
|
|
// The view lets you pass a null user_id, if you're not logged in
|
|
|
|
if let Some(from_user_id) = from_user_id {
|
|
|
|
query = query.filter(user_id.eq(from_user_id));
|
|
|
|
} else {
|
|
|
|
query = query.filter(user_id.is_null());
|
|
|
|
};
|
|
|
|
|
|
|
|
query.first::<Self>(conn)
|
2019-04-03 23:01:20 +00:00
|
|
|
}
|
|
|
|
|
2019-04-10 06:19:12 +00:00
|
|
|
pub fn list(conn: &PgConnection, from_user_id: Option<i32>, sort: SortType, limit: Option<i64>) -> Result<Vec<Self>, Error> {
|
2019-04-03 23:01:20 +00:00
|
|
|
use actions::community_view::community_view::dsl::*;
|
2019-04-05 06:26:38 +00:00
|
|
|
let mut query = community_view.into_boxed();
|
|
|
|
|
2019-04-10 06:19:12 +00:00
|
|
|
|
|
|
|
|
2019-04-05 06:26:38 +00:00
|
|
|
// The view lets you pass a null user_id, if you're not logged in
|
2019-04-10 06:19:12 +00:00
|
|
|
|
|
|
|
match sort {
|
|
|
|
SortType::New => query = query.order_by(published.desc()).filter(user_id.is_null()),
|
|
|
|
SortType::TopAll => {
|
|
|
|
match from_user_id {
|
|
|
|
Some(from_user_id) => query = query.filter(user_id.eq(from_user_id)).order_by((subscribed.desc(), number_of_subscribers.desc())),
|
|
|
|
None => query = query.order_by(number_of_subscribers.desc()).filter(user_id.is_null())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => ()
|
|
|
|
};
|
|
|
|
|
|
|
|
if let Some(limit) = limit {
|
|
|
|
query = query.limit(limit);
|
2019-04-05 06:26:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
query.load::<Self>(conn)
|
2019-04-03 23:01:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-04 20:53:32 +00:00
|
|
|
|
|
|
|
#[derive(Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize,QueryableByName,Clone)]
|
|
|
|
#[table_name="community_moderator_view"]
|
|
|
|
pub struct CommunityModeratorView {
|
|
|
|
pub id: i32,
|
|
|
|
pub community_id: i32,
|
|
|
|
pub user_id: i32,
|
|
|
|
pub published: chrono::NaiveDateTime,
|
|
|
|
pub user_name : String,
|
|
|
|
pub community_name: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl CommunityModeratorView {
|
|
|
|
pub fn for_community(conn: &PgConnection, from_community_id: i32) -> Result<Vec<Self>, Error> {
|
|
|
|
use actions::community_view::community_moderator_view::dsl::*;
|
|
|
|
community_moderator_view.filter(community_id.eq(from_community_id)).load::<Self>(conn)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn for_user(conn: &PgConnection, from_user_id: i32) -> Result<Vec<Self>, Error> {
|
|
|
|
use actions::community_view::community_moderator_view::dsl::*;
|
|
|
|
community_moderator_view.filter(user_id.eq(from_user_id)).load::<Self>(conn)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-05 19:14:54 +00:00
|
|
|
#[derive(Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize,QueryableByName,Clone)]
|
|
|
|
#[table_name="community_follower_view"]
|
|
|
|
pub struct CommunityFollowerView {
|
|
|
|
pub id: i32,
|
|
|
|
pub community_id: i32,
|
|
|
|
pub user_id: i32,
|
|
|
|
pub published: chrono::NaiveDateTime,
|
|
|
|
pub user_name : String,
|
|
|
|
pub community_name: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl CommunityFollowerView {
|
|
|
|
pub fn for_community(conn: &PgConnection, from_community_id: i32) -> Result<Vec<Self>, Error> {
|
|
|
|
use actions::community_view::community_follower_view::dsl::*;
|
|
|
|
community_follower_view.filter(community_id.eq(from_community_id)).load::<Self>(conn)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn for_user(conn: &PgConnection, from_user_id: i32) -> Result<Vec<Self>, Error> {
|
|
|
|
use actions::community_view::community_follower_view::dsl::*;
|
|
|
|
community_follower_view.filter(user_id.eq(from_user_id)).load::<Self>(conn)
|
|
|
|
}
|
|
|
|
}
|