2023-11-07 22:34:57 -05:00
|
|
|
package controllers
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"git.preston-baxter.com/Preston_PLB/capstone/frontend-service/db/models"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
)
|
|
|
|
|
|
|
|
func AddActionFromForm(c *gin.Context) {
|
|
|
|
user := getUserFromContext(c)
|
|
|
|
if user == nil {
|
|
|
|
log.Warnf("Could not find user in context. Trying to redner Action form")
|
|
|
|
badRequest(c, "No user available in context")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
//parse the form
|
|
|
|
c.Request.ParseForm()
|
|
|
|
var source []string
|
|
|
|
var action []string
|
|
|
|
|
|
|
|
//validate source
|
|
|
|
if str := c.Request.FormValue("source"); str != "" {
|
|
|
|
source = strings.Split(str, ".")
|
|
|
|
} else {
|
|
|
|
log.Warnf("Form request was partially or fully blank")
|
|
|
|
badRequest(c, "Form request was partially or fully blank")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
//validate action
|
|
|
|
if str := c.Request.FormValue("action"); str != "" {
|
|
|
|
action = strings.Split(str, ".")
|
|
|
|
} else {
|
|
|
|
log.Warnf("Form request was partially or fully blank")
|
|
|
|
badRequest(c, "Form request was partially or fully blank")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
//setup action
|
|
|
|
|
|
|
|
//
|
|
|
|
|
|
|
|
am := &models.ActionMapping{
|
2023-11-16 20:45:48 -05:00
|
|
|
UserId: user.Id,
|
|
|
|
SourceEvent: &models.Event{
|
2023-11-07 22:34:57 -05:00
|
|
|
VendorName: source[0],
|
|
|
|
Key: source[1],
|
|
|
|
Fields: map[string]string{},
|
|
|
|
},
|
2023-11-16 20:45:48 -05:00
|
|
|
Action: &models.Action{
|
2023-11-07 22:34:57 -05:00
|
|
|
VendorName: action[0],
|
|
|
|
Type: action[1],
|
|
|
|
Fields: map[string]string{},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
mongo.SaveModel(am)
|
|
|
|
|
|
|
|
c.Redirect(302, "/dashboard")
|
|
|
|
}
|