X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/bd583d21bb62894a5960b10bf81b375fe6336267..86df40e33e586ccb4dc506e00f773392d454804c:/sdk/go/arvadosclient/arvadosclient.go?ds=sidebyside diff --git a/sdk/go/arvadosclient/arvadosclient.go b/sdk/go/arvadosclient/arvadosclient.go index e43162fac7..ab2d9b29ea 100644 --- a/sdk/go/arvadosclient/arvadosclient.go +++ b/sdk/go/arvadosclient/arvadosclient.go @@ -23,6 +23,7 @@ var PDHMatch StringMatcher = regexp.MustCompile(`^[0-9a-f]{32}\+\d+$`).MatchStri var MissingArvadosApiHost = errors.New("Missing required environment variable ARVADOS_API_HOST") var MissingArvadosApiToken = errors.New("Missing required environment variable ARVADOS_API_TOKEN") +var ErrInvalidArgument = errors.New("Invalid argument") // Indicates an error that was returned by the API server. type APIServerError struct { @@ -81,13 +82,25 @@ type ArvadosClient struct { // variables ARVADOS_API_HOST, ARVADOS_API_TOKEN, and (optionally) // ARVADOS_API_HOST_INSECURE. func MakeArvadosClient() (ac ArvadosClient, err error) { + config := make(map[string]string) + config["ARVADOS_API_TOKEN"] = os.Getenv("ARVADOS_API_TOKEN") + config["ARVADOS_API_HOST"] = os.Getenv("ARVADOS_API_HOST") + config["ARVADOS_API_HOST_INSECURE"] = os.Getenv("ARVADOS_API_HOST_INSECURE") + config["ARVADOS_EXTERNAL_CLIENT"] = os.Getenv("ARVADOS_EXTERNAL_CLIENT") + + return MakeArvadosClientWithConfig(config) +} + +// Create a new ArvadosClient, using the given input parameters. +func MakeArvadosClientWithConfig(config map[string]string) (ac ArvadosClient, err error) { var matchTrue = regexp.MustCompile("^(?i:1|yes|true)$") - insecure := matchTrue.MatchString(os.Getenv("ARVADOS_API_HOST_INSECURE")) - external := matchTrue.MatchString(os.Getenv("ARVADOS_EXTERNAL_CLIENT")) + + insecure := matchTrue.MatchString(config["ARVADOS_API_HOST_INSECURE"]) + external := matchTrue.MatchString(config["ARVADOS_EXTERNAL_CLIENT"]) ac = ArvadosClient{ - ApiServer: os.Getenv("ARVADOS_API_HOST"), - ApiToken: os.Getenv("ARVADOS_API_TOKEN"), + ApiServer: config["ARVADOS_API_HOST"], + ApiToken: config["ARVADOS_API_TOKEN"], ApiInsecure: insecure, Client: &http.Client{Transport: &http.Transport{ TLSClientConfig: &tls.Config{InsecureSkipVerify: insecure}}}, @@ -247,16 +260,12 @@ func (c ArvadosClient) Update(resourceType string, uuid string, parameters Dict, // Get a resource. See Call for argument descriptions. func (c ArvadosClient) Get(resourceType string, uuid string, parameters Dict, output interface{}) (err error) { - if uuid == "" { + if !UUIDMatch(uuid) && !(resourceType == "collections" && PDHMatch(uuid)) { // No object has uuid == "": there is no need to make // an API call. Furthermore, the HTTP request for such // an API call would be "GET /arvados/v1/type/", which // is liable to be misinterpreted as the List API. - return APIServerError{ - ServerAddress: c.ApiServer, - HttpStatusCode: http.StatusNotFound, - HttpStatusMessage: "Not Found", - } + return ErrInvalidArgument } return c.Call("GET", resourceType, uuid, "", parameters, output) } @@ -268,7 +277,10 @@ func (c ArvadosClient) List(resource string, parameters Dict, output interface{} const API_DISCOVERY_RESOURCE = "discovery/v1/apis/arvados/v1/rest" -// Discovery returns the value of the given parameter in the discovery document. +// Discovery returns the value of the given parameter in the discovery +// document. Returns a non-nil error if the discovery document cannot +// be retrieved/decoded. Returns ErrInvalidArgument if the requested +// parameter is not found in the discovery document. func (c *ArvadosClient) Discovery(parameter string) (value interface{}, err error) { if len(c.DiscoveryDoc) == 0 { c.DiscoveryDoc = make(Dict) @@ -283,6 +295,6 @@ func (c *ArvadosClient) Discovery(parameter string) (value interface{}, err erro if found { return value, nil } else { - return value, errors.New("Not found") + return value, ErrInvalidArgument } }