30 lines
653 B
Go
30 lines
653 B
Go
package api
|
|
|
|
import (
|
|
"github.com/TicketsBot/GoPanel/app"
|
|
"github.com/TicketsBot/GoPanel/database"
|
|
"github.com/TicketsBot/GoPanel/redis"
|
|
"github.com/TicketsBot/common/whitelabeldelete"
|
|
"github.com/gin-gonic/gin"
|
|
"net/http"
|
|
)
|
|
|
|
func WhitelabelDelete(c *gin.Context) {
|
|
userId := c.Keys["userid"].(uint64)
|
|
|
|
// Check if this is a different token
|
|
botId, err := database.Client.Whitelabel.Delete(c, userId)
|
|
if err != nil {
|
|
_ = c.AbortWithError(http.StatusInternalServerError, app.NewServerError(err))
|
|
return
|
|
}
|
|
|
|
if botId != nil {
|
|
// TODO: Kafka
|
|
go whitelabeldelete.Publish(redis.Client.Client, *botId)
|
|
|
|
}
|
|
|
|
c.Status(http.StatusNoContent)
|
|
}
|