15014: Hide busy/idle nodes panel when crunch1 is not active.
[arvados.git] / lib / controller / router / request.go
index aa2cd636cf2c5513dce2de74f3c84e27922faef2..377f7243c009bef591fffb4b3b53acaf39c0d359 100644 (file)
@@ -27,9 +27,32 @@ func (rtr *router) loadRequestParams(req *http.Request, attrsKey string) (map[st
                return nil, httpError(http.StatusBadRequest, err)
        }
        params := map[string]interface{}{}
+
+       // Load parameters from req.Form, which (after
+       // req.ParseForm()) includes the query string and -- when
+       // Content-Type is application/x-www-form-urlencoded -- the
+       // request body.
        for k, values := range req.Form {
+               // All of these form values arrive as strings, so we
+               // need some type-guessing to accept non-string
+               // inputs:
+               //
+               // Values for parameters that take ints (limit=1) or
+               // bools (include_trash=1) are parsed accordingly.
+               //
+               // "null" and "" are nil.
+               //
+               // Values that look like JSON objects, arrays, or
+               // strings are parsed as JSON.
+               //
+               // The rest are left as strings.
                for _, v := range values {
                        switch {
+                       case intParams[k]:
+                               params[k], err = strconv.ParseInt(v, 10, 64)
+                               if err != nil {
+                                       return nil, err
+                               }
                        case boolParams[k]:
                                params[k] = stringToBool(v)
                        case v == "null" || v == "":
@@ -55,11 +78,6 @@ func (rtr *router) loadRequestParams(req *http.Request, attrsKey string) (map[st
                                        return nil, err
                                }
                                params[k] = j
-                       case k == "limit" || k == "offset":
-                               params[k], err = strconv.ParseInt(v, 10, 64)
-                               if err != nil {
-                                       return nil, err
-                               }
                        default:
                                params[k] = v
                        }
@@ -100,6 +118,19 @@ func (rtr *router) loadRequestParams(req *http.Request, attrsKey string) (map[st
                params["attrs"] = v
                delete(params, attrsKey)
        }
+
+       if order, ok := params["order"].(string); ok {
+               // We must accept strings ("foo, bar desc") and arrays
+               // (["foo", "bar desc"]) because RailsAPI does.
+               // Convert to an array here before trying to unmarshal
+               // into options structs.
+               if order == "" {
+                       delete(params, "order")
+               } else {
+                       params["order"] = strings.Split(order, ",")
+               }
+       }
+
        return params, nil
 }
 
@@ -120,7 +151,13 @@ func (rtr *router) transcode(src interface{}, dst interface{}) error {
        return err
 }
 
+var intParams = map[string]bool{
+       "limit":  true,
+       "offset": true,
+}
+
 var boolParams = map[string]bool{
+       "distinct":             true,
        "ensure_unique_name":   true,
        "include_trash":        true,
        "include_old_versions": true,