1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
16 "github.com/gorilla/mux"
19 func guessAndParse(k, v string) (interface{}, error) {
20 // All of these form values arrive as strings, so we need some
21 // type-guessing to accept non-string inputs:
23 // Values for parameters that take ints (limit=1) or bools
24 // (include_trash=1) are parsed accordingly.
26 // "null" and "" are nil.
28 // Values that look like JSON objects, arrays, or strings are
31 // The rest are left as strings.
34 return strconv.ParseInt(v, 10, 64)
36 return stringToBool(v), nil
37 case v == "null" || v == "":
39 case strings.HasPrefix(v, "["):
41 err := json.Unmarshal([]byte(v), &j)
43 case strings.HasPrefix(v, "{"):
44 var j map[string]interface{}
45 err := json.Unmarshal([]byte(v), &j)
47 case strings.HasPrefix(v, "\""):
49 err := json.Unmarshal([]byte(v), &j)
54 // TODO: Need to accept "?foo[]=bar&foo[]=baz" as
58 // Parse req as an Arvados V1 API request and return the request
61 // If the request has a parameter whose name is attrsKey (e.g.,
62 // "collection"), it is renamed to "attrs".
63 func (rtr *router) loadRequestParams(req *http.Request, attrsKey string) (map[string]interface{}, error) {
64 err := req.ParseForm()
66 return nil, httpError(http.StatusBadRequest, err)
68 params := map[string]interface{}{}
70 // Load parameters from req.Form, which (after
71 // req.ParseForm()) includes the query string and -- when
72 // Content-Type is application/x-www-form-urlencoded -- the
74 for k, values := range req.Form {
75 for _, v := range values {
76 params[k], err = guessAndParse(k, v)
83 // Decode body as JSON if Content-Type request header is
84 // missing or application/json.
85 mt := req.Header.Get("Content-Type")
86 if ct, _, err := mime.ParseMediaType(mt); err != nil && mt != "" {
87 return nil, fmt.Errorf("error parsing media type %q: %s", mt, err)
88 } else if (ct == "application/json" || mt == "") && req.ContentLength != 0 {
89 jsonParams := map[string]interface{}{}
90 err := json.NewDecoder(req.Body).Decode(&jsonParams)
92 return nil, httpError(http.StatusBadRequest, err)
94 for k, v := range jsonParams {
95 switch v := v.(type) {
97 // The Ruby "arv" cli tool sends a
98 // JSON-encode params map with
99 // JSON-encoded values.
100 dec, err := guessAndParse(k, v)
110 if attrsKey != "" && params[attrsKey] == nil {
111 // Copy top-level parameters from JSON request
112 // body into params[attrsKey]. Some SDKs rely
113 // on this Rails API feature; see
114 // https://api.rubyonrails.org/v5.2.1/classes/ActionController/ParamsWrapper.html
115 params[attrsKey] = jsonParams
119 for k, v := range mux.Vars(req) {
123 if v, ok := params[attrsKey]; ok && attrsKey != "" {
125 delete(params, attrsKey)
128 if order, ok := params["order"].(string); ok {
129 // We must accept strings ("foo, bar desc") and arrays
130 // (["foo", "bar desc"]) because RailsAPI does.
131 // Convert to an array here before trying to unmarshal
132 // into options structs.
134 delete(params, "order")
136 params["order"] = strings.Split(order, ",")
143 // Copy src to dst, using json as an intermediate format in order to
144 // invoke src's json-marshaling and dst's json-unmarshaling behaviors.
145 func (rtr *router) transcode(src interface{}, dst interface{}) error {
150 errw = json.NewEncoder(pw).Encode(src)
153 err := json.NewDecoder(pr).Decode(dst)
160 var intParams = map[string]bool{
165 var boolParams = map[string]bool{
167 "ensure_unique_name": true,
168 "include_trash": true,
169 "include_old_versions": true,
170 "redirect_to_new_user": true,
171 "send_notification_email": true,
174 func stringToBool(s string) bool {
176 case "", "false", "0":