21700: Install Bundler system-wide in Rails postinst
[arvados.git] / lib / controller / router / router.go
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 package router
6
7 import (
8         "context"
9         "fmt"
10         "math"
11         "net/http"
12         "strings"
13
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"
21 )
22
23 type router struct {
24         mux     *mux.Router
25         backend arvados.API
26         config  Config
27 }
28
29 type Config struct {
30         // Return an error if request body exceeds this size. 0 means
31         // unlimited.
32         MaxRequestSize int
33
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
38         // an example.
39         WrapCalls func(api.RoutableFunc) api.RoutableFunc
40 }
41
42 // New returns a new router (which implements the http.Handler
43 // interface) that serves requests by calling Arvados API methods on
44 // the given backend.
45 func New(backend arvados.API, config Config) *router {
46         rtr := &router{
47                 mux:     mux.NewRouter(),
48                 backend: backend,
49                 config:  config,
50         }
51         rtr.addRoutes()
52         return rtr
53 }
54
55 func (rtr *router) addRoutes() {
56         for _, route := range []struct {
57                 endpoint    arvados.APIEndpoint
58                 defaultOpts func() interface{}
59                 exec        api.RoutableFunc
60         }{
61                 {
62                         arvados.EndpointConfigGet,
63                         func() interface{} { return &struct{}{} },
64                         func(ctx context.Context, opts interface{}) (interface{}, error) {
65                                 return rtr.backend.ConfigGet(ctx)
66                         },
67                 },
68                 {
69                         arvados.EndpointVocabularyGet,
70                         func() interface{} { return &struct{}{} },
71                         func(ctx context.Context, opts interface{}) (interface{}, error) {
72                                 return rtr.backend.VocabularyGet(ctx)
73                         },
74                 },
75                 {
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))
80                         },
81                 },
82                 {
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))
87                         },
88                 },
89                 {
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))
94                         },
95                 },
96                 {
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))
101                         },
102                 },
103                 {
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))
108                         },
109                 },
110                 {
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))
115                         },
116                 },
117                 {
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))
122                         },
123                 },
124                 {
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))
129                         },
130                 },
131                 {
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))
136                         },
137                 },
138                 {
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))
143                         },
144                 },
145                 {
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))
150                         },
151                 },
152                 {
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))
157                         },
158                 },
159                 {
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))
164                         },
165                 },
166                 {
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))
171                         },
172                 },
173                 {
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))
178                         },
179                 },
180                 {
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))
185                         },
186                 },
187                 {
188                         arvados.EndpointContainerCreate,
189                         func() interface{} { return &arvados.CreateOptions{} },
190                         func(ctx context.Context, opts interface{}) (interface{}, error) {
191                                 return rtr.backend.ContainerCreate(ctx, *opts.(*arvados.CreateOptions))
192                         },
193                 },
194                 {
195                         arvados.EndpointContainerPriorityUpdate,
196                         func() interface{} { return &arvados.UpdateOptions{} },
197                         func(ctx context.Context, opts interface{}) (interface{}, error) {
198                                 return rtr.backend.ContainerPriorityUpdate(ctx, *opts.(*arvados.UpdateOptions))
199                         },
200                 },
201                 {
202                         arvados.EndpointContainerUpdate,
203                         func() interface{} { return &arvados.UpdateOptions{} },
204                         func(ctx context.Context, opts interface{}) (interface{}, error) {
205                                 return rtr.backend.ContainerUpdate(ctx, *opts.(*arvados.UpdateOptions))
206                         },
207                 },
208                 {
209                         arvados.EndpointContainerGet,
210                         func() interface{} { return &arvados.GetOptions{} },
211                         func(ctx context.Context, opts interface{}) (interface{}, error) {
212                                 return rtr.backend.ContainerGet(ctx, *opts.(*arvados.GetOptions))
213                         },
214                 },
215                 {
216                         arvados.EndpointContainerList,
217                         func() interface{} { return &arvados.ListOptions{Limit: -1} },
218                         func(ctx context.Context, opts interface{}) (interface{}, error) {
219                                 return rtr.backend.ContainerList(ctx, *opts.(*arvados.ListOptions))
220                         },
221                 },
222                 {
223                         arvados.EndpointContainerDelete,
224                         func() interface{} { return &arvados.DeleteOptions{} },
225                         func(ctx context.Context, opts interface{}) (interface{}, error) {
226                                 return rtr.backend.ContainerDelete(ctx, *opts.(*arvados.DeleteOptions))
227                         },
228                 },
229                 {
230                         arvados.EndpointContainerLock,
231                         func() interface{} {
232                                 return &arvados.GetOptions{Select: []string{"uuid", "state", "priority", "auth_uuid", "locked_by_uuid"}}
233                         },
234                         func(ctx context.Context, opts interface{}) (interface{}, error) {
235                                 return rtr.backend.ContainerLock(ctx, *opts.(*arvados.GetOptions))
236                         },
237                 },
238                 {
239                         arvados.EndpointContainerUnlock,
240                         func() interface{} {
241                                 return &arvados.GetOptions{Select: []string{"uuid", "state", "priority", "auth_uuid", "locked_by_uuid"}}
242                         },
243                         func(ctx context.Context, opts interface{}) (interface{}, error) {
244                                 return rtr.backend.ContainerUnlock(ctx, *opts.(*arvados.GetOptions))
245                         },
246                 },
247                 {
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))
252                         },
253                 },
254                 {
255                         arvados.EndpointContainerSSHCompat,
256                         func() interface{} { return &arvados.ContainerSSHOptions{} },
257                         func(ctx context.Context, opts interface{}) (interface{}, error) {
258                                 return rtr.backend.ContainerSSH(ctx, *opts.(*arvados.ContainerSSHOptions))
259                         },
260                 },
261                 {
262                         // arvados-client built before commit
263                         // bdc29d3129f6d75aa9ce0a24ffb849a272b06f08
264                         // used GET with params in headers instead of
265                         // POST form
266                         arvados.APIEndpoint{"GET", "arvados/v1/connect/{uuid}/ssh", ""},
267                         func() interface{} { return &arvados.ContainerSSHOptions{} },
268                         func(ctx context.Context, opts interface{}) (interface{}, error) {
269                                 return nil, httpError(http.StatusGone, fmt.Errorf("API endpoint is obsolete -- please upgrade your arvados-client program"))
270                         },
271                 },
272                 {
273                         arvados.EndpointContainerGatewayTunnel,
274                         func() interface{} { return &arvados.ContainerGatewayTunnelOptions{} },
275                         func(ctx context.Context, opts interface{}) (interface{}, error) {
276                                 return rtr.backend.ContainerGatewayTunnel(ctx, *opts.(*arvados.ContainerGatewayTunnelOptions))
277                         },
278                 },
279                 {
280                         arvados.EndpointContainerGatewayTunnelCompat,
281                         func() interface{} { return &arvados.ContainerGatewayTunnelOptions{} },
282                         func(ctx context.Context, opts interface{}) (interface{}, error) {
283                                 return rtr.backend.ContainerGatewayTunnel(ctx, *opts.(*arvados.ContainerGatewayTunnelOptions))
284                         },
285                 },
286                 {
287                         arvados.EndpointContainerRequestCreate,
288                         func() interface{} { return &arvados.CreateOptions{} },
289                         func(ctx context.Context, opts interface{}) (interface{}, error) {
290                                 return rtr.backend.ContainerRequestCreate(ctx, *opts.(*arvados.CreateOptions))
291                         },
292                 },
293                 {
294                         arvados.EndpointContainerRequestUpdate,
295                         func() interface{} { return &arvados.UpdateOptions{} },
296                         func(ctx context.Context, opts interface{}) (interface{}, error) {
297                                 return rtr.backend.ContainerRequestUpdate(ctx, *opts.(*arvados.UpdateOptions))
298                         },
299                 },
300                 {
301                         arvados.EndpointContainerRequestGet,
302                         func() interface{} { return &arvados.GetOptions{} },
303                         func(ctx context.Context, opts interface{}) (interface{}, error) {
304                                 return rtr.backend.ContainerRequestGet(ctx, *opts.(*arvados.GetOptions))
305                         },
306                 },
307                 {
308                         arvados.EndpointContainerRequestList,
309                         func() interface{} { return &arvados.ListOptions{Limit: -1} },
310                         func(ctx context.Context, opts interface{}) (interface{}, error) {
311                                 return rtr.backend.ContainerRequestList(ctx, *opts.(*arvados.ListOptions))
312                         },
313                 },
314                 {
315                         arvados.EndpointContainerRequestDelete,
316                         func() interface{} { return &arvados.DeleteOptions{} },
317                         func(ctx context.Context, opts interface{}) (interface{}, error) {
318                                 return rtr.backend.ContainerRequestDelete(ctx, *opts.(*arvados.DeleteOptions))
319                         },
320                 },
321                 {
322                         arvados.EndpointContainerRequestContainerStatus,
323                         func() interface{} { return &arvados.GetOptions{} },
324                         func(ctx context.Context, opts interface{}) (interface{}, error) {
325                                 return rtr.backend.ContainerRequestContainerStatus(ctx, *opts.(*arvados.GetOptions))
326                         },
327                 },
328                 {
329                         arvados.EndpointContainerRequestLog,
330                         func() interface{} { return &arvados.ContainerLogOptions{} },
331                         func(ctx context.Context, opts interface{}) (interface{}, error) {
332                                 return rtr.backend.ContainerRequestLog(ctx, *opts.(*arvados.ContainerLogOptions))
333                         },
334                 },
335                 {
336                         arvados.EndpointGroupCreate,
337                         func() interface{} { return &arvados.CreateOptions{} },
338                         func(ctx context.Context, opts interface{}) (interface{}, error) {
339                                 return rtr.backend.GroupCreate(ctx, *opts.(*arvados.CreateOptions))
340                         },
341                 },
342                 {
343                         arvados.EndpointGroupUpdate,
344                         func() interface{} { return &arvados.UpdateOptions{} },
345                         func(ctx context.Context, opts interface{}) (interface{}, error) {
346                                 return rtr.backend.GroupUpdate(ctx, *opts.(*arvados.UpdateOptions))
347                         },
348                 },
349                 {
350                         arvados.EndpointGroupList,
351                         func() interface{} { return &arvados.ListOptions{Limit: -1} },
352                         func(ctx context.Context, opts interface{}) (interface{}, error) {
353                                 return rtr.backend.GroupList(ctx, *opts.(*arvados.ListOptions))
354                         },
355                 },
356                 {
357                         arvados.EndpointGroupContents,
358                         func() interface{} { return &arvados.GroupContentsOptions{Limit: -1} },
359                         func(ctx context.Context, opts interface{}) (interface{}, error) {
360                                 return rtr.backend.GroupContents(ctx, *opts.(*arvados.GroupContentsOptions))
361                         },
362                 },
363                 {
364                         arvados.EndpointGroupContentsUUIDInPath,
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))
368                         },
369                 },
370                 {
371                         arvados.EndpointGroupShared,
372                         func() interface{} { return &arvados.ListOptions{Limit: -1} },
373                         func(ctx context.Context, opts interface{}) (interface{}, error) {
374                                 return rtr.backend.GroupShared(ctx, *opts.(*arvados.ListOptions))
375                         },
376                 },
377                 {
378                         arvados.EndpointGroupGet,
379                         func() interface{} { return &arvados.GetOptions{} },
380                         func(ctx context.Context, opts interface{}) (interface{}, error) {
381                                 return rtr.backend.GroupGet(ctx, *opts.(*arvados.GetOptions))
382                         },
383                 },
384                 {
385                         arvados.EndpointGroupDelete,
386                         func() interface{} { return &arvados.DeleteOptions{} },
387                         func(ctx context.Context, opts interface{}) (interface{}, error) {
388                                 return rtr.backend.GroupDelete(ctx, *opts.(*arvados.DeleteOptions))
389                         },
390                 },
391                 {
392                         arvados.EndpointGroupTrash,
393                         func() interface{} { return &arvados.DeleteOptions{} },
394                         func(ctx context.Context, opts interface{}) (interface{}, error) {
395                                 return rtr.backend.GroupTrash(ctx, *opts.(*arvados.DeleteOptions))
396                         },
397                 },
398                 {
399                         arvados.EndpointGroupUntrash,
400                         func() interface{} { return &arvados.UntrashOptions{} },
401                         func(ctx context.Context, opts interface{}) (interface{}, error) {
402                                 return rtr.backend.GroupUntrash(ctx, *opts.(*arvados.UntrashOptions))
403                         },
404                 },
405                 {
406                         arvados.EndpointLinkCreate,
407                         func() interface{} { return &arvados.CreateOptions{} },
408                         func(ctx context.Context, opts interface{}) (interface{}, error) {
409                                 return rtr.backend.LinkCreate(ctx, *opts.(*arvados.CreateOptions))
410                         },
411                 },
412                 {
413                         arvados.EndpointLinkUpdate,
414                         func() interface{} { return &arvados.UpdateOptions{} },
415                         func(ctx context.Context, opts interface{}) (interface{}, error) {
416                                 return rtr.backend.LinkUpdate(ctx, *opts.(*arvados.UpdateOptions))
417                         },
418                 },
419                 {
420                         arvados.EndpointLinkList,
421                         func() interface{} { return &arvados.ListOptions{Limit: -1} },
422                         func(ctx context.Context, opts interface{}) (interface{}, error) {
423                                 return rtr.backend.LinkList(ctx, *opts.(*arvados.ListOptions))
424                         },
425                 },
426                 {
427                         arvados.EndpointLinkGet,
428                         func() interface{} { return &arvados.GetOptions{} },
429                         func(ctx context.Context, opts interface{}) (interface{}, error) {
430                                 return rtr.backend.LinkGet(ctx, *opts.(*arvados.GetOptions))
431                         },
432                 },
433                 {
434                         arvados.EndpointLinkDelete,
435                         func() interface{} { return &arvados.DeleteOptions{} },
436                         func(ctx context.Context, opts interface{}) (interface{}, error) {
437                                 return rtr.backend.LinkDelete(ctx, *opts.(*arvados.DeleteOptions))
438                         },
439                 },
440                 {
441                         arvados.EndpointLogCreate,
442                         func() interface{} { return &arvados.CreateOptions{} },
443                         func(ctx context.Context, opts interface{}) (interface{}, error) {
444                                 return rtr.backend.LogCreate(ctx, *opts.(*arvados.CreateOptions))
445                         },
446                 },
447                 {
448                         arvados.EndpointLogUpdate,
449                         func() interface{} { return &arvados.UpdateOptions{} },
450                         func(ctx context.Context, opts interface{}) (interface{}, error) {
451                                 return rtr.backend.LogUpdate(ctx, *opts.(*arvados.UpdateOptions))
452                         },
453                 },
454                 {
455                         arvados.EndpointLogList,
456                         func() interface{} { return &arvados.ListOptions{Limit: -1} },
457                         func(ctx context.Context, opts interface{}) (interface{}, error) {
458                                 return rtr.backend.LogList(ctx, *opts.(*arvados.ListOptions))
459                         },
460                 },
461                 {
462                         arvados.EndpointLogGet,
463                         func() interface{} { return &arvados.GetOptions{} },
464                         func(ctx context.Context, opts interface{}) (interface{}, error) {
465                                 return rtr.backend.LogGet(ctx, *opts.(*arvados.GetOptions))
466                         },
467                 },
468                 {
469                         arvados.EndpointLogDelete,
470                         func() interface{} { return &arvados.DeleteOptions{} },
471                         func(ctx context.Context, opts interface{}) (interface{}, error) {
472                                 return rtr.backend.LogDelete(ctx, *opts.(*arvados.DeleteOptions))
473                         },
474                 },
475                 {
476                         arvados.EndpointSpecimenCreate,
477                         func() interface{} { return &arvados.CreateOptions{} },
478                         func(ctx context.Context, opts interface{}) (interface{}, error) {
479                                 return rtr.backend.SpecimenCreate(ctx, *opts.(*arvados.CreateOptions))
480                         },
481                 },
482                 {
483                         arvados.EndpointSpecimenUpdate,
484                         func() interface{} { return &arvados.UpdateOptions{} },
485                         func(ctx context.Context, opts interface{}) (interface{}, error) {
486                                 return rtr.backend.SpecimenUpdate(ctx, *opts.(*arvados.UpdateOptions))
487                         },
488                 },
489                 {
490                         arvados.EndpointSpecimenGet,
491                         func() interface{} { return &arvados.GetOptions{} },
492                         func(ctx context.Context, opts interface{}) (interface{}, error) {
493                                 return rtr.backend.SpecimenGet(ctx, *opts.(*arvados.GetOptions))
494                         },
495                 },
496                 {
497                         arvados.EndpointSpecimenList,
498                         func() interface{} { return &arvados.ListOptions{Limit: -1} },
499                         func(ctx context.Context, opts interface{}) (interface{}, error) {
500                                 return rtr.backend.SpecimenList(ctx, *opts.(*arvados.ListOptions))
501                         },
502                 },
503                 {
504                         arvados.EndpointSpecimenDelete,
505                         func() interface{} { return &arvados.DeleteOptions{} },
506                         func(ctx context.Context, opts interface{}) (interface{}, error) {
507                                 return rtr.backend.SpecimenDelete(ctx, *opts.(*arvados.DeleteOptions))
508                         },
509                 },
510                 {
511                         arvados.EndpointAPIClientAuthorizationCreate,
512                         func() interface{} { return &arvados.CreateOptions{} },
513                         func(ctx context.Context, opts interface{}) (interface{}, error) {
514                                 return rtr.backend.APIClientAuthorizationCreate(ctx, *opts.(*arvados.CreateOptions))
515                         },
516                 },
517                 {
518                         arvados.EndpointAPIClientAuthorizationUpdate,
519                         func() interface{} { return &arvados.UpdateOptions{} },
520                         func(ctx context.Context, opts interface{}) (interface{}, error) {
521                                 return rtr.backend.APIClientAuthorizationUpdate(ctx, *opts.(*arvados.UpdateOptions))
522                         },
523                 },
524                 {
525                         arvados.EndpointAPIClientAuthorizationDelete,
526                         func() interface{} { return &arvados.DeleteOptions{} },
527                         func(ctx context.Context, opts interface{}) (interface{}, error) {
528                                 return rtr.backend.APIClientAuthorizationDelete(ctx, *opts.(*arvados.DeleteOptions))
529                         },
530                 },
531                 {
532                         arvados.EndpointAPIClientAuthorizationList,
533                         func() interface{} { return &arvados.ListOptions{Limit: -1} },
534                         func(ctx context.Context, opts interface{}) (interface{}, error) {
535                                 return rtr.backend.APIClientAuthorizationList(ctx, *opts.(*arvados.ListOptions))
536                         },
537                 },
538                 {
539                         arvados.EndpointAPIClientAuthorizationCurrent,
540                         func() interface{} { return &arvados.GetOptions{} },
541                         func(ctx context.Context, opts interface{}) (interface{}, error) {
542                                 return rtr.backend.APIClientAuthorizationCurrent(ctx, *opts.(*arvados.GetOptions))
543                         },
544                 },
545                 {
546                         arvados.EndpointAPIClientAuthorizationGet,
547                         func() interface{} { return &arvados.GetOptions{} },
548                         func(ctx context.Context, opts interface{}) (interface{}, error) {
549                                 return rtr.backend.APIClientAuthorizationGet(ctx, *opts.(*arvados.GetOptions))
550                         },
551                 },
552                 {
553                         arvados.EndpointUserCreate,
554                         func() interface{} { return &arvados.CreateOptions{} },
555                         func(ctx context.Context, opts interface{}) (interface{}, error) {
556                                 return rtr.backend.UserCreate(ctx, *opts.(*arvados.CreateOptions))
557                         },
558                 },
559                 {
560                         arvados.EndpointUserMerge,
561                         func() interface{} { return &arvados.UserMergeOptions{} },
562                         func(ctx context.Context, opts interface{}) (interface{}, error) {
563                                 return rtr.backend.UserMerge(ctx, *opts.(*arvados.UserMergeOptions))
564                         },
565                 },
566                 {
567                         arvados.EndpointUserActivate,
568                         func() interface{} { return &arvados.UserActivateOptions{} },
569                         func(ctx context.Context, opts interface{}) (interface{}, error) {
570                                 return rtr.backend.UserActivate(ctx, *opts.(*arvados.UserActivateOptions))
571                         },
572                 },
573                 {
574                         arvados.EndpointUserSetup,
575                         func() interface{} { return &arvados.UserSetupOptions{} },
576                         func(ctx context.Context, opts interface{}) (interface{}, error) {
577                                 return rtr.backend.UserSetup(ctx, *opts.(*arvados.UserSetupOptions))
578                         },
579                 },
580                 {
581                         arvados.EndpointUserUnsetup,
582                         func() interface{} { return &arvados.GetOptions{} },
583                         func(ctx context.Context, opts interface{}) (interface{}, error) {
584                                 return rtr.backend.UserUnsetup(ctx, *opts.(*arvados.GetOptions))
585                         },
586                 },
587                 {
588                         arvados.EndpointUserGetCurrent,
589                         func() interface{} { return &arvados.GetOptions{} },
590                         func(ctx context.Context, opts interface{}) (interface{}, error) {
591                                 return rtr.backend.UserGetCurrent(ctx, *opts.(*arvados.GetOptions))
592                         },
593                 },
594                 {
595                         arvados.EndpointUserGetSystem,
596                         func() interface{} { return &arvados.GetOptions{} },
597                         func(ctx context.Context, opts interface{}) (interface{}, error) {
598                                 return rtr.backend.UserGetSystem(ctx, *opts.(*arvados.GetOptions))
599                         },
600                 },
601                 {
602                         arvados.EndpointUserGet,
603                         func() interface{} { return &arvados.GetOptions{} },
604                         func(ctx context.Context, opts interface{}) (interface{}, error) {
605                                 return rtr.backend.UserGet(ctx, *opts.(*arvados.GetOptions))
606                         },
607                 },
608                 {
609                         arvados.EndpointUserUpdate,
610                         func() interface{} { return &arvados.UpdateOptions{} },
611                         func(ctx context.Context, opts interface{}) (interface{}, error) {
612                                 return rtr.backend.UserUpdate(ctx, *opts.(*arvados.UpdateOptions))
613                         },
614                 },
615                 {
616                         arvados.EndpointUserList,
617                         func() interface{} { return &arvados.ListOptions{Limit: -1} },
618                         func(ctx context.Context, opts interface{}) (interface{}, error) {
619                                 return rtr.backend.UserList(ctx, *opts.(*arvados.ListOptions))
620                         },
621                 },
622                 {
623                         arvados.EndpointUserBatchUpdate,
624                         func() interface{} { return &arvados.UserBatchUpdateOptions{} },
625                         func(ctx context.Context, opts interface{}) (interface{}, error) {
626                                 return rtr.backend.UserBatchUpdate(ctx, *opts.(*arvados.UserBatchUpdateOptions))
627                         },
628                 },
629                 {
630                         arvados.EndpointUserDelete,
631                         func() interface{} { return &arvados.DeleteOptions{} },
632                         func(ctx context.Context, opts interface{}) (interface{}, error) {
633                                 return rtr.backend.UserDelete(ctx, *opts.(*arvados.DeleteOptions))
634                         },
635                 },
636                 {
637                         arvados.EndpointUserAuthenticate,
638                         func() interface{} { return &arvados.UserAuthenticateOptions{} },
639                         func(ctx context.Context, opts interface{}) (interface{}, error) {
640                                 return rtr.backend.UserAuthenticate(ctx, *opts.(*arvados.UserAuthenticateOptions))
641                         },
642                 },
643         } {
644                 exec := route.exec
645                 if rtr.config.WrapCalls != nil {
646                         exec = rtr.config.WrapCalls(exec)
647                 }
648                 rtr.addRoute(route.endpoint, route.defaultOpts, exec)
649         }
650         rtr.mux.NotFoundHandler = http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
651                 if req.Method == "OPTIONS" {
652                         // For non-webdav endpoints, return an empty
653                         // response with the CORS headers we already
654                         // added in ServeHTTP.
655                         w.WriteHeader(http.StatusOK)
656                         return
657                 }
658                 httpserver.Errors(w, []string{"API endpoint not found"}, http.StatusNotFound)
659         })
660         rtr.mux.MethodNotAllowedHandler = http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
661                 if req.Method == "OPTIONS" {
662                         // For non-webdav endpoints, return an empty
663                         // response with the CORS headers we already
664                         // added in ServeHTTP.
665                         w.WriteHeader(http.StatusOK)
666                         return
667                 }
668                 httpserver.Errors(w, []string{"API endpoint not found"}, http.StatusMethodNotAllowed)
669         })
670 }
671
672 var altMethod = map[string]string{
673         "PATCH": "PUT",  // Accept PUT as a synonym for PATCH
674         "GET":   "HEAD", // Accept HEAD at any GET route
675 }
676
677 func (rtr *router) addRoute(endpoint arvados.APIEndpoint, defaultOpts func() interface{}, exec api.RoutableFunc) {
678         methods := []string{endpoint.Method}
679         if alt, ok := altMethod[endpoint.Method]; ok {
680                 methods = append(methods, alt)
681         }
682         if strings.HasSuffix(endpoint.Path, ".*}") {
683                 // webdav methods
684                 methods = append(methods, "OPTIONS", "PROPFIND")
685         }
686         rtr.mux.Methods(methods...).Path("/" + endpoint.Path).HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
687                 logger := ctxlog.FromContext(req.Context())
688                 opts := defaultOpts()
689                 params, err := rtr.loadRequestParams(req, endpoint.AttrsKey, opts)
690                 if err != nil {
691                         logger.WithFields(logrus.Fields{
692                                 "req":      req,
693                                 "method":   endpoint.Method,
694                                 "endpoint": endpoint,
695                         }).WithError(err).Debug("error loading request params")
696                         rtr.sendError(w, err)
697                         return
698                 }
699                 respOpts, err := rtr.responseOptions(opts)
700                 if err != nil {
701                         logger.WithField("opts", opts).WithError(err).Debugf("error getting response options from %T", opts)
702                         rtr.sendError(w, err)
703                         return
704                 }
705
706                 creds := auth.CredentialsFromRequest(req)
707                 err = creds.LoadTokensFromHTTPRequestBody(req)
708                 if err != nil {
709                         rtr.sendError(w, fmt.Errorf("error loading tokens from request body: %s", err))
710                         return
711                 }
712                 if rt, _ := params["reader_tokens"].([]interface{}); len(rt) > 0 {
713                         for _, t := range rt {
714                                 if t, ok := t.(string); ok {
715                                         creds.Tokens = append(creds.Tokens, t)
716                                 }
717                         }
718                 }
719                 ctx := auth.NewContext(req.Context(), creds)
720                 ctx = arvados.ContextWithRequestID(ctx, req.Header.Get("X-Request-Id"))
721                 req = req.WithContext(ctx)
722
723                 // Extract the token UUIDs (or a placeholder for v1 tokens)
724                 var tokenUUIDs []string
725                 for _, t := range creds.Tokens {
726                         if strings.HasPrefix(t, "v2/") {
727                                 tokenParts := strings.Split(t, "/")
728                                 if len(tokenParts) >= 3 {
729                                         tokenUUIDs = append(tokenUUIDs, tokenParts[1])
730                                 }
731                         } else {
732                                 end := t
733                                 if len(t) > 5 {
734                                         end = t[len(t)-5:]
735                                 }
736                                 tokenUUIDs = append(tokenUUIDs, "v1 token ending in "+end)
737                         }
738                 }
739                 httpserver.SetResponseLogFields(ctx, logrus.Fields{"tokenUUIDs": tokenUUIDs})
740
741                 logger.WithFields(logrus.Fields{
742                         "apiEndpoint": endpoint,
743                         "apiOptsType": fmt.Sprintf("%T", opts),
744                         "apiOpts":     opts,
745                 }).Debug("exec")
746                 resp, err := exec(ctx, opts)
747                 if err != nil {
748                         logger.WithError(err).Debugf("returning error type %T", err)
749                         rtr.sendError(w, err)
750                         return
751                 }
752                 rtr.sendResponse(w, req, resp, respOpts)
753         })
754 }
755
756 func (rtr *router) ServeHTTP(w http.ResponseWriter, r *http.Request) {
757         switch strings.SplitN(strings.TrimLeft(r.URL.Path, "/"), "/", 2)[0] {
758         case "login", "logout", "auth":
759         default:
760                 w.Header().Set("Access-Control-Allow-Origin", "*")
761                 w.Header().Set("Access-Control-Allow-Methods", "GET, HEAD, OPTIONS, PROPFIND, PUT, POST, PATCH, DELETE")
762                 w.Header().Set("Access-Control-Allow-Headers", "Authorization, Content-Type, Range, X-Http-Method-Override")
763                 w.Header().Set("Access-Control-Expose-Headers", "Content-Range")
764                 w.Header().Set("Access-Control-Max-Age", "86486400")
765         }
766         if r.Body != nil {
767                 // Wrap r.Body in a http.MaxBytesReader(), otherwise
768                 // r.ParseForm() uses a default max request body size
769                 // of 10 megabytes. Note we rely on the Nginx
770                 // configuration to enforce the real max body size.
771                 max := int64(rtr.config.MaxRequestSize)
772                 if max < 1 {
773                         max = math.MaxInt64 - 1
774                 }
775                 r.Body = http.MaxBytesReader(w, r.Body, max)
776         }
777         if r.Method == "POST" {
778                 err := r.ParseForm()
779                 if err != nil {
780                         if err.Error() == "http: request body too large" {
781                                 err = httpError(http.StatusRequestEntityTooLarge, err)
782                         }
783                         rtr.sendError(w, err)
784                         return
785                 }
786                 if m := r.FormValue("_method"); m != "" {
787                         r2 := *r
788                         r = &r2
789                         r.Method = m
790                 } else if m = r.Header.Get("X-Http-Method-Override"); m != "" {
791                         r2 := *r
792                         r = &r2
793                         r.Method = m
794                 }
795         }
796         rtr.mux.ServeHTTP(w, r)
797 }