1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
14 "git.arvados.org/arvados.git/lib/controller/api"
15 "git.arvados.org/arvados.git/sdk/go/arvados"
16 "git.arvados.org/arvados.git/sdk/go/auth"
17 "git.arvados.org/arvados.git/sdk/go/ctxlog"
18 "git.arvados.org/arvados.git/sdk/go/httpserver"
19 "github.com/gorilla/mux"
20 "github.com/sirupsen/logrus"
30 // Return an error if request body exceeds this size. 0 means
34 // If wrapCalls is not nil, it is called once for each API
35 // method, and the returned method is used in its place. This
36 // can be used to install hooks before and after each API call
37 // and alter responses; see localdb.WrapCallsInTransaction for
39 WrapCalls func(api.RoutableFunc) api.RoutableFunc
42 // New returns a new router (which implements the http.Handler
43 // interface) that serves requests by calling Arvados API methods on
45 func New(backend arvados.API, config Config) *router {
55 func (rtr *router) addRoutes() {
56 for _, route := range []struct {
57 endpoint arvados.APIEndpoint
58 defaultOpts func() interface{}
62 arvados.EndpointConfigGet,
63 func() interface{} { return &struct{}{} },
64 func(ctx context.Context, opts interface{}) (interface{}, error) {
65 return rtr.backend.ConfigGet(ctx)
69 arvados.EndpointVocabularyGet,
70 func() interface{} { return &struct{}{} },
71 func(ctx context.Context, opts interface{}) (interface{}, error) {
72 return rtr.backend.VocabularyGet(ctx)
76 arvados.EndpointLogin,
77 func() interface{} { return &arvados.LoginOptions{} },
78 func(ctx context.Context, opts interface{}) (interface{}, error) {
79 return rtr.backend.Login(ctx, *opts.(*arvados.LoginOptions))
83 arvados.EndpointLogout,
84 func() interface{} { return &arvados.LogoutOptions{} },
85 func(ctx context.Context, opts interface{}) (interface{}, error) {
86 return rtr.backend.Logout(ctx, *opts.(*arvados.LogoutOptions))
90 arvados.EndpointAuthorizedKeyCreate,
91 func() interface{} { return &arvados.CreateOptions{} },
92 func(ctx context.Context, opts interface{}) (interface{}, error) {
93 return rtr.backend.AuthorizedKeyCreate(ctx, *opts.(*arvados.CreateOptions))
97 arvados.EndpointAuthorizedKeyUpdate,
98 func() interface{} { return &arvados.UpdateOptions{} },
99 func(ctx context.Context, opts interface{}) (interface{}, error) {
100 return rtr.backend.AuthorizedKeyUpdate(ctx, *opts.(*arvados.UpdateOptions))
104 arvados.EndpointAuthorizedKeyGet,
105 func() interface{} { return &arvados.GetOptions{} },
106 func(ctx context.Context, opts interface{}) (interface{}, error) {
107 return rtr.backend.AuthorizedKeyGet(ctx, *opts.(*arvados.GetOptions))
111 arvados.EndpointAuthorizedKeyList,
112 func() interface{} { return &arvados.ListOptions{Limit: -1} },
113 func(ctx context.Context, opts interface{}) (interface{}, error) {
114 return rtr.backend.AuthorizedKeyList(ctx, *opts.(*arvados.ListOptions))
118 arvados.EndpointAuthorizedKeyDelete,
119 func() interface{} { return &arvados.DeleteOptions{} },
120 func(ctx context.Context, opts interface{}) (interface{}, error) {
121 return rtr.backend.AuthorizedKeyDelete(ctx, *opts.(*arvados.DeleteOptions))
125 arvados.EndpointCollectionCreate,
126 func() interface{} { return &arvados.CreateOptions{} },
127 func(ctx context.Context, opts interface{}) (interface{}, error) {
128 return rtr.backend.CollectionCreate(ctx, *opts.(*arvados.CreateOptions))
132 arvados.EndpointCollectionUpdate,
133 func() interface{} { return &arvados.UpdateOptions{} },
134 func(ctx context.Context, opts interface{}) (interface{}, error) {
135 return rtr.backend.CollectionUpdate(ctx, *opts.(*arvados.UpdateOptions))
139 arvados.EndpointCollectionGet,
140 func() interface{} { return &arvados.GetOptions{} },
141 func(ctx context.Context, opts interface{}) (interface{}, error) {
142 return rtr.backend.CollectionGet(ctx, *opts.(*arvados.GetOptions))
146 arvados.EndpointCollectionList,
147 func() interface{} { return &arvados.ListOptions{Limit: -1} },
148 func(ctx context.Context, opts interface{}) (interface{}, error) {
149 return rtr.backend.CollectionList(ctx, *opts.(*arvados.ListOptions))
153 arvados.EndpointCollectionProvenance,
154 func() interface{} { return &arvados.GetOptions{} },
155 func(ctx context.Context, opts interface{}) (interface{}, error) {
156 return rtr.backend.CollectionProvenance(ctx, *opts.(*arvados.GetOptions))
160 arvados.EndpointCollectionUsedBy,
161 func() interface{} { return &arvados.GetOptions{} },
162 func(ctx context.Context, opts interface{}) (interface{}, error) {
163 return rtr.backend.CollectionUsedBy(ctx, *opts.(*arvados.GetOptions))
167 arvados.EndpointCollectionDelete,
168 func() interface{} { return &arvados.DeleteOptions{} },
169 func(ctx context.Context, opts interface{}) (interface{}, error) {
170 return rtr.backend.CollectionDelete(ctx, *opts.(*arvados.DeleteOptions))
174 arvados.EndpointCollectionTrash,
175 func() interface{} { return &arvados.DeleteOptions{} },
176 func(ctx context.Context, opts interface{}) (interface{}, error) {
177 return rtr.backend.CollectionTrash(ctx, *opts.(*arvados.DeleteOptions))
181 arvados.EndpointCollectionUntrash,
182 func() interface{} { return &arvados.UntrashOptions{} },
183 func(ctx context.Context, opts interface{}) (interface{}, error) {
184 return rtr.backend.CollectionUntrash(ctx, *opts.(*arvados.UntrashOptions))
188 arvados.EndpointComputedPermissionList,
189 func() interface{} { return &arvados.ListOptions{Limit: -1} },
190 func(ctx context.Context, opts interface{}) (interface{}, error) {
191 return rtr.backend.ComputedPermissionList(ctx, *opts.(*arvados.ListOptions))
195 arvados.EndpointContainerCreate,
196 func() interface{} { return &arvados.CreateOptions{} },
197 func(ctx context.Context, opts interface{}) (interface{}, error) {
198 return rtr.backend.ContainerCreate(ctx, *opts.(*arvados.CreateOptions))
202 arvados.EndpointContainerPriorityUpdate,
203 func() interface{} { return &arvados.UpdateOptions{} },
204 func(ctx context.Context, opts interface{}) (interface{}, error) {
205 return rtr.backend.ContainerPriorityUpdate(ctx, *opts.(*arvados.UpdateOptions))
209 arvados.EndpointContainerUpdate,
210 func() interface{} { return &arvados.UpdateOptions{} },
211 func(ctx context.Context, opts interface{}) (interface{}, error) {
212 return rtr.backend.ContainerUpdate(ctx, *opts.(*arvados.UpdateOptions))
216 arvados.EndpointContainerGet,
217 func() interface{} { return &arvados.GetOptions{} },
218 func(ctx context.Context, opts interface{}) (interface{}, error) {
219 return rtr.backend.ContainerGet(ctx, *opts.(*arvados.GetOptions))
223 arvados.EndpointContainerList,
224 func() interface{} { return &arvados.ListOptions{Limit: -1} },
225 func(ctx context.Context, opts interface{}) (interface{}, error) {
226 return rtr.backend.ContainerList(ctx, *opts.(*arvados.ListOptions))
230 arvados.EndpointContainerDelete,
231 func() interface{} { return &arvados.DeleteOptions{} },
232 func(ctx context.Context, opts interface{}) (interface{}, error) {
233 return rtr.backend.ContainerDelete(ctx, *opts.(*arvados.DeleteOptions))
237 arvados.EndpointContainerLock,
239 return &arvados.GetOptions{Select: []string{"uuid", "state", "priority", "auth_uuid", "locked_by_uuid"}}
241 func(ctx context.Context, opts interface{}) (interface{}, error) {
242 return rtr.backend.ContainerLock(ctx, *opts.(*arvados.GetOptions))
246 arvados.EndpointContainerUnlock,
248 return &arvados.GetOptions{Select: []string{"uuid", "state", "priority", "auth_uuid", "locked_by_uuid"}}
250 func(ctx context.Context, opts interface{}) (interface{}, error) {
251 return rtr.backend.ContainerUnlock(ctx, *opts.(*arvados.GetOptions))
255 arvados.EndpointContainerSSH,
256 func() interface{} { return &arvados.ContainerSSHOptions{} },
257 func(ctx context.Context, opts interface{}) (interface{}, error) {
258 return rtr.backend.ContainerSSH(ctx, *opts.(*arvados.ContainerSSHOptions))
262 arvados.EndpointContainerSSHCompat,
263 func() interface{} { return &arvados.ContainerSSHOptions{} },
264 func(ctx context.Context, opts interface{}) (interface{}, error) {
265 return rtr.backend.ContainerSSH(ctx, *opts.(*arvados.ContainerSSHOptions))
269 // arvados-client built before commit
270 // bdc29d3129f6d75aa9ce0a24ffb849a272b06f08
271 // used GET with params in headers instead of
273 arvados.APIEndpoint{"GET", "arvados/v1/connect/{uuid}/ssh", ""},
274 func() interface{} { return &arvados.ContainerSSHOptions{} },
275 func(ctx context.Context, opts interface{}) (interface{}, error) {
276 return nil, httpError(http.StatusGone, fmt.Errorf("API endpoint is obsolete -- please upgrade your arvados-client program"))
280 arvados.EndpointContainerGatewayTunnel,
281 func() interface{} { return &arvados.ContainerGatewayTunnelOptions{} },
282 func(ctx context.Context, opts interface{}) (interface{}, error) {
283 return rtr.backend.ContainerGatewayTunnel(ctx, *opts.(*arvados.ContainerGatewayTunnelOptions))
287 arvados.EndpointContainerGatewayTunnelCompat,
288 func() interface{} { return &arvados.ContainerGatewayTunnelOptions{} },
289 func(ctx context.Context, opts interface{}) (interface{}, error) {
290 return rtr.backend.ContainerGatewayTunnel(ctx, *opts.(*arvados.ContainerGatewayTunnelOptions))
294 arvados.EndpointContainerRequestCreate,
295 func() interface{} { return &arvados.CreateOptions{} },
296 func(ctx context.Context, opts interface{}) (interface{}, error) {
297 return rtr.backend.ContainerRequestCreate(ctx, *opts.(*arvados.CreateOptions))
301 arvados.EndpointContainerRequestUpdate,
302 func() interface{} { return &arvados.UpdateOptions{} },
303 func(ctx context.Context, opts interface{}) (interface{}, error) {
304 return rtr.backend.ContainerRequestUpdate(ctx, *opts.(*arvados.UpdateOptions))
308 arvados.EndpointContainerRequestGet,
309 func() interface{} { return &arvados.GetOptions{} },
310 func(ctx context.Context, opts interface{}) (interface{}, error) {
311 return rtr.backend.ContainerRequestGet(ctx, *opts.(*arvados.GetOptions))
315 arvados.EndpointContainerRequestList,
316 func() interface{} { return &arvados.ListOptions{Limit: -1} },
317 func(ctx context.Context, opts interface{}) (interface{}, error) {
318 return rtr.backend.ContainerRequestList(ctx, *opts.(*arvados.ListOptions))
322 arvados.EndpointContainerRequestDelete,
323 func() interface{} { return &arvados.DeleteOptions{} },
324 func(ctx context.Context, opts interface{}) (interface{}, error) {
325 return rtr.backend.ContainerRequestDelete(ctx, *opts.(*arvados.DeleteOptions))
329 arvados.EndpointContainerRequestContainerStatus,
330 func() interface{} { return &arvados.GetOptions{} },
331 func(ctx context.Context, opts interface{}) (interface{}, error) {
332 return rtr.backend.ContainerRequestContainerStatus(ctx, *opts.(*arvados.GetOptions))
336 arvados.EndpointContainerRequestLog,
337 func() interface{} { return &arvados.ContainerLogOptions{} },
338 func(ctx context.Context, opts interface{}) (interface{}, error) {
339 return rtr.backend.ContainerRequestLog(ctx, *opts.(*arvados.ContainerLogOptions))
343 arvados.EndpointGroupCreate,
344 func() interface{} { return &arvados.CreateOptions{} },
345 func(ctx context.Context, opts interface{}) (interface{}, error) {
346 return rtr.backend.GroupCreate(ctx, *opts.(*arvados.CreateOptions))
350 arvados.EndpointGroupUpdate,
351 func() interface{} { return &arvados.UpdateOptions{} },
352 func(ctx context.Context, opts interface{}) (interface{}, error) {
353 return rtr.backend.GroupUpdate(ctx, *opts.(*arvados.UpdateOptions))
357 arvados.EndpointGroupList,
358 func() interface{} { return &arvados.ListOptions{Limit: -1} },
359 func(ctx context.Context, opts interface{}) (interface{}, error) {
360 return rtr.backend.GroupList(ctx, *opts.(*arvados.ListOptions))
364 arvados.EndpointGroupContents,
365 func() interface{} { return &arvados.GroupContentsOptions{Limit: -1} },
366 func(ctx context.Context, opts interface{}) (interface{}, error) {
367 return rtr.backend.GroupContents(ctx, *opts.(*arvados.GroupContentsOptions))
371 arvados.EndpointGroupContentsUUIDInPath,
372 func() interface{} { return &arvados.GroupContentsOptions{Limit: -1} },
373 func(ctx context.Context, opts interface{}) (interface{}, error) {
374 return rtr.backend.GroupContents(ctx, *opts.(*arvados.GroupContentsOptions))
378 arvados.EndpointGroupShared,
379 func() interface{} { return &arvados.ListOptions{Limit: -1} },
380 func(ctx context.Context, opts interface{}) (interface{}, error) {
381 return rtr.backend.GroupShared(ctx, *opts.(*arvados.ListOptions))
385 arvados.EndpointGroupGet,
386 func() interface{} { return &arvados.GetOptions{} },
387 func(ctx context.Context, opts interface{}) (interface{}, error) {
388 return rtr.backend.GroupGet(ctx, *opts.(*arvados.GetOptions))
392 arvados.EndpointGroupDelete,
393 func() interface{} { return &arvados.DeleteOptions{} },
394 func(ctx context.Context, opts interface{}) (interface{}, error) {
395 return rtr.backend.GroupDelete(ctx, *opts.(*arvados.DeleteOptions))
399 arvados.EndpointGroupTrash,
400 func() interface{} { return &arvados.DeleteOptions{} },
401 func(ctx context.Context, opts interface{}) (interface{}, error) {
402 return rtr.backend.GroupTrash(ctx, *opts.(*arvados.DeleteOptions))
406 arvados.EndpointGroupUntrash,
407 func() interface{} { return &arvados.UntrashOptions{} },
408 func(ctx context.Context, opts interface{}) (interface{}, error) {
409 return rtr.backend.GroupUntrash(ctx, *opts.(*arvados.UntrashOptions))
413 arvados.EndpointLinkCreate,
414 func() interface{} { return &arvados.CreateOptions{} },
415 func(ctx context.Context, opts interface{}) (interface{}, error) {
416 return rtr.backend.LinkCreate(ctx, *opts.(*arvados.CreateOptions))
420 arvados.EndpointLinkUpdate,
421 func() interface{} { return &arvados.UpdateOptions{} },
422 func(ctx context.Context, opts interface{}) (interface{}, error) {
423 return rtr.backend.LinkUpdate(ctx, *opts.(*arvados.UpdateOptions))
427 arvados.EndpointLinkList,
428 func() interface{} { return &arvados.ListOptions{Limit: -1} },
429 func(ctx context.Context, opts interface{}) (interface{}, error) {
430 return rtr.backend.LinkList(ctx, *opts.(*arvados.ListOptions))
434 arvados.EndpointLinkGet,
435 func() interface{} { return &arvados.GetOptions{} },
436 func(ctx context.Context, opts interface{}) (interface{}, error) {
437 return rtr.backend.LinkGet(ctx, *opts.(*arvados.GetOptions))
441 arvados.EndpointLinkDelete,
442 func() interface{} { return &arvados.DeleteOptions{} },
443 func(ctx context.Context, opts interface{}) (interface{}, error) {
444 return rtr.backend.LinkDelete(ctx, *opts.(*arvados.DeleteOptions))
448 arvados.EndpointLogCreate,
449 func() interface{} { return &arvados.CreateOptions{} },
450 func(ctx context.Context, opts interface{}) (interface{}, error) {
451 return rtr.backend.LogCreate(ctx, *opts.(*arvados.CreateOptions))
455 arvados.EndpointLogUpdate,
456 func() interface{} { return &arvados.UpdateOptions{} },
457 func(ctx context.Context, opts interface{}) (interface{}, error) {
458 return rtr.backend.LogUpdate(ctx, *opts.(*arvados.UpdateOptions))
462 arvados.EndpointLogList,
463 func() interface{} { return &arvados.ListOptions{Limit: -1} },
464 func(ctx context.Context, opts interface{}) (interface{}, error) {
465 return rtr.backend.LogList(ctx, *opts.(*arvados.ListOptions))
469 arvados.EndpointLogGet,
470 func() interface{} { return &arvados.GetOptions{} },
471 func(ctx context.Context, opts interface{}) (interface{}, error) {
472 return rtr.backend.LogGet(ctx, *opts.(*arvados.GetOptions))
476 arvados.EndpointLogDelete,
477 func() interface{} { return &arvados.DeleteOptions{} },
478 func(ctx context.Context, opts interface{}) (interface{}, error) {
479 return rtr.backend.LogDelete(ctx, *opts.(*arvados.DeleteOptions))
483 arvados.EndpointAPIClientAuthorizationCreate,
484 func() interface{} { return &arvados.CreateOptions{} },
485 func(ctx context.Context, opts interface{}) (interface{}, error) {
486 return rtr.backend.APIClientAuthorizationCreate(ctx, *opts.(*arvados.CreateOptions))
490 arvados.EndpointAPIClientAuthorizationUpdate,
491 func() interface{} { return &arvados.UpdateOptions{} },
492 func(ctx context.Context, opts interface{}) (interface{}, error) {
493 return rtr.backend.APIClientAuthorizationUpdate(ctx, *opts.(*arvados.UpdateOptions))
497 arvados.EndpointAPIClientAuthorizationDelete,
498 func() interface{} { return &arvados.DeleteOptions{} },
499 func(ctx context.Context, opts interface{}) (interface{}, error) {
500 return rtr.backend.APIClientAuthorizationDelete(ctx, *opts.(*arvados.DeleteOptions))
504 arvados.EndpointAPIClientAuthorizationList,
505 func() interface{} { return &arvados.ListOptions{Limit: -1} },
506 func(ctx context.Context, opts interface{}) (interface{}, error) {
507 return rtr.backend.APIClientAuthorizationList(ctx, *opts.(*arvados.ListOptions))
511 arvados.EndpointAPIClientAuthorizationCurrent,
512 func() interface{} { return &arvados.GetOptions{} },
513 func(ctx context.Context, opts interface{}) (interface{}, error) {
514 return rtr.backend.APIClientAuthorizationCurrent(ctx, *opts.(*arvados.GetOptions))
518 arvados.EndpointAPIClientAuthorizationGet,
519 func() interface{} { return &arvados.GetOptions{} },
520 func(ctx context.Context, opts interface{}) (interface{}, error) {
521 return rtr.backend.APIClientAuthorizationGet(ctx, *opts.(*arvados.GetOptions))
525 arvados.EndpointUserCreate,
526 func() interface{} { return &arvados.CreateOptions{} },
527 func(ctx context.Context, opts interface{}) (interface{}, error) {
528 return rtr.backend.UserCreate(ctx, *opts.(*arvados.CreateOptions))
532 arvados.EndpointUserMerge,
533 func() interface{} { return &arvados.UserMergeOptions{} },
534 func(ctx context.Context, opts interface{}) (interface{}, error) {
535 return rtr.backend.UserMerge(ctx, *opts.(*arvados.UserMergeOptions))
539 arvados.EndpointUserActivate,
540 func() interface{} { return &arvados.UserActivateOptions{} },
541 func(ctx context.Context, opts interface{}) (interface{}, error) {
542 return rtr.backend.UserActivate(ctx, *opts.(*arvados.UserActivateOptions))
546 arvados.EndpointUserSetup,
547 func() interface{} { return &arvados.UserSetupOptions{} },
548 func(ctx context.Context, opts interface{}) (interface{}, error) {
549 return rtr.backend.UserSetup(ctx, *opts.(*arvados.UserSetupOptions))
553 arvados.EndpointUserUnsetup,
554 func() interface{} { return &arvados.GetOptions{} },
555 func(ctx context.Context, opts interface{}) (interface{}, error) {
556 return rtr.backend.UserUnsetup(ctx, *opts.(*arvados.GetOptions))
560 arvados.EndpointUserGetCurrent,
561 func() interface{} { return &arvados.GetOptions{} },
562 func(ctx context.Context, opts interface{}) (interface{}, error) {
563 return rtr.backend.UserGetCurrent(ctx, *opts.(*arvados.GetOptions))
567 arvados.EndpointUserGetSystem,
568 func() interface{} { return &arvados.GetOptions{} },
569 func(ctx context.Context, opts interface{}) (interface{}, error) {
570 return rtr.backend.UserGetSystem(ctx, *opts.(*arvados.GetOptions))
574 arvados.EndpointUserGet,
575 func() interface{} { return &arvados.GetOptions{} },
576 func(ctx context.Context, opts interface{}) (interface{}, error) {
577 return rtr.backend.UserGet(ctx, *opts.(*arvados.GetOptions))
581 arvados.EndpointUserUpdate,
582 func() interface{} { return &arvados.UpdateOptions{} },
583 func(ctx context.Context, opts interface{}) (interface{}, error) {
584 return rtr.backend.UserUpdate(ctx, *opts.(*arvados.UpdateOptions))
588 arvados.EndpointUserList,
589 func() interface{} { return &arvados.ListOptions{Limit: -1} },
590 func(ctx context.Context, opts interface{}) (interface{}, error) {
591 return rtr.backend.UserList(ctx, *opts.(*arvados.ListOptions))
595 arvados.EndpointUserBatchUpdate,
596 func() interface{} { return &arvados.UserBatchUpdateOptions{} },
597 func(ctx context.Context, opts interface{}) (interface{}, error) {
598 return rtr.backend.UserBatchUpdate(ctx, *opts.(*arvados.UserBatchUpdateOptions))
602 arvados.EndpointUserDelete,
603 func() interface{} { return &arvados.DeleteOptions{} },
604 func(ctx context.Context, opts interface{}) (interface{}, error) {
605 return rtr.backend.UserDelete(ctx, *opts.(*arvados.DeleteOptions))
609 arvados.EndpointUserAuthenticate,
610 func() interface{} { return &arvados.UserAuthenticateOptions{} },
611 func(ctx context.Context, opts interface{}) (interface{}, error) {
612 return rtr.backend.UserAuthenticate(ctx, *opts.(*arvados.UserAuthenticateOptions))
617 if rtr.config.WrapCalls != nil {
618 exec = rtr.config.WrapCalls(exec)
620 rtr.addRoute(route.endpoint, route.defaultOpts, exec)
622 rtr.mux.NotFoundHandler = http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
623 if req.Method == "OPTIONS" {
624 // For non-webdav endpoints, return an empty
625 // response with the CORS headers we already
626 // added in ServeHTTP.
627 w.WriteHeader(http.StatusOK)
630 httpserver.Errors(w, []string{"API endpoint not found"}, http.StatusNotFound)
632 rtr.mux.MethodNotAllowedHandler = http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
633 if req.Method == "OPTIONS" {
634 // For non-webdav endpoints, return an empty
635 // response with the CORS headers we already
636 // added in ServeHTTP.
637 w.WriteHeader(http.StatusOK)
640 httpserver.Errors(w, []string{"API endpoint not found"}, http.StatusMethodNotAllowed)
644 var altMethod = map[string]string{
645 "PATCH": "PUT", // Accept PUT as a synonym for PATCH
646 "GET": "HEAD", // Accept HEAD at any GET route
649 func (rtr *router) addRoute(endpoint arvados.APIEndpoint, defaultOpts func() interface{}, exec api.RoutableFunc) {
650 methods := []string{endpoint.Method}
651 if alt, ok := altMethod[endpoint.Method]; ok {
652 methods = append(methods, alt)
654 if strings.HasSuffix(endpoint.Path, ".*}") {
656 methods = append(methods, "OPTIONS", "PROPFIND")
658 rtr.mux.Methods(methods...).Path("/" + endpoint.Path).HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
659 logger := ctxlog.FromContext(req.Context())
660 opts := defaultOpts()
661 params, err := rtr.loadRequestParams(req, endpoint.AttrsKey, opts)
663 logger.WithFields(logrus.Fields{
665 "method": endpoint.Method,
666 "endpoint": endpoint,
667 }).WithError(err).Debug("error loading request params")
668 rtr.sendError(w, err)
671 respOpts, err := rtr.responseOptions(opts)
673 logger.WithField("opts", opts).WithError(err).Debugf("error getting response options from %T", opts)
674 rtr.sendError(w, err)
678 creds := auth.CredentialsFromRequest(req)
679 err = creds.LoadTokensFromHTTPRequestBody(req)
681 rtr.sendError(w, fmt.Errorf("error loading tokens from request body: %s", err))
684 if rt, _ := params["reader_tokens"].([]interface{}); len(rt) > 0 {
685 for _, t := range rt {
686 if t, ok := t.(string); ok {
687 creds.Tokens = append(creds.Tokens, t)
691 ctx := auth.NewContext(req.Context(), creds)
692 ctx = arvados.ContextWithRequestID(ctx, req.Header.Get("X-Request-Id"))
693 req = req.WithContext(ctx)
695 // Extract the token UUIDs (or a placeholder for v1 tokens)
696 var tokenUUIDs []string
697 for _, t := range creds.Tokens {
698 if strings.HasPrefix(t, "v2/") {
699 tokenParts := strings.Split(t, "/")
700 if len(tokenParts) >= 3 {
701 tokenUUIDs = append(tokenUUIDs, tokenParts[1])
708 tokenUUIDs = append(tokenUUIDs, "v1 token ending in "+end)
711 httpserver.SetResponseLogFields(ctx, logrus.Fields{"tokenUUIDs": tokenUUIDs})
713 logger.WithFields(logrus.Fields{
714 "apiEndpoint": endpoint,
715 "apiOptsType": fmt.Sprintf("%T", opts),
718 resp, err := exec(ctx, opts)
720 logger.WithError(err).Debugf("returning error type %T", err)
721 rtr.sendError(w, err)
724 rtr.sendResponse(w, req, resp, respOpts)
728 func (rtr *router) ServeHTTP(w http.ResponseWriter, r *http.Request) {
729 switch strings.SplitN(strings.TrimLeft(r.URL.Path, "/"), "/", 2)[0] {
730 case "login", "logout", "auth":
732 w.Header().Set("Access-Control-Allow-Origin", "*")
733 w.Header().Set("Access-Control-Allow-Methods", "GET, HEAD, OPTIONS, PROPFIND, PUT, POST, PATCH, DELETE")
734 w.Header().Set("Access-Control-Allow-Headers", "Authorization, Content-Type, Range, X-Http-Method-Override")
735 w.Header().Set("Access-Control-Expose-Headers", "Content-Range")
736 w.Header().Set("Access-Control-Max-Age", "86486400")
739 // Wrap r.Body in a http.MaxBytesReader(), otherwise
740 // r.ParseForm() uses a default max request body size
741 // of 10 megabytes. Note we rely on the Nginx
742 // configuration to enforce the real max body size.
743 max := int64(rtr.config.MaxRequestSize)
745 max = math.MaxInt64 - 1
747 r.Body = http.MaxBytesReader(w, r.Body, max)
749 if r.Method == "POST" {
752 if err.Error() == "http: request body too large" {
753 err = httpError(http.StatusRequestEntityTooLarge, err)
755 rtr.sendError(w, err)
758 if m := r.FormValue("_method"); m != "" {
762 } else if m = r.Header.Get("X-Http-Method-Override"); m != "" {
768 rtr.mux.ServeHTTP(w, r)