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.EndpointCollectionCreate,
91 func() interface{} { return &arvados.CreateOptions{} },
92 func(ctx context.Context, opts interface{}) (interface{}, error) {
93 return rtr.backend.CollectionCreate(ctx, *opts.(*arvados.CreateOptions))
97 arvados.EndpointCollectionUpdate,
98 func() interface{} { return &arvados.UpdateOptions{} },
99 func(ctx context.Context, opts interface{}) (interface{}, error) {
100 return rtr.backend.CollectionUpdate(ctx, *opts.(*arvados.UpdateOptions))
104 arvados.EndpointCollectionGet,
105 func() interface{} { return &arvados.GetOptions{} },
106 func(ctx context.Context, opts interface{}) (interface{}, error) {
107 return rtr.backend.CollectionGet(ctx, *opts.(*arvados.GetOptions))
111 arvados.EndpointCollectionList,
112 func() interface{} { return &arvados.ListOptions{Limit: -1} },
113 func(ctx context.Context, opts interface{}) (interface{}, error) {
114 return rtr.backend.CollectionList(ctx, *opts.(*arvados.ListOptions))
118 arvados.EndpointCollectionProvenance,
119 func() interface{} { return &arvados.GetOptions{} },
120 func(ctx context.Context, opts interface{}) (interface{}, error) {
121 return rtr.backend.CollectionProvenance(ctx, *opts.(*arvados.GetOptions))
125 arvados.EndpointCollectionUsedBy,
126 func() interface{} { return &arvados.GetOptions{} },
127 func(ctx context.Context, opts interface{}) (interface{}, error) {
128 return rtr.backend.CollectionUsedBy(ctx, *opts.(*arvados.GetOptions))
132 arvados.EndpointCollectionDelete,
133 func() interface{} { return &arvados.DeleteOptions{} },
134 func(ctx context.Context, opts interface{}) (interface{}, error) {
135 return rtr.backend.CollectionDelete(ctx, *opts.(*arvados.DeleteOptions))
139 arvados.EndpointCollectionTrash,
140 func() interface{} { return &arvados.DeleteOptions{} },
141 func(ctx context.Context, opts interface{}) (interface{}, error) {
142 return rtr.backend.CollectionTrash(ctx, *opts.(*arvados.DeleteOptions))
146 arvados.EndpointCollectionUntrash,
147 func() interface{} { return &arvados.UntrashOptions{} },
148 func(ctx context.Context, opts interface{}) (interface{}, error) {
149 return rtr.backend.CollectionUntrash(ctx, *opts.(*arvados.UntrashOptions))
153 arvados.EndpointContainerCreate,
154 func() interface{} { return &arvados.CreateOptions{} },
155 func(ctx context.Context, opts interface{}) (interface{}, error) {
156 return rtr.backend.ContainerCreate(ctx, *opts.(*arvados.CreateOptions))
160 arvados.EndpointContainerPriorityUpdate,
161 func() interface{} { return &arvados.UpdateOptions{} },
162 func(ctx context.Context, opts interface{}) (interface{}, error) {
163 return rtr.backend.ContainerPriorityUpdate(ctx, *opts.(*arvados.UpdateOptions))
167 arvados.EndpointContainerUpdate,
168 func() interface{} { return &arvados.UpdateOptions{} },
169 func(ctx context.Context, opts interface{}) (interface{}, error) {
170 return rtr.backend.ContainerUpdate(ctx, *opts.(*arvados.UpdateOptions))
174 arvados.EndpointContainerGet,
175 func() interface{} { return &arvados.GetOptions{} },
176 func(ctx context.Context, opts interface{}) (interface{}, error) {
177 return rtr.backend.ContainerGet(ctx, *opts.(*arvados.GetOptions))
181 arvados.EndpointContainerList,
182 func() interface{} { return &arvados.ListOptions{Limit: -1} },
183 func(ctx context.Context, opts interface{}) (interface{}, error) {
184 return rtr.backend.ContainerList(ctx, *opts.(*arvados.ListOptions))
188 arvados.EndpointContainerDelete,
189 func() interface{} { return &arvados.DeleteOptions{} },
190 func(ctx context.Context, opts interface{}) (interface{}, error) {
191 return rtr.backend.ContainerDelete(ctx, *opts.(*arvados.DeleteOptions))
195 arvados.EndpointContainerRequestCreate,
196 func() interface{} { return &arvados.CreateOptions{} },
197 func(ctx context.Context, opts interface{}) (interface{}, error) {
198 return rtr.backend.ContainerRequestCreate(ctx, *opts.(*arvados.CreateOptions))
202 arvados.EndpointContainerRequestUpdate,
203 func() interface{} { return &arvados.UpdateOptions{} },
204 func(ctx context.Context, opts interface{}) (interface{}, error) {
205 return rtr.backend.ContainerRequestUpdate(ctx, *opts.(*arvados.UpdateOptions))
209 arvados.EndpointContainerRequestGet,
210 func() interface{} { return &arvados.GetOptions{} },
211 func(ctx context.Context, opts interface{}) (interface{}, error) {
212 return rtr.backend.ContainerRequestGet(ctx, *opts.(*arvados.GetOptions))
216 arvados.EndpointContainerRequestList,
217 func() interface{} { return &arvados.ListOptions{Limit: -1} },
218 func(ctx context.Context, opts interface{}) (interface{}, error) {
219 return rtr.backend.ContainerRequestList(ctx, *opts.(*arvados.ListOptions))
223 arvados.EndpointContainerRequestDelete,
224 func() interface{} { return &arvados.DeleteOptions{} },
225 func(ctx context.Context, opts interface{}) (interface{}, error) {
226 return rtr.backend.ContainerRequestDelete(ctx, *opts.(*arvados.DeleteOptions))
230 arvados.EndpointContainerLock,
232 return &arvados.GetOptions{Select: []string{"uuid", "state", "priority", "auth_uuid", "locked_by_uuid"}}
234 func(ctx context.Context, opts interface{}) (interface{}, error) {
235 return rtr.backend.ContainerLock(ctx, *opts.(*arvados.GetOptions))
239 arvados.EndpointContainerUnlock,
241 return &arvados.GetOptions{Select: []string{"uuid", "state", "priority", "auth_uuid", "locked_by_uuid"}}
243 func(ctx context.Context, opts interface{}) (interface{}, error) {
244 return rtr.backend.ContainerUnlock(ctx, *opts.(*arvados.GetOptions))
248 arvados.EndpointContainerSSH,
249 func() interface{} { return &arvados.ContainerSSHOptions{} },
250 func(ctx context.Context, opts interface{}) (interface{}, error) {
251 return rtr.backend.ContainerSSH(ctx, *opts.(*arvados.ContainerSSHOptions))
255 // arvados-client built before commit
256 // bdc29d3129f6d75aa9ce0a24ffb849a272b06f08
257 // used GET with params in headers instead of
259 arvados.APIEndpoint{"GET", "arvados/v1/connect/{uuid}/ssh", ""},
260 func() interface{} { return &arvados.ContainerSSHOptions{} },
261 func(ctx context.Context, opts interface{}) (interface{}, error) {
262 return nil, httpError(http.StatusGone, fmt.Errorf("API endpoint is obsolete -- please upgrade your arvados-client program"))
266 arvados.EndpointContainerGatewayTunnel,
267 func() interface{} { return &arvados.ContainerGatewayTunnelOptions{} },
268 func(ctx context.Context, opts interface{}) (interface{}, error) {
269 return rtr.backend.ContainerGatewayTunnel(ctx, *opts.(*arvados.ContainerGatewayTunnelOptions))
273 arvados.EndpointGroupCreate,
274 func() interface{} { return &arvados.CreateOptions{} },
275 func(ctx context.Context, opts interface{}) (interface{}, error) {
276 return rtr.backend.GroupCreate(ctx, *opts.(*arvados.CreateOptions))
280 arvados.EndpointGroupUpdate,
281 func() interface{} { return &arvados.UpdateOptions{} },
282 func(ctx context.Context, opts interface{}) (interface{}, error) {
283 return rtr.backend.GroupUpdate(ctx, *opts.(*arvados.UpdateOptions))
287 arvados.EndpointGroupList,
288 func() interface{} { return &arvados.ListOptions{Limit: -1} },
289 func(ctx context.Context, opts interface{}) (interface{}, error) {
290 return rtr.backend.GroupList(ctx, *opts.(*arvados.ListOptions))
294 arvados.EndpointGroupContents,
295 func() interface{} { return &arvados.GroupContentsOptions{Limit: -1} },
296 func(ctx context.Context, opts interface{}) (interface{}, error) {
297 return rtr.backend.GroupContents(ctx, *opts.(*arvados.GroupContentsOptions))
301 arvados.EndpointGroupContentsUUIDInPath,
302 func() interface{} { return &arvados.GroupContentsOptions{Limit: -1} },
303 func(ctx context.Context, opts interface{}) (interface{}, error) {
304 return rtr.backend.GroupContents(ctx, *opts.(*arvados.GroupContentsOptions))
308 arvados.EndpointGroupShared,
309 func() interface{} { return &arvados.ListOptions{Limit: -1} },
310 func(ctx context.Context, opts interface{}) (interface{}, error) {
311 return rtr.backend.GroupShared(ctx, *opts.(*arvados.ListOptions))
315 arvados.EndpointGroupGet,
316 func() interface{} { return &arvados.GetOptions{} },
317 func(ctx context.Context, opts interface{}) (interface{}, error) {
318 return rtr.backend.GroupGet(ctx, *opts.(*arvados.GetOptions))
322 arvados.EndpointGroupDelete,
323 func() interface{} { return &arvados.DeleteOptions{} },
324 func(ctx context.Context, opts interface{}) (interface{}, error) {
325 return rtr.backend.GroupDelete(ctx, *opts.(*arvados.DeleteOptions))
329 arvados.EndpointGroupTrash,
330 func() interface{} { return &arvados.DeleteOptions{} },
331 func(ctx context.Context, opts interface{}) (interface{}, error) {
332 return rtr.backend.GroupTrash(ctx, *opts.(*arvados.DeleteOptions))
336 arvados.EndpointGroupUntrash,
337 func() interface{} { return &arvados.UntrashOptions{} },
338 func(ctx context.Context, opts interface{}) (interface{}, error) {
339 return rtr.backend.GroupUntrash(ctx, *opts.(*arvados.UntrashOptions))
343 arvados.EndpointLinkCreate,
344 func() interface{} { return &arvados.CreateOptions{} },
345 func(ctx context.Context, opts interface{}) (interface{}, error) {
346 return rtr.backend.LinkCreate(ctx, *opts.(*arvados.CreateOptions))
350 arvados.EndpointLinkUpdate,
351 func() interface{} { return &arvados.UpdateOptions{} },
352 func(ctx context.Context, opts interface{}) (interface{}, error) {
353 return rtr.backend.LinkUpdate(ctx, *opts.(*arvados.UpdateOptions))
357 arvados.EndpointLinkList,
358 func() interface{} { return &arvados.ListOptions{Limit: -1} },
359 func(ctx context.Context, opts interface{}) (interface{}, error) {
360 return rtr.backend.LinkList(ctx, *opts.(*arvados.ListOptions))
364 arvados.EndpointLinkGet,
365 func() interface{} { return &arvados.GetOptions{} },
366 func(ctx context.Context, opts interface{}) (interface{}, error) {
367 return rtr.backend.LinkGet(ctx, *opts.(*arvados.GetOptions))
371 arvados.EndpointLinkDelete,
372 func() interface{} { return &arvados.DeleteOptions{} },
373 func(ctx context.Context, opts interface{}) (interface{}, error) {
374 return rtr.backend.LinkDelete(ctx, *opts.(*arvados.DeleteOptions))
378 arvados.EndpointLogCreate,
379 func() interface{} { return &arvados.CreateOptions{} },
380 func(ctx context.Context, opts interface{}) (interface{}, error) {
381 return rtr.backend.LogCreate(ctx, *opts.(*arvados.CreateOptions))
385 arvados.EndpointLogUpdate,
386 func() interface{} { return &arvados.UpdateOptions{} },
387 func(ctx context.Context, opts interface{}) (interface{}, error) {
388 return rtr.backend.LogUpdate(ctx, *opts.(*arvados.UpdateOptions))
392 arvados.EndpointLogList,
393 func() interface{} { return &arvados.ListOptions{Limit: -1} },
394 func(ctx context.Context, opts interface{}) (interface{}, error) {
395 return rtr.backend.LogList(ctx, *opts.(*arvados.ListOptions))
399 arvados.EndpointLogGet,
400 func() interface{} { return &arvados.GetOptions{} },
401 func(ctx context.Context, opts interface{}) (interface{}, error) {
402 return rtr.backend.LogGet(ctx, *opts.(*arvados.GetOptions))
406 arvados.EndpointLogDelete,
407 func() interface{} { return &arvados.DeleteOptions{} },
408 func(ctx context.Context, opts interface{}) (interface{}, error) {
409 return rtr.backend.LogDelete(ctx, *opts.(*arvados.DeleteOptions))
413 arvados.EndpointSpecimenCreate,
414 func() interface{} { return &arvados.CreateOptions{} },
415 func(ctx context.Context, opts interface{}) (interface{}, error) {
416 return rtr.backend.SpecimenCreate(ctx, *opts.(*arvados.CreateOptions))
420 arvados.EndpointSpecimenUpdate,
421 func() interface{} { return &arvados.UpdateOptions{} },
422 func(ctx context.Context, opts interface{}) (interface{}, error) {
423 return rtr.backend.SpecimenUpdate(ctx, *opts.(*arvados.UpdateOptions))
427 arvados.EndpointSpecimenGet,
428 func() interface{} { return &arvados.GetOptions{} },
429 func(ctx context.Context, opts interface{}) (interface{}, error) {
430 return rtr.backend.SpecimenGet(ctx, *opts.(*arvados.GetOptions))
434 arvados.EndpointSpecimenList,
435 func() interface{} { return &arvados.ListOptions{Limit: -1} },
436 func(ctx context.Context, opts interface{}) (interface{}, error) {
437 return rtr.backend.SpecimenList(ctx, *opts.(*arvados.ListOptions))
441 arvados.EndpointSpecimenDelete,
442 func() interface{} { return &arvados.DeleteOptions{} },
443 func(ctx context.Context, opts interface{}) (interface{}, error) {
444 return rtr.backend.SpecimenDelete(ctx, *opts.(*arvados.DeleteOptions))
448 arvados.EndpointAPIClientAuthorizationCreate,
449 func() interface{} { return &arvados.CreateOptions{} },
450 func(ctx context.Context, opts interface{}) (interface{}, error) {
451 return rtr.backend.APIClientAuthorizationCreate(ctx, *opts.(*arvados.CreateOptions))
455 arvados.EndpointAPIClientAuthorizationUpdate,
456 func() interface{} { return &arvados.UpdateOptions{} },
457 func(ctx context.Context, opts interface{}) (interface{}, error) {
458 return rtr.backend.APIClientAuthorizationUpdate(ctx, *opts.(*arvados.UpdateOptions))
462 arvados.EndpointAPIClientAuthorizationDelete,
463 func() interface{} { return &arvados.DeleteOptions{} },
464 func(ctx context.Context, opts interface{}) (interface{}, error) {
465 return rtr.backend.APIClientAuthorizationDelete(ctx, *opts.(*arvados.DeleteOptions))
469 arvados.EndpointAPIClientAuthorizationList,
470 func() interface{} { return &arvados.ListOptions{Limit: -1} },
471 func(ctx context.Context, opts interface{}) (interface{}, error) {
472 return rtr.backend.APIClientAuthorizationList(ctx, *opts.(*arvados.ListOptions))
476 arvados.EndpointAPIClientAuthorizationCurrent,
477 func() interface{} { return &arvados.GetOptions{} },
478 func(ctx context.Context, opts interface{}) (interface{}, error) {
479 return rtr.backend.APIClientAuthorizationCurrent(ctx, *opts.(*arvados.GetOptions))
483 arvados.EndpointAPIClientAuthorizationGet,
484 func() interface{} { return &arvados.GetOptions{} },
485 func(ctx context.Context, opts interface{}) (interface{}, error) {
486 return rtr.backend.APIClientAuthorizationGet(ctx, *opts.(*arvados.GetOptions))
490 arvados.EndpointUserCreate,
491 func() interface{} { return &arvados.CreateOptions{} },
492 func(ctx context.Context, opts interface{}) (interface{}, error) {
493 return rtr.backend.UserCreate(ctx, *opts.(*arvados.CreateOptions))
497 arvados.EndpointUserMerge,
498 func() interface{} { return &arvados.UserMergeOptions{} },
499 func(ctx context.Context, opts interface{}) (interface{}, error) {
500 return rtr.backend.UserMerge(ctx, *opts.(*arvados.UserMergeOptions))
504 arvados.EndpointUserActivate,
505 func() interface{} { return &arvados.UserActivateOptions{} },
506 func(ctx context.Context, opts interface{}) (interface{}, error) {
507 return rtr.backend.UserActivate(ctx, *opts.(*arvados.UserActivateOptions))
511 arvados.EndpointUserSetup,
512 func() interface{} { return &arvados.UserSetupOptions{} },
513 func(ctx context.Context, opts interface{}) (interface{}, error) {
514 return rtr.backend.UserSetup(ctx, *opts.(*arvados.UserSetupOptions))
518 arvados.EndpointUserUnsetup,
519 func() interface{} { return &arvados.GetOptions{} },
520 func(ctx context.Context, opts interface{}) (interface{}, error) {
521 return rtr.backend.UserUnsetup(ctx, *opts.(*arvados.GetOptions))
525 arvados.EndpointUserGetCurrent,
526 func() interface{} { return &arvados.GetOptions{} },
527 func(ctx context.Context, opts interface{}) (interface{}, error) {
528 return rtr.backend.UserGetCurrent(ctx, *opts.(*arvados.GetOptions))
532 arvados.EndpointUserGetSystem,
533 func() interface{} { return &arvados.GetOptions{} },
534 func(ctx context.Context, opts interface{}) (interface{}, error) {
535 return rtr.backend.UserGetSystem(ctx, *opts.(*arvados.GetOptions))
539 arvados.EndpointUserGet,
540 func() interface{} { return &arvados.GetOptions{} },
541 func(ctx context.Context, opts interface{}) (interface{}, error) {
542 return rtr.backend.UserGet(ctx, *opts.(*arvados.GetOptions))
546 arvados.EndpointUserUpdate,
547 func() interface{} { return &arvados.UpdateOptions{} },
548 func(ctx context.Context, opts interface{}) (interface{}, error) {
549 return rtr.backend.UserUpdate(ctx, *opts.(*arvados.UpdateOptions))
553 arvados.EndpointUserList,
554 func() interface{} { return &arvados.ListOptions{Limit: -1} },
555 func(ctx context.Context, opts interface{}) (interface{}, error) {
556 return rtr.backend.UserList(ctx, *opts.(*arvados.ListOptions))
560 arvados.EndpointUserBatchUpdate,
561 func() interface{} { return &arvados.UserBatchUpdateOptions{} },
562 func(ctx context.Context, opts interface{}) (interface{}, error) {
563 return rtr.backend.UserBatchUpdate(ctx, *opts.(*arvados.UserBatchUpdateOptions))
567 arvados.EndpointUserDelete,
568 func() interface{} { return &arvados.DeleteOptions{} },
569 func(ctx context.Context, opts interface{}) (interface{}, error) {
570 return rtr.backend.UserDelete(ctx, *opts.(*arvados.DeleteOptions))
574 arvados.EndpointUserAuthenticate,
575 func() interface{} { return &arvados.UserAuthenticateOptions{} },
576 func(ctx context.Context, opts interface{}) (interface{}, error) {
577 return rtr.backend.UserAuthenticate(ctx, *opts.(*arvados.UserAuthenticateOptions))
582 if rtr.config.WrapCalls != nil {
583 exec = rtr.config.WrapCalls(exec)
585 rtr.addRoute(route.endpoint, route.defaultOpts, exec)
587 rtr.mux.NotFoundHandler = http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
588 httpserver.Errors(w, []string{"API endpoint not found"}, http.StatusNotFound)
590 rtr.mux.MethodNotAllowedHandler = http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
591 httpserver.Errors(w, []string{"API endpoint not found"}, http.StatusMethodNotAllowed)
595 var altMethod = map[string]string{
596 "PATCH": "PUT", // Accept PUT as a synonym for PATCH
597 "GET": "HEAD", // Accept HEAD at any GET route
600 func (rtr *router) addRoute(endpoint arvados.APIEndpoint, defaultOpts func() interface{}, exec api.RoutableFunc) {
601 methods := []string{endpoint.Method}
602 if alt, ok := altMethod[endpoint.Method]; ok {
603 methods = append(methods, alt)
605 rtr.mux.Methods(methods...).Path("/" + endpoint.Path).HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
606 logger := ctxlog.FromContext(req.Context())
607 params, err := rtr.loadRequestParams(req, endpoint.AttrsKey)
609 logger.WithFields(logrus.Fields{
611 "method": endpoint.Method,
612 "endpoint": endpoint,
613 }).WithError(err).Debug("error loading request params")
614 rtr.sendError(w, err)
617 opts := defaultOpts()
618 err = rtr.transcode(params, opts)
620 logger.WithField("params", params).WithError(err).Debugf("error transcoding params to %T", opts)
621 rtr.sendError(w, err)
624 respOpts, err := rtr.responseOptions(opts)
626 logger.WithField("opts", opts).WithError(err).Debugf("error getting response options from %T", opts)
627 rtr.sendError(w, err)
631 creds := auth.CredentialsFromRequest(req)
632 err = creds.LoadTokensFromHTTPRequestBody(req)
634 rtr.sendError(w, fmt.Errorf("error loading tokens from request body: %s", err))
637 if rt, _ := params["reader_tokens"].([]interface{}); len(rt) > 0 {
638 for _, t := range rt {
639 if t, ok := t.(string); ok {
640 creds.Tokens = append(creds.Tokens, t)
644 ctx := auth.NewContext(req.Context(), creds)
645 ctx = arvados.ContextWithRequestID(ctx, req.Header.Get("X-Request-Id"))
646 logger.WithFields(logrus.Fields{
647 "apiEndpoint": endpoint,
648 "apiOptsType": fmt.Sprintf("%T", opts),
651 // Extract the token UUIDs (or a placeholder for v1 tokens)
652 var tokenUUIDs []string
653 for _, t := range creds.Tokens {
654 if strings.HasPrefix(t, "v2/") {
655 tokenParts := strings.Split(t, "/")
656 if len(tokenParts) >= 3 {
657 tokenUUIDs = append(tokenUUIDs, tokenParts[1])
664 tokenUUIDs = append(tokenUUIDs, "v1 token ending in "+end)
667 httpserver.SetResponseLogFields(req.Context(), logrus.Fields{"tokenUUIDs": tokenUUIDs})
668 resp, err := exec(ctx, opts)
670 logger.WithError(err).Debugf("returning error type %T", err)
671 rtr.sendError(w, err)
674 rtr.sendResponse(w, req, resp, respOpts)
678 func (rtr *router) ServeHTTP(w http.ResponseWriter, r *http.Request) {
679 switch strings.SplitN(strings.TrimLeft(r.URL.Path, "/"), "/", 2)[0] {
680 case "login", "logout", "auth":
682 w.Header().Set("Access-Control-Allow-Origin", "*")
683 w.Header().Set("Access-Control-Allow-Methods", "GET, HEAD, PUT, POST, PATCH, DELETE")
684 w.Header().Set("Access-Control-Allow-Headers", "Authorization, Content-Type, X-Http-Method-Override")
685 w.Header().Set("Access-Control-Max-Age", "86486400")
687 if r.Method == "OPTIONS" {
691 // Wrap r.Body in a http.MaxBytesReader(), otherwise
692 // r.ParseForm() uses a default max request body size
693 // of 10 megabytes. Note we rely on the Nginx
694 // configuration to enforce the real max body size.
695 max := int64(rtr.config.MaxRequestSize)
697 max = math.MaxInt64 - 1
699 r.Body = http.MaxBytesReader(w, r.Body, max)
701 if r.Method == "POST" {
704 if err.Error() == "http: request body too large" {
705 err = httpError(http.StatusRequestEntityTooLarge, err)
707 rtr.sendError(w, err)
710 if m := r.FormValue("_method"); m != "" {
714 } else if m = r.Header.Get("X-Http-Method-Override"); m != "" {
720 rtr.mux.ServeHTTP(w, r)