mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
Vast commit, includes: * Introduces the Trigger domain entity. * Introduces the Fns domain entity. * V2 of the API for interacting with the new entities in swaggerv2.yml * Adds v2 end points for Apps to support PUT updates. * Rewrites the datastore level tests into a new pattern. * V2 routes use entity ID over name as the path parameter.
38 lines
743 B
Go
38 lines
743 B
Go
package server
|
|
|
|
import (
|
|
"encoding/base64"
|
|
"net/http"
|
|
|
|
"github.com/fnproject/fn/api/models"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func (s *Server) handleAppList(c *gin.Context) {
|
|
ctx := c.Request.Context()
|
|
|
|
filter := &models.AppFilter{}
|
|
filter.Cursor, filter.PerPage = pageParams(c, true)
|
|
name := c.Query("name")
|
|
if name != "" {
|
|
filter.NameIn = []string{name}
|
|
}
|
|
|
|
apps, err := s.datastore.GetApps(ctx, filter)
|
|
if err != nil {
|
|
handleErrorResponse(c, err)
|
|
return
|
|
}
|
|
|
|
var nextCursor string
|
|
if len(apps) > 0 && len(apps) == filter.PerPage {
|
|
last := []byte(apps[len(apps)-1].Name)
|
|
nextCursor = base64.RawURLEncoding.EncodeToString(last)
|
|
}
|
|
|
|
c.JSON(http.StatusOK, appListResponse{
|
|
NextCursor: nextCursor,
|
|
Items: apps,
|
|
})
|
|
}
|