mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
* Add annotations for creation of triggers and fns along with the test for them fixes #1178 * Log errors and still return created resource for annotation failures
48 lines
916 B
Go
48 lines
916 B
Go
package server
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/fnproject/fn/api/common"
|
|
"github.com/fnproject/fn/api/models"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func (s *Server) handleFnCreate(c *gin.Context) {
|
|
ctx := c.Request.Context()
|
|
log := common.Logger(ctx)
|
|
|
|
fn := &models.Fn{}
|
|
err := c.BindJSON(fn)
|
|
if err != nil {
|
|
if !models.IsAPIError(err) {
|
|
err = models.ErrInvalidJSON
|
|
}
|
|
handleErrorResponse(c, err)
|
|
return
|
|
}
|
|
|
|
fn.SetDefaults()
|
|
fnCreated, err := s.datastore.InsertFn(ctx, fn)
|
|
if err != nil {
|
|
handleErrorResponse(c, err)
|
|
return
|
|
}
|
|
|
|
app, err := s.datastore.GetAppByID(ctx, fnCreated.AppID)
|
|
if err != nil {
|
|
log.Debugln("Failed to lookup app.")
|
|
c.JSON(http.StatusOK, fnCreated)
|
|
return
|
|
}
|
|
|
|
fnAnnotated, err := s.fnAnnotator.AnnotateFn(c, app, fnCreated)
|
|
if err != nil {
|
|
log.Debugln("Failed to annotate fn")
|
|
c.JSON(http.StatusOK, fnCreated)
|
|
return
|
|
}
|
|
|
|
c.JSON(http.StatusOK, fnAnnotated)
|
|
}
|