guild count check
This commit is contained in:
parent
5f13f012a9
commit
ba7e6f02f5
@ -12,9 +12,20 @@ import (
|
||||
func GetPermissionLevel(ctx *gin.Context) {
|
||||
userId := ctx.Keys["userid"].(uint64)
|
||||
|
||||
guilds := strings.Split(ctx.Query("guilds"), ",")
|
||||
if len(guilds) > 100 {
|
||||
ctx.JSON(400, gin.H{
|
||||
"success": false,
|
||||
"error": "too many guilds",
|
||||
})
|
||||
return
|
||||
}
|
||||
|
||||
// TODO: Check whether the bot is in the guild to prevent us getting maliciously 429'd
|
||||
|
||||
levels := make(map[string]permission.PermissionLevel)
|
||||
|
||||
for _, raw := range strings.Split(ctx.Query("guilds"), ",") {
|
||||
for _, raw := range guilds {
|
||||
guildId, err := strconv.ParseUint(raw, 10, 64)
|
||||
if err != nil {
|
||||
ctx.JSON(400, gin.H{
|
||||
@ -28,7 +39,6 @@ func GetPermissionLevel(ctx *gin.Context) {
|
||||
levels[strconv.FormatUint(guildId, 10)] = level
|
||||
}
|
||||
|
||||
|
||||
ctx.JSON(200, gin.H{
|
||||
"success": true,
|
||||
"levels": levels,
|
||||
|
Loading…
x
Reference in New Issue
Block a user