mirror of
https://github.com/diamondburned/arikawa.git
synced 2024-11-03 13:34:27 +00:00
182 lines
4.4 KiB
Go
182 lines
4.4 KiB
Go
package discord
|
|
|
|
type Permissions uint64
|
|
|
|
const (
|
|
// Allows creation of instant invites
|
|
PermissionCreateInstantInvite Permissions = 1 << iota
|
|
// Allows kicking members
|
|
PermissionKickMembers
|
|
// Allows banning members
|
|
PermissionBanMembers
|
|
// Allows all permissions and bypasses channel permission overwrites
|
|
PermissionAdministrator
|
|
// Allows management and editing of channels
|
|
PermissionManageChannels
|
|
// Allows management and editing of the guild
|
|
PermissionManageGuild
|
|
// Allows for the addition of reactions to messages
|
|
PermissionAddReactions
|
|
// Allows for viewing of audit logs
|
|
PermissionViewAuditLog
|
|
// Allows for using priority speaker in a voice channel
|
|
PermissionPrioritySpeaker
|
|
// Allows the user to go live
|
|
PermissionStream
|
|
// Allows guild members to view a channel, which includes reading messages
|
|
// in text channels
|
|
PermissionViewChannel
|
|
// Allows for sending messages in a channel
|
|
PermissionSendMessages
|
|
// Allows for sending of /tts messages
|
|
PermissionSendTTSMessages
|
|
// Allows for deletion of other users messages
|
|
PermissionManageMessages
|
|
// Links sent by users with this permission will be auto-embedded
|
|
PermissionEmbedLinks
|
|
// Allows for uploading images and files
|
|
PermissionAttachFiles
|
|
// Allows for reading of message history
|
|
PermissionReadMessageHistory
|
|
// Allows for using the @everyone tag to notify all users in a channel,
|
|
// and the @here tag to notify all online users in a channel
|
|
PermissionMentionEveryone
|
|
// Allows the usage of custom emojis from other servers
|
|
PermissionUseExternalEmojis
|
|
|
|
_ // ?
|
|
|
|
// Allows for joining of a voice channel
|
|
PermissionConnect
|
|
// Allows for speaking in a voice channel
|
|
PermissionSpeak
|
|
// Allows for muting members in a voice channel
|
|
PermissionMuteMembers
|
|
// Allows for deafening of members in a voice channel
|
|
PermissionDeafenMembers
|
|
// Allows for moving of members between voice channels
|
|
PermissionMoveMembers
|
|
// Allows for using voice-activity-detection in a voice channel
|
|
PermissionUseVAD
|
|
// Allows for modification of own nickname
|
|
PermissionChangeNickname
|
|
// Allows for modification of other users nicknames
|
|
PermissionManageNicknames
|
|
// Allows management and editing of roles
|
|
PermissionManageRoles
|
|
// Allows management and editing of webhooks
|
|
PermissionManageWebhooks
|
|
// Allows management and editing of emojis
|
|
PermissionManageEmojis
|
|
|
|
PermissionAllText = 0 |
|
|
PermissionViewChannel |
|
|
PermissionSendMessages |
|
|
PermissionSendTTSMessages |
|
|
PermissionManageMessages |
|
|
PermissionEmbedLinks |
|
|
PermissionAttachFiles |
|
|
PermissionReadMessageHistory |
|
|
PermissionMentionEveryone
|
|
|
|
PermissionAllVoice = 0 |
|
|
PermissionConnect |
|
|
PermissionSpeak |
|
|
PermissionMuteMembers |
|
|
PermissionDeafenMembers |
|
|
PermissionMoveMembers |
|
|
PermissionUseVAD |
|
|
PermissionPrioritySpeaker
|
|
|
|
PermissionAllChannel = 0 |
|
|
PermissionAllText |
|
|
PermissionAllVoice |
|
|
PermissionCreateInstantInvite |
|
|
PermissionManageRoles |
|
|
PermissionManageChannels |
|
|
PermissionAddReactions |
|
|
PermissionViewAuditLog
|
|
|
|
PermissionAll = 0 |
|
|
PermissionAllChannel |
|
|
PermissionKickMembers |
|
|
PermissionBanMembers |
|
|
PermissionManageGuild |
|
|
PermissionAdministrator |
|
|
PermissionManageWebhooks |
|
|
PermissionManageEmojis
|
|
)
|
|
|
|
func (p Permissions) Has(perm Permissions) bool {
|
|
return (p & perm) == perm
|
|
}
|
|
|
|
func (p Permissions) Add(perm Permissions) Permissions {
|
|
return p | perm
|
|
}
|
|
|
|
func CalcOverwrites(guild Guild, channel Channel, member Member) Permissions {
|
|
if guild.OwnerID == member.User.ID {
|
|
return PermissionAll
|
|
}
|
|
|
|
var perm Permissions
|
|
|
|
for _, role := range guild.Roles {
|
|
if role.ID == guild.ID {
|
|
perm |= role.Permissions
|
|
break
|
|
}
|
|
}
|
|
|
|
for _, role := range guild.Roles {
|
|
for _, id := range member.RoleIDs {
|
|
if id == role.ID {
|
|
perm |= role.Permissions
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
if perm.Has(PermissionAdministrator) {
|
|
return PermissionAll
|
|
}
|
|
|
|
for _, overwrite := range channel.Permissions {
|
|
if overwrite.ID == guild.ID {
|
|
perm &= ^overwrite.Deny
|
|
perm |= overwrite.Allow
|
|
break
|
|
}
|
|
}
|
|
|
|
var deny, allow Permissions
|
|
|
|
for _, overwrite := range channel.Permissions {
|
|
for _, id := range member.RoleIDs {
|
|
if id == overwrite.ID && overwrite.Type == "role" {
|
|
deny |= overwrite.Deny
|
|
allow |= overwrite.Allow
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
perm &= ^deny
|
|
perm |= allow
|
|
|
|
for _, overwrite := range channel.Permissions {
|
|
if overwrite.ID == member.User.ID {
|
|
perm &= ^overwrite.Deny
|
|
perm |= overwrite.Allow
|
|
break
|
|
}
|
|
}
|
|
|
|
if perm.Has(PermissionAdministrator) {
|
|
return PermissionAll
|
|
}
|
|
|
|
return perm
|
|
}
|