mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
0b7747bef0
Replaces (and appropriately refactors) a number of endpoints that were removed long ago when we decided to kill the UI with the fleetctl release. We turned out not to do this, and now need to restore these missing endpoints. This is not a straight up replacement of the existing code because of refactoring to the DB schemas that was also done in the migration. Most of the replaced code was removed in #1670 and #1686. Fixes #1811, fixes #1810
77 lines
1.7 KiB
Go
77 lines
1.7 KiB
Go
package service
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"net/http"
|
|
)
|
|
|
|
func decodeCreatePackRequest(ctx context.Context, r *http.Request) (interface{}, error) {
|
|
var req createPackRequest
|
|
if err := json.NewDecoder(r.Body).Decode(&req.payload); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return req, nil
|
|
}
|
|
|
|
func decodeModifyPackRequest(ctx context.Context, r *http.Request) (interface{}, error) {
|
|
id, err := idFromRequest(r, "id")
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
var req modifyPackRequest
|
|
if err := json.NewDecoder(r.Body).Decode(&req.payload); err != nil {
|
|
return nil, err
|
|
}
|
|
req.ID = id
|
|
return req, nil
|
|
}
|
|
|
|
func decodeDeletePackRequest(ctx context.Context, r *http.Request) (interface{}, error) {
|
|
name, err := nameFromRequest(r, "name")
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
var req deletePackRequest
|
|
req.Name = name
|
|
return req, nil
|
|
}
|
|
|
|
func decodeDeletePackByIDRequest(ctx context.Context, r *http.Request) (interface{}, error) {
|
|
id, err := idFromRequest(r, "id")
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
var req deletePackByIDRequest
|
|
req.ID = id
|
|
return req, nil
|
|
}
|
|
|
|
func decodeGetPackRequest(ctx context.Context, r *http.Request) (interface{}, error) {
|
|
id, err := idFromRequest(r, "id")
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
var req getPackRequest
|
|
req.ID = id
|
|
return req, nil
|
|
}
|
|
|
|
func decodeListPacksRequest(ctx context.Context, r *http.Request) (interface{}, error) {
|
|
opt, err := listOptionsFromRequest(r)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return listPacksRequest{ListOptions: opt}, nil
|
|
}
|
|
|
|
func decodeApplyPackSpecsRequest(ctx context.Context, r *http.Request) (interface{}, error) {
|
|
var req applyPackSpecsRequest
|
|
if err := json.NewDecoder(r.Body).Decode(&req); err != nil {
|
|
return nil, err
|
|
}
|
|
return req, nil
|
|
|
|
}
|