1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
15 "git.arvados.org/arvados.git/sdk/go/arvados"
16 "git.arvados.org/arvados.git/sdk/go/httpserver"
19 const rfc3339NanoFixed = "2006-01-02T15:04:05.000000000Z07:00"
21 type responseOptions struct {
26 func (rtr *router) responseOptions(opts interface{}) (responseOptions, error) {
27 var rOpts responseOptions
28 switch opts := opts.(type) {
29 case *arvados.GetOptions:
30 rOpts.Select = opts.Select
31 case *arvados.ListOptions:
32 rOpts.Select = opts.Select
33 rOpts.Count = opts.Count
38 func applySelectParam(selectParam []string, orig map[string]interface{}) map[string]interface{} {
39 if len(selectParam) == 0 {
42 selected := map[string]interface{}{}
43 for _, attr := range selectParam {
44 if v, ok := orig[attr]; ok {
48 // Some keys are always preserved, even if not requested
49 for _, k := range []string{"etag", "kind", "writable_by"} {
50 if v, ok := orig[k]; ok {
57 func (rtr *router) sendResponse(w http.ResponseWriter, req *http.Request, resp interface{}, opts responseOptions) {
58 var tmp map[string]interface{}
60 if resp, ok := resp.(http.Handler); ok {
61 // resp knows how to write its own http response
63 resp.ServeHTTP(w, req)
67 err := rtr.transcode(resp, &tmp)
73 respKind := kind(resp)
75 tmp["kind"] = respKind
77 if included, ok := tmp["included"]; ok && included == nil {
78 tmp["included"] = make([]interface{}, 0)
81 if strings.HasSuffix(respKind, "List") {
82 defaultItemKind = strings.TrimSuffix(respKind, "List")
85 if _, isListResponse := tmp["items"].([]interface{}); isListResponse {
86 items, _ := tmp["items"].([]interface{})
87 included, _ := tmp["included"].([]interface{})
88 for _, slice := range [][]interface{}{items, included} {
89 for i, item := range slice {
90 // Fill in "kind" by inspecting UUID/PDH if
91 // possible; fall back on assuming each
92 // Items[] entry in an "arvados#fooList"
93 // response should have kind="arvados#foo".
94 item, _ := item.(map[string]interface{})
96 if uuid, _ := item["uuid"].(string); len(uuid) == 27 {
99 if k := kind(infixMap[infix]); k != "" {
101 } else if pdh, _ := item["portable_data_hash"].(string); pdh != "" {
102 item["kind"] = "arvados#collection"
103 } else if defaultItemKind != "" {
104 item["kind"] = defaultItemKind
106 item = applySelectParam(opts.Select, item)
107 rtr.mungeItemFields(item)
111 if opts.Count == "none" {
112 delete(tmp, "items_available")
115 tmp = applySelectParam(opts.Select, tmp)
116 rtr.mungeItemFields(tmp)
119 w.Header().Set("Content-Type", "application/json")
120 enc := json.NewEncoder(w)
121 enc.SetEscapeHTML(false)
125 func (rtr *router) sendError(w http.ResponseWriter, err error) {
126 code := http.StatusInternalServerError
127 if err, ok := err.(interface{ HTTPStatus() int }); ok {
128 code = err.HTTPStatus()
130 httpserver.Error(w, err.Error(), code)
133 var infixMap = map[string]interface{}{
134 "4zz18": arvados.Collection{},
135 "xvhdp": arvados.ContainerRequest{},
136 "dz642": arvados.Container{},
137 "j7d0g": arvados.Group{},
138 "8i9sb": arvados.Job{},
139 "d1hrv": arvados.PipelineInstance{},
140 "p5p6p": arvados.PipelineTemplate{},
141 "j58dm": arvados.Specimen{},
142 "q1cn2": arvados.Trait{},
143 "7fd4e": arvados.Workflow{},
146 var mungeKind = regexp.MustCompile(`\..`)
148 func kind(resp interface{}) string {
149 t := fmt.Sprintf("%T", resp)
150 if !strings.HasPrefix(t, "arvados.") {
153 return mungeKind.ReplaceAllStringFunc(t, func(s string) string {
154 // "arvados.CollectionList" => "arvados#collectionList"
155 return "#" + strings.ToLower(s[1:])
159 func (rtr *router) mungeItemFields(tmp map[string]interface{}) {
160 for k, v := range tmp {
161 if strings.HasSuffix(k, "_at") {
162 // Format non-nil timestamps as
163 // rfc3339NanoFixed (otherwise they would use
164 // the default time encoding, which omits
166 switch tv := v.(type) {
168 if tv == nil || tv.IsZero() {
171 tmp[k] = tv.Format(rfc3339NanoFixed)
177 tmp[k] = tv.Format(rfc3339NanoFixed)
182 } else if t, err := time.Parse(time.RFC3339Nano, tv); err != nil {
183 // pass through an invalid time value (?)
184 } else if t.IsZero() {
187 tmp[k] = t.Format(rfc3339NanoFixed)
191 // Arvados API spec says when these fields are empty
192 // they appear in responses as null, rather than a
195 case "output_uuid", "output_name", "log_uuid", "description", "requesting_container_uuid", "container_uuid":
199 case "container_count_max":