| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- /*
- Copyright © The ESO Authors
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- https://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- */
- package secretmanager
- import (
- "encoding/json"
- "fmt"
- "net/http"
- )
- // EndpointsURI is the URI for getting the actual Cloud.ru API endpoints.
- const EndpointsURI = "https://api.cloud.ru/endpoints"
- // EndpointsResponse is a response from the Cloud.ru API.
- type EndpointsResponse struct {
- // Endpoints contains the list of actual API addresses of Cloud.ru products.
- Endpoints []Endpoint `json:"endpoints"`
- }
- // Endpoint is a product API address.
- type Endpoint struct {
- ID string `json:"id"`
- Address string `json:"address"`
- }
- // GetEndpoints returns the actual Cloud.ru API endpoints.
- func GetEndpoints(url string) (*EndpointsResponse, error) {
- // Validate that the URL is the expected Cloud.ru endpoints URL to prevent SSRF
- if url != EndpointsURI {
- return nil, fmt.Errorf("invalid endpoints URL: expected %s, got %s", EndpointsURI, url)
- }
- req, err := http.NewRequest(http.MethodGet, url, http.NoBody) //nolint:gosec // URL is validated against EndpointsURI above
- if err != nil {
- return nil, fmt.Errorf("construct HTTP request for cloud.ru endpoints: %w", err)
- }
- resp, err := http.DefaultClient.Do(req) //nolint:gosec // URL is validated against EndpointsURI above
- if err != nil {
- return nil, fmt.Errorf("get cloud.ru endpoints: %w", err)
- }
- defer func() {
- _ = resp.Body.Close()
- }()
- if resp.StatusCode != http.StatusOK {
- return nil, fmt.Errorf("get cloud.ru endpoints: unexpected status code %d", resp.StatusCode)
- }
- var endpoints EndpointsResponse
- if err = json.NewDecoder(resp.Body).Decode(&endpoints); err != nil {
- return nil, fmt.Errorf("decode cloud.ru endpoints: %w", err)
- }
- return &endpoints, nil
- }
- // Get returns the API address of the product by its ID.
- // If the product is not found, the function returns nil.
- func (er *EndpointsResponse) Get(id string) *Endpoint {
- for i := range er.Endpoints {
- if er.Endpoints[i].ID == id {
- return &er.Endpoints[i]
- }
- }
- return nil
- }
|