//
// Copyright (C) 2025 The Android Open Source Project
//
// 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
//
//      http://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.

#pragma once

#include <string>
#include <string_view>
#include <vector>

namespace cuttlefish {

class AndroidBuildUrl {
 public:
  AndroidBuildUrl(std::string api_base_url, std::string api_key,
                  std::string project_id);

  std::string GetLatestBuildIdUrl(std::string_view branch,
                                  std::string_view target);
  std::string GetBuildStatusUrl(std::string_view id, std::string_view target);
  std::string GetProductNameUrl(std::string_view id, std::string_view target);
  std::string GetArtifactUrl(std::string_view id, std::string_view target,
                             const std::vector<std::string>& artifact_filenames,
                             std::string_view page_token);
  std::string GetArtifactDownloadUrl(std::string_view id,
                                     std::string_view target,
                                     std::string_view artifact);

 private:
  std::string api_base_url_;
  std::string api_key_;
  std::string project_id_;
};

}  // namespace cuttlefish
