blob: 6b39f26a847fb2d1ee67d4a3c531f3225b1c8ed8 [file] [log] [blame]
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/browser/private_aggregation/private_aggregation_utils.h"
#include <string>
#include "base/strings/strcat.h"
#include "base/strings/string_piece.h"
#include "content/browser/private_aggregation/private_aggregation_budget_key.h"
namespace content::private_aggregation {
std::string GetReportingPath(PrivateAggregationBudgetKey::Api api,
bool is_immediate_debug_report) {
// TODO(alexmt): Consider updating or making a FeatureParam.
static constexpr char kSharedReportingPathPrefix[] =
"/.well-known/private-aggregation/";
static constexpr char kDebugReportingPathInfix[] = "debug/";
static constexpr char kFledgeReportingPathSuffix[] = "report-fledge";
static constexpr char kSharedStorageReportingPathSuffix[] =
"report-shared-storage";
base::StringPiece api_suffix;
switch (api) {
case PrivateAggregationBudgetKey::Api::kFledge:
api_suffix = kFledgeReportingPathSuffix;
break;
case PrivateAggregationBudgetKey::Api::kSharedStorage:
api_suffix = kSharedStorageReportingPathSuffix;
break;
}
return base::StrCat(
{kSharedReportingPathPrefix,
is_immediate_debug_report ? kDebugReportingPathInfix : "", api_suffix});
}
std::string GetApiIdentifier(PrivateAggregationBudgetKey::Api api) {
switch (api) {
case PrivateAggregationBudgetKey::Api::kFledge:
return "fledge";
case PrivateAggregationBudgetKey::Api::kSharedStorage:
return "shared-storage";
}
}
} // namespace content::private_aggregation