2016-09-26 18:48:55 +00:00
|
|
|
package service
|
2016-08-28 03:59:17 +00:00
|
|
|
|
|
|
|
import (
|
2017-03-15 15:55:30 +00:00
|
|
|
"context"
|
2016-08-28 03:59:17 +00:00
|
|
|
"encoding/json"
|
|
|
|
"errors"
|
2017-05-09 00:43:48 +00:00
|
|
|
"io"
|
2016-08-28 03:59:17 +00:00
|
|
|
"net/http"
|
2016-09-04 05:13:42 +00:00
|
|
|
"strconv"
|
2016-08-28 03:59:17 +00:00
|
|
|
|
2016-09-04 05:13:42 +00:00
|
|
|
"github.com/gorilla/mux"
|
2017-06-22 19:50:45 +00:00
|
|
|
"github.com/kolide/fleet/server/kolide"
|
2016-08-28 03:59:17 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
// errBadRoute is used for mux errors
|
|
|
|
errBadRoute = errors.New("bad route")
|
|
|
|
)
|
|
|
|
|
|
|
|
func encodeResponse(ctx context.Context, w http.ResponseWriter, response interface{}) error {
|
2017-05-17 15:58:40 +00:00
|
|
|
// The has to happen first, if an error happens we'll redirect to an error
|
|
|
|
// page and the error will be logged
|
|
|
|
if page, ok := response.(htmlPage); ok {
|
|
|
|
w.Header().Set("Content-Type", "text/html; charset=UTF-8")
|
|
|
|
_, err := io.WriteString(w, page.html())
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-08-28 03:59:17 +00:00
|
|
|
if e, ok := response.(errorer); ok && e.error() != nil {
|
|
|
|
encodeError(ctx, e.error(), w)
|
|
|
|
return nil
|
|
|
|
}
|
2016-09-15 14:52:17 +00:00
|
|
|
|
|
|
|
if e, ok := response.(statuser); ok {
|
|
|
|
w.WriteHeader(e.status())
|
|
|
|
if e.status() == http.StatusNoContent {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-09 12:34:53 +00:00
|
|
|
enc := json.NewEncoder(w)
|
|
|
|
enc.SetIndent("", " ")
|
|
|
|
return enc.Encode(response)
|
2016-08-28 03:59:17 +00:00
|
|
|
}
|
|
|
|
|
2016-09-15 14:52:17 +00:00
|
|
|
// statuser allows response types to implement a custom
|
|
|
|
// http success status - default is 200 OK
|
|
|
|
type statuser interface {
|
|
|
|
status() int
|
|
|
|
}
|
|
|
|
|
2017-05-09 00:43:48 +00:00
|
|
|
// loads a html page
|
|
|
|
type htmlPage interface {
|
|
|
|
html() string
|
|
|
|
error() error
|
|
|
|
}
|
|
|
|
|
2016-09-04 05:13:42 +00:00
|
|
|
func idFromRequest(r *http.Request, name string) (uint, error) {
|
|
|
|
vars := mux.Vars(r)
|
|
|
|
id, ok := vars[name]
|
|
|
|
if !ok {
|
|
|
|
return 0, errBadRoute
|
|
|
|
}
|
|
|
|
uid, err := strconv.Atoi(id)
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
return uint(uid), nil
|
|
|
|
}
|
|
|
|
|
2018-05-04 18:05:55 +00:00
|
|
|
func nameFromRequest(r *http.Request, varName string) (string, error) {
|
|
|
|
vars := mux.Vars(r)
|
|
|
|
name, ok := vars[varName]
|
|
|
|
if !ok {
|
|
|
|
return "", errBadRoute
|
|
|
|
}
|
|
|
|
return name, nil
|
|
|
|
}
|
|
|
|
|
2016-10-13 18:21:47 +00:00
|
|
|
// default number of items to include per page
|
|
|
|
const defaultPerPage = 20
|
|
|
|
|
|
|
|
// listOptionsFromRequest parses the list options from the request parameters
|
|
|
|
func listOptionsFromRequest(r *http.Request) (kolide.ListOptions, error) {
|
|
|
|
var err error
|
|
|
|
|
|
|
|
pageString := r.URL.Query().Get("page")
|
|
|
|
perPageString := r.URL.Query().Get("per_page")
|
2016-10-17 14:01:14 +00:00
|
|
|
orderKey := r.URL.Query().Get("order_key")
|
|
|
|
orderDirectionString := r.URL.Query().Get("order_direction")
|
2016-10-13 18:21:47 +00:00
|
|
|
|
|
|
|
var page int = 0
|
|
|
|
if pageString != "" {
|
|
|
|
page, err = strconv.Atoi(pageString)
|
|
|
|
if err != nil {
|
|
|
|
return kolide.ListOptions{}, errors.New("non-int page value")
|
|
|
|
}
|
|
|
|
if page < 0 {
|
|
|
|
return kolide.ListOptions{}, errors.New("negative page value")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// We default to 0 for per_page so that not specifying any paging
|
|
|
|
// information gets all results
|
|
|
|
var perPage int = 0
|
|
|
|
if perPageString != "" {
|
|
|
|
perPage, err = strconv.Atoi(perPageString)
|
|
|
|
if err != nil {
|
|
|
|
return kolide.ListOptions{}, errors.New("non-int per_page value")
|
|
|
|
}
|
|
|
|
if perPage <= 0 {
|
|
|
|
return kolide.ListOptions{}, errors.New("invalid per_page value")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if perPage == 0 && pageString != "" {
|
|
|
|
// We explicitly set a non-zero default if a page is specified
|
|
|
|
// (because the client probably intended for paging, and
|
|
|
|
// leaving the 0 would turn that off)
|
|
|
|
perPage = defaultPerPage
|
|
|
|
}
|
|
|
|
|
2016-10-17 14:01:14 +00:00
|
|
|
if orderKey == "" && orderDirectionString != "" {
|
|
|
|
return kolide.ListOptions{},
|
|
|
|
errors.New("order_key must be specified with order_direction")
|
|
|
|
}
|
|
|
|
|
|
|
|
var orderDirection kolide.OrderDirection
|
|
|
|
switch orderDirectionString {
|
|
|
|
case "desc":
|
|
|
|
orderDirection = kolide.OrderDescending
|
|
|
|
case "asc":
|
|
|
|
orderDirection = kolide.OrderAscending
|
|
|
|
case "":
|
|
|
|
orderDirection = kolide.OrderAscending
|
|
|
|
default:
|
|
|
|
return kolide.ListOptions{},
|
|
|
|
errors.New("unknown order_direction: " + orderDirectionString)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return kolide.ListOptions{
|
|
|
|
Page: uint(page),
|
|
|
|
PerPage: uint(perPage),
|
|
|
|
OrderKey: orderKey,
|
|
|
|
OrderDirection: orderDirection,
|
|
|
|
}, nil
|
2016-10-13 18:21:47 +00:00
|
|
|
}
|
|
|
|
|
2016-09-04 05:13:42 +00:00
|
|
|
func decodeNoParamsRequest(ctx context.Context, r *http.Request) (interface{}, error) {
|
|
|
|
return nil, nil
|
|
|
|
}
|