125 lines
3.3 KiB
Go
125 lines
3.3 KiB
Go
package manage
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/TicketsBot/GoPanel/config"
|
|
"github.com/TicketsBot/GoPanel/database/table"
|
|
"github.com/TicketsBot/GoPanel/utils"
|
|
"github.com/TicketsBot/GoPanel/utils/discord/endpoints/channel"
|
|
"github.com/TicketsBot/GoPanel/utils/discord/objects"
|
|
"github.com/gin-gonic/contrib/sessions"
|
|
"github.com/gin-gonic/gin"
|
|
"regexp"
|
|
"strconv"
|
|
"strings"
|
|
)
|
|
|
|
var MentionRegex, _ = regexp.Compile("<@(\\d+)>")
|
|
|
|
func TicketViewHandler(ctx *gin.Context) {
|
|
store := sessions.Default(ctx)
|
|
if store == nil {
|
|
return
|
|
}
|
|
defer store.Save()
|
|
|
|
if utils.IsLoggedIn(store) {
|
|
userIdStr := store.Get("userid").(string)
|
|
userId, err := utils.GetUserId(store)
|
|
if err != nil {
|
|
ctx.String(500, err.Error())
|
|
return
|
|
}
|
|
|
|
// Verify the guild exists
|
|
guildIdStr := ctx.Param("id")
|
|
guildId, err := strconv.ParseInt(guildIdStr, 10, 64)
|
|
if err != nil {
|
|
ctx.Redirect(302, config.Conf.Server.BaseUrl) // TODO: 404 Page
|
|
return
|
|
}
|
|
|
|
// Get object for selected guild
|
|
var guild objects.Guild
|
|
for _, g := range table.GetGuilds(userIdStr) {
|
|
if g.Id == guildIdStr {
|
|
guild = g
|
|
break
|
|
}
|
|
}
|
|
|
|
// Verify the user has permissions to be here
|
|
if !utils.Contains(config.Conf.Admins, userIdStr) && !guild.Owner && !table.IsAdmin(guildId, userId) {
|
|
ctx.Redirect(302, config.Conf.Server.BaseUrl) // TODO: 403 Page
|
|
return
|
|
}
|
|
|
|
// Get ticket UUID from URL and verify it exists
|
|
uuid := ctx.Param("uuid")
|
|
ticketChan := make(chan table.Ticket)
|
|
go table.GetTicket(uuid, ticketChan)
|
|
ticket := <-ticketChan
|
|
exists := ticket != table.Ticket{}
|
|
|
|
// If invalid ticket UUID, take user to ticket list
|
|
if !exists {
|
|
ctx.Redirect(302, fmt.Sprintf("/manage/%s/tickets", guildIdStr))
|
|
return
|
|
}
|
|
|
|
// Get messages
|
|
var messages []objects.Message
|
|
// We want to show users error messages so they can report them
|
|
isError := false
|
|
var errorMessage string
|
|
|
|
endpoint := channel.GetChannelMessages(int(ticket.Channel))
|
|
if err = endpoint.Request(store, nil, nil, &messages, nil); err != nil {
|
|
isError = true
|
|
errorMessage = err.Error()
|
|
}
|
|
|
|
// Format messages, exclude unneeded data
|
|
var messagesFormatted []map[string]interface{}
|
|
for _, message := range utils.Reverse(messages) {
|
|
content := message.Content
|
|
|
|
// Format mentions properly
|
|
match := MentionRegex.FindAllStringSubmatch(content, -1)
|
|
for _, mention := range match {
|
|
if len(mention) >= 2 {
|
|
mentionedId, err := strconv.ParseInt(mention[1], 10, 64); if err != nil {
|
|
continue
|
|
}
|
|
|
|
ch := make(chan string)
|
|
go table.GetUsername(mentionedId, ch)
|
|
content = strings.ReplaceAll(content, fmt.Sprintf("<@%d>", mentionedId), fmt.Sprintf("@%s", <-ch))
|
|
}
|
|
}
|
|
|
|
messagesFormatted = append(messagesFormatted, map[string]interface{}{
|
|
"username": message.Author.Username,
|
|
"content": content,
|
|
})
|
|
}
|
|
|
|
premium := make(chan bool)
|
|
go utils.IsPremiumGuild(store, guildIdStr, premium)
|
|
|
|
ctx.HTML(200, "manage/ticketview", gin.H{
|
|
"name": store.Get("name").(string),
|
|
"guildId": guildIdStr,
|
|
"csrf": store.Get("csrf").(string),
|
|
"avatar": store.Get("avatar").(string),
|
|
"baseUrl": config.Conf.Server.BaseUrl,
|
|
"isError": isError,
|
|
"error": errorMessage,
|
|
"messages": messagesFormatted,
|
|
"ticketId": ticket.TicketId,
|
|
"include_mock": true,
|
|
"premium": <-premium,
|
|
})
|
|
}
|
|
}
|