p.*,
(select name from user_ where p.creator_id = user_.id) as creator_name,
(select name from community where p.community_id = community.id) as community_name,
+ (select removed from community c where p.community_id = c.id) as community_removed,
(select count(*) from comment where comment.post_id = p.id) as number_of_comments,
coalesce(sum(pl.score), 0) as score,
count (case when pl.score = 1 then 1 else null end) as upvotes,
updated -> Nullable<Timestamp>,
creator_name -> Varchar,
community_name -> Varchar,
+ community_removed -> Bool,
number_of_comments -> BigInt,
score -> BigInt,
upvotes -> BigInt,
pub updated: Option<chrono::NaiveDateTime>,
pub creator_name: String,
pub community_name: String,
+ pub community_removed: bool,
pub number_of_comments: i64,
pub score: i64,
pub upvotes: i64,
.order_by(score.desc())
};
-
- // TODO make sure community removed isn't fetched either
-
query = query
.limit(limit)
.offset(offset)
- .filter(removed.eq(false));
+ .filter(removed.eq(false))
+ .filter(community_removed.eq(false));
query.load::<Self>(conn)
}
removed: false,
locked: false,
community_name: community_name.to_owned(),
+ community_removed: false,
number_of_comments: 0,
score: 1,
upvotes: 1,
creator_name: user_name.to_owned(),
community_id: inserted_community.id,
community_name: community_name.to_owned(),
+ community_removed: false,
number_of_comments: 0,
score: 1,
upvotes: 1,
pub struct GetCommunityResponse {
op: String,
community: CommunityView,
- moderators: Vec<CommunityModeratorView>
+ moderators: Vec<CommunityModeratorView>,
+ admins: Vec<UserView>,
}
#[derive(Serialize, Deserialize)]
}
};
+ let admins = UserView::admins(&conn)?;
+
// Return the jwt
Ok(
serde_json::to_string(
&GetCommunityResponse {
op: self.op_type().to_string(),
community: community_view,
- moderators: moderators
+ moderators: moderators,
+ admins: admins,
}
)?
)
}
// Verify its a mod
- let moderator_view = CommunityModeratorView::for_community(&conn, self.edit_id)?;
- let mod_ids: Vec<i32> = moderator_view.into_iter().map(|m| m.user_id).collect();
- if !mod_ids.contains(&user_id) {
- return Err(self.error("Incorrect creator."))?
- };
+ let mut editors: Vec<i32> = Vec::new();
+ editors.append(
+ &mut CommunityModeratorView::for_community(&conn, self.edit_id)
+ ?
+ .into_iter()
+ .map(|m| m.user_id)
+ .collect()
+ );
+ editors.append(
+ &mut UserView::admins(&conn)
+ ?
+ .into_iter()
+ .map(|a| a.id)
+ .collect()
+ );
+ if !editors.contains(&user_id) {
+ return Err(self.error("Not allowed to edit community"))?
+ }
let community_form = CommunityForm {
name: self.name.to_owned(),
return UserService.Instance.user && this.props.node.comment.creator_id == UserService.Instance.user.id;
}
- get canMod(): boolean {
- let adminsThenMods = this.props.admins.map(a => a.id)
- .concat(this.props.moderators.map(m => m.user_id));
-
- return canMod(UserService.Instance.user, adminsThenMods, this.props.node.comment.creator_id);
- }
-
get isMod(): boolean {
return this.props.moderators && isMod(this.props.moderators.map(m => m.user_id), this.props.node.comment.creator_id);
}
return this.props.admins && isMod(this.props.admins.map(a => a.id), this.props.node.comment.creator_id);
}
+ get canMod(): boolean {
+ let adminsThenMods = this.props.admins.map(a => a.id)
+ .concat(this.props.moderators.map(m => m.user_id));
+
+ return canMod(UserService.Instance.user, adminsThenMods, this.props.node.comment.creator_id);
+ }
+
get canAdmin(): boolean {
return this.props.admins && canMod(UserService.Instance.user, this.props.admins.map(a => a.id), this.props.node.comment.creator_id);
}
import { Component } from 'inferno';
import { Subscription } from "rxjs";
import { retryWhen, delay, take } from 'rxjs/operators';
-import { UserOperation, Community as CommunityI, GetCommunityResponse, CommunityResponse, CommunityUser} from '../interfaces';
+import { UserOperation, Community as CommunityI, GetCommunityResponse, CommunityResponse, CommunityUser, UserView } from '../interfaces';
import { WebSocketService } from '../services';
import { PostListings } from './post-listings';
import { Sidebar } from './sidebar';
community: CommunityI;
communityId: number;
moderators: Array<CommunityUser>;
+ admins: Array<UserView>;
loading: boolean;
}
number_of_subscribers: null,
number_of_posts: null,
number_of_comments: null,
- published: null
+ published: null,
+ removed: null,
},
moderators: [],
+ admins: [],
communityId: Number(this.props.match.params.id),
loading: true
}
<PostListings communityId={this.state.communityId} />
</div>
<div class="col-12 col-md-3">
- <Sidebar community={this.state.community} moderators={this.state.moderators} />
+ <Sidebar
+ community={this.state.community}
+ moderators={this.state.moderators}
+ admins={this.state.admins}
+ />
</div>
</div>
}
let res: GetCommunityResponse = msg;
this.state.community = res.community;
this.state.moderators = res.moderators;
+ this.state.admins = res.admins;
this.state.loading = false;
this.setState(this.state);
} else if (op == UserOperation.EditCommunity) {
return UserService.Instance.user && this.props.post.creator_id == UserService.Instance.user.id;
}
+ get isMod(): boolean {
+ return this.props.moderators && isMod(this.props.moderators.map(m => m.user_id), this.props.post.creator_id);
+ }
+
+ get isAdmin(): boolean {
+ return this.props.admins && isMod(this.props.admins.map(a => a.id), this.props.post.creator_id);
+ }
+
get canMod(): boolean {
if (this.props.editable) {
} else return false;
}
- get isMod(): boolean {
- return this.props.moderators && isMod(this.props.moderators.map(m => m.user_id), this.props.post.creator_id);
- }
-
- get isAdmin(): boolean {
- return this.props.admins && isMod(this.props.admins.map(a => a.id), this.props.post.creator_id);
- }
-
- get canAdmin(): boolean {
- return this.props.admins && canMod(UserService.Instance.user, this.props.admins.map(a => a.id), this.props.post.creator_id);
- }
-
handlePostLike(i: PostListing) {
let form: CreatePostLikeForm = {
sidebar() {
return (
<div class="sticky-top">
- <Sidebar community={this.state.community} moderators={this.state.moderators} />
+ <Sidebar
+ community={this.state.community}
+ moderators={this.state.moderators}
+ admins={this.state.admins}
+ />
</div>
);
}
import { Component, linkEvent } from 'inferno';
import { Link } from 'inferno-router';
-import { Community, CommunityUser, FollowCommunityForm, CommunityForm as CommunityFormI } from '../interfaces';
+import { Community, CommunityUser, FollowCommunityForm, CommunityForm as CommunityFormI, UserView } from '../interfaces';
import { WebSocketService, UserService } from '../services';
import { mdToHtml, getUnixTime } from '../utils';
import { CommunityForm } from './community-form';
interface SidebarProps {
community: Community;
moderators: Array<CommunityUser>;
+ admins: Array<UserView>;
}
interface SidebarState {
}
</h5>
<Link className="text-muted" to={`/community/${community.id}`}>/f/{community.name}</Link>
- {community.am_mod &&
- <ul class="list-inline mb-1 text-muted small font-weight-bold">
- <li className="list-inline-item">
- <span class="pointer" onClick={linkEvent(this, this.handleEditClick)}>edit</span>
- </li>
- {this.amCreator &&
+ <ul class="list-inline mb-1 text-muted small font-weight-bold">
+ {this.canMod &&
+ <>
<li className="list-inline-item">
- {/* <span class="pointer" onClick={linkEvent(this, this.handleDeleteClick)}>delete</span> */}
+ <span class="pointer" onClick={linkEvent(this, this.handleEditClick)}>edit</span>
</li>
- }
+ {this.amCreator &&
+ <li className="list-inline-item">
+ {/* <span class="pointer" onClick={linkEvent(this, this.handleDeleteClick)}>delete</span> */}
+ </li>
+ }
+ </>
+ }
+ {this.canAdmin &&
<li className="list-inline-item">
{!this.props.community.removed ?
<span class="pointer" onClick={linkEvent(this, this.handleModRemoveShow)}>remove</span> :
<span class="pointer" onClick={linkEvent(this, this.handleModRemoveSubmit)}>restore</span>
}
</li>
- </ul>
- }
+
+ }
+ </ul>
{this.state.showRemoveDialog &&
<form onSubmit={linkEvent(this, this.handleModRemoveSubmit)}>
<div class="form-group row">
return this.props.community.creator_id == UserService.Instance.user.id;
}
- // private get amMod(): boolean {
- // return UserService.Instance.loggedIn &&
- // this.props.moderators.map(m => m.user_id).includes(UserService.Instance.user.id);
- // }
+ get canMod(): boolean {
+ return UserService.Instance.user && this.props.moderators.map(m => m.user_id).includes(UserService.Instance.user.id);
+ }
+
+ get canAdmin(): boolean {
+ return UserService.Instance.user && this.props.admins.map(a => a.id).includes(UserService.Instance.user.id);
+ }
handleDeleteClick() {
}
updated?: string;
creator_name: string;
community_name: string;
+ community_removed: boolean;
number_of_comments: number;
score: number;
upvotes: number;
op: string;
community: Community;
moderators: Array<CommunityUser>;
+ admins: Array<UserView>;
}