mirror of
https://github.com/stoatchat/stoatchat.git
synced 2026-07-14 05:26:59 +00:00
129 lines
4.2 KiB
Rust
129 lines
4.2 KiB
Rust
use crate::{
|
|
ChannelPermission, ChannelType, PermissionQuery, PermissionValue, RelationshipStatus,
|
|
UserPermission, ALLOW_IN_TIMEOUT, DEFAULT_PERMISSION_DIRECT_MESSAGE,
|
|
DEFAULT_PERMISSION_SAVED_MESSAGES, DEFAULT_PERMISSION_VIEW_ONLY,
|
|
};
|
|
|
|
/// Calculate permissions against a user
|
|
pub async fn calculate_user_permissions<P: PermissionQuery>(query: &mut P) -> u32 {
|
|
if query.are_we_privileged().await {
|
|
return u32::MAX;
|
|
}
|
|
|
|
if query.are_the_users_same().await {
|
|
return u32::MAX;
|
|
}
|
|
|
|
let mut permissions = 0_u32;
|
|
match query.user_relationship().await {
|
|
RelationshipStatus::Friend => return u32::MAX,
|
|
RelationshipStatus::Blocked | RelationshipStatus::BlockedOther => {
|
|
return UserPermission::Access as u32
|
|
}
|
|
RelationshipStatus::Incoming | RelationshipStatus::Outgoing => {
|
|
permissions = UserPermission::Access as u32;
|
|
}
|
|
_ => {}
|
|
}
|
|
|
|
if query.have_mutual_connection().await {
|
|
permissions = UserPermission::Access + UserPermission::ViewProfile;
|
|
|
|
if query.user_is_bot().await || query.are_we_a_bot().await {
|
|
permissions += UserPermission::SendMessage as u32;
|
|
}
|
|
|
|
permissions
|
|
} else {
|
|
permissions
|
|
}
|
|
}
|
|
|
|
/// Calculate permissions against a server
|
|
pub async fn calculate_server_permissions<P: PermissionQuery>(query: &mut P) -> PermissionValue {
|
|
if query.are_we_privileged().await || query.are_we_server_owner().await {
|
|
return ChannelPermission::GrantAllSafe.into();
|
|
}
|
|
|
|
if !query.are_we_a_member().await {
|
|
return 0_u64.into();
|
|
}
|
|
|
|
let mut permissions: PermissionValue = query.get_default_server_permissions().await.into();
|
|
|
|
for role_override in query.get_our_server_role_overrides().await {
|
|
permissions.apply(role_override);
|
|
}
|
|
|
|
if query.are_we_timed_out().await {
|
|
permissions.restrict(*ALLOW_IN_TIMEOUT);
|
|
}
|
|
|
|
permissions
|
|
}
|
|
|
|
/// Calculate permissions against a channel
|
|
pub async fn calculate_channel_permissions<P: PermissionQuery>(query: &mut P) -> PermissionValue {
|
|
if query.are_we_privileged().await {
|
|
return ChannelPermission::GrantAllSafe.into();
|
|
}
|
|
|
|
match query.get_channel_type().await {
|
|
ChannelType::SavedMessages => {
|
|
if query.do_we_own_the_channel().await {
|
|
DEFAULT_PERMISSION_SAVED_MESSAGES.into()
|
|
} else {
|
|
0_u64.into()
|
|
}
|
|
}
|
|
ChannelType::DirectMessage => {
|
|
if query.are_we_part_of_the_channel().await {
|
|
query.set_recipient_as_user().await;
|
|
|
|
let permissions = calculate_user_permissions(query).await;
|
|
if (permissions & UserPermission::SendMessage as u32)
|
|
== UserPermission::SendMessage as u32
|
|
{
|
|
(*DEFAULT_PERMISSION_DIRECT_MESSAGE).into()
|
|
} else {
|
|
(*DEFAULT_PERMISSION_VIEW_ONLY).into()
|
|
}
|
|
} else {
|
|
0_u64.into()
|
|
}
|
|
}
|
|
ChannelType::Group => {
|
|
if query.do_we_own_the_channel().await {
|
|
ChannelPermission::GrantAllSafe.into()
|
|
} else if query.are_we_part_of_the_channel().await {
|
|
(*DEFAULT_PERMISSION_VIEW_ONLY
|
|
| query.get_default_channel_permissions().await.allow)
|
|
.into()
|
|
} else {
|
|
0_u64.into()
|
|
}
|
|
}
|
|
ChannelType::ServerChannel => {
|
|
query.set_server_from_channel().await;
|
|
|
|
if query.are_we_a_member().await {
|
|
let mut permissions = calculate_server_permissions(query).await;
|
|
permissions.apply(query.get_default_channel_permissions().await);
|
|
|
|
for role_override in query.get_our_channel_role_overrides().await {
|
|
permissions.apply(role_override);
|
|
}
|
|
|
|
if query.are_we_timed_out().await {
|
|
permissions.restrict(*ALLOW_IN_TIMEOUT);
|
|
}
|
|
|
|
permissions
|
|
} else {
|
|
0_u64.into()
|
|
}
|
|
}
|
|
ChannelType::Unknown => 0_u64.into(),
|
|
}
|
|
}
|