71 lines
1.8 KiB
Go
71 lines
1.8 KiB
Go
package manage
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/TicketsBot/GoPanel/config"
|
|
"github.com/TicketsBot/GoPanel/database/table"
|
|
"github.com/TicketsBot/GoPanel/rpc/cache"
|
|
"github.com/TicketsBot/GoPanel/rpc/ratelimit"
|
|
"github.com/TicketsBot/GoPanel/utils"
|
|
"github.com/gin-gonic/contrib/sessions"
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/rxdn/gdl/rest"
|
|
"strconv"
|
|
)
|
|
|
|
func SendMessage(ctx *gin.Context) {
|
|
store := sessions.Default(ctx)
|
|
if store == nil {
|
|
return
|
|
}
|
|
defer store.Save()
|
|
|
|
if utils.IsLoggedIn(store) {
|
|
userId := utils.GetUserId(store)
|
|
|
|
// Verify the guild exists
|
|
guildIdStr := ctx.Param("id")
|
|
guildId, err := strconv.ParseUint(guildIdStr, 10, 64)
|
|
if err != nil {
|
|
ctx.Redirect(302, config.Conf.Server.BaseUrl) // TODO: 404 Page
|
|
return
|
|
}
|
|
|
|
// Get object for selected guild
|
|
guild, _ := cache.Instance.GetGuild(guildId, false)
|
|
|
|
// Verify the user has permissions to be here
|
|
isAdmin := make(chan bool)
|
|
go utils.IsAdmin(guild, userId, isAdmin)
|
|
if !<-isAdmin {
|
|
ctx.Redirect(302, config.Conf.Server.BaseUrl) // TODO: 403 Page
|
|
return
|
|
}
|
|
|
|
// Get ticket UUID from URL and verify it exists
|
|
ticketChan := make(chan table.Ticket)
|
|
go table.GetTicket(ctx.Param("uuid"), ticketChan)
|
|
ticket := <-ticketChan
|
|
exists := ticket != table.Ticket{}
|
|
|
|
// Verify that the user has permission to be here
|
|
if ticket.Guild != guildId {
|
|
ctx.Redirect(302, fmt.Sprintf("/manage/%s/tickets", guildIdStr))
|
|
return
|
|
}
|
|
|
|
if exists {
|
|
content := fmt.Sprintf("**%s**: %s", store.Get("name").(string), ctx.PostForm("message"))
|
|
if len(content) > 2000 {
|
|
content = content[0:1999]
|
|
}
|
|
|
|
_, _ = rest.CreateMessage(config.Conf.Bot.Token, ratelimit.Ratelimiter, ticket.Channel, rest.CreateMessageData{Content: content})
|
|
}
|
|
} else {
|
|
ctx.Redirect(302, "/login")
|
|
}
|
|
|
|
ctx.Redirect(301, ctx.Request.URL.String())
|
|
}
|