X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/47d1bc31bf9ee554665881c562ca2dea9acf9e22..ab832f5a22db3debbd13cacbee9cf69d68d7075c:/lib/controller/rpc/conn.go diff --git a/lib/controller/rpc/conn.go b/lib/controller/rpc/conn.go index 010963cfe7..9856eb5760 100644 --- a/lib/controller/rpc/conn.go +++ b/lib/controller/rpc/conn.go @@ -16,6 +16,7 @@ import ( "io/ioutil" "net" "net/http" + "net/http/httputil" "net/url" "strconv" "strings" @@ -338,11 +339,31 @@ func (conn *Conn) ContainerUnlock(ctx context.Context, options arvados.GetOption return resp, err } +func (conn *Conn) ContainerLog(ctx context.Context, options arvados.ContainerLogOptions) (resp http.Handler, err error) { + tokens, err := conn.tokenProvider(ctx) + if err != nil { + return nil, err + } else if len(tokens) < 1 { + return nil, httpserver.ErrorWithStatus(errors.New("unauthorized"), http.StatusUnauthorized) + } + proxy := &httputil.ReverseProxy{ + Transport: conn.httpClient.Transport, + Director: func(r *http.Request) { + u := conn.baseURL + u.Path = r.URL.Path + u.RawQuery = fmt.Sprintf("no_forward=%v", options.NoForward) + r.URL = &u + r.Header.Set("Authorization", "Bearer "+tokens[0]) + }, + } + return proxy, nil +} + // ContainerSSH returns a connection to the out-of-band SSH server for // a running container. If the returned error is nil, the caller is // responsible for closing sshconn.Conn. func (conn *Conn) ContainerSSH(ctx context.Context, options arvados.ContainerSSHOptions) (sshconn arvados.ConnectionResponse, err error) { - u, err := conn.baseURL.Parse("/" + strings.Replace(arvados.EndpointContainerSSH.Path, "{uuid}", options.UUID, -1)) + u, err := conn.baseURL.Parse("/" + strings.Replace(arvados.EndpointContainerSSHCompat.Path, "{uuid}", options.UUID, -1)) if err != nil { err = fmt.Errorf("url.Parse: %w", err) return @@ -358,7 +379,7 @@ func (conn *Conn) ContainerSSH(ctx context.Context, options arvados.ContainerSSH // the controller. The caller should connect the returned resp.Conn to // a client-side yamux session. func (conn *Conn) ContainerGatewayTunnel(ctx context.Context, options arvados.ContainerGatewayTunnelOptions) (tunnelconn arvados.ConnectionResponse, err error) { - u, err := conn.baseURL.Parse("/" + strings.Replace(arvados.EndpointContainerGatewayTunnel.Path, "{uuid}", options.UUID, -1)) + u, err := conn.baseURL.Parse("/" + strings.Replace(arvados.EndpointContainerGatewayTunnelCompat.Path, "{uuid}", options.UUID, -1)) if err != nil { err = fmt.Errorf("url.Parse: %w", err) return