1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
|
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/update_client/update_query_params.h"
#include "base/check.h"
#include "base/strings/stringprintf.h"
#include "base/system/sys_info.h"
#include "build/branding_buildflags.h"
#include "build/build_config.h"
#include "components/update_client/update_query_params_delegate.h"
#include "components/version_info/version_info.h"
#if BUILDFLAG(IS_WIN)
#include "base/win/windows_version.h"
#endif
namespace update_client {
namespace {
const char kUnknown[] = "unknown";
// The request extra information is the OS and architecture, this helps
// the server select the right package to be delivered.
const char kOs[] =
#if BUILDFLAG(IS_APPLE)
"mac";
#elif BUILDFLAG(IS_WIN)
"win";
#elif BUILDFLAG(IS_ANDROID)
"android";
#elif BUILDFLAG(IS_CHROMEOS)
"cros";
#elif BUILDFLAG(IS_LINUX)
"linux";
#elif BUILDFLAG(IS_FUCHSIA)
"fuchsia";
#elif BUILDFLAG(IS_OPENBSD)
"openbsd";
#else
#error "unknown os"
#endif
const char kArch[] =
#if defined(ARCH_CPU_X86_64)
"x64";
#elif defined(ARCH_CPU_X86)
"x86";
#elif defined(ARCH_CPU_ARMEL)
"arm";
#elif defined(ARCH_CPU_ARM64)
"arm64";
#elif defined(ARCH_CPU_MIPS64EL)
"mips64el";
#elif defined(ARCH_CPU_MIPSEL)
"mipsel";
#elif defined(__powerpc64__)
"ppc64";
#elif defined(ARCH_CPU_LOONGARCH32)
"loongarch32";
#elif defined(ARCH_CPU_LOONGARCH64)
"loongarch64";
#elif defined(ARCH_CPU_RISCV64)
"riscv64";
#else
#error "unknown arch"
#endif
#if BUILDFLAG(GOOGLE_CHROME_BRANDING)
const char kChrome[] = "chrome";
const char kCrx[] = "chromecrx";
const char kWebView[] = "googleandroidwebview";
const char kIOsWebView[] = "googleioswebview";
#else
const char kChrome[] = "chromium";
const char kCrx[] = "chromiumcrx";
const char kWebView[] = "androidwebview";
const char kIOsWebView[] = "ioswebview";
#endif // BUILDFLAG(GOOGLE_CHROME_BRANDING)
UpdateQueryParamsDelegate* g_delegate = nullptr;
} // namespace
// static
std::string UpdateQueryParams::Get(ProdId prod) {
return base::StringPrintf(
"os=%s&arch=%s&os_arch=%s&prod=%s%s&acceptformat=crx3,puff", kOs, kArch,
base::SysInfo().OperatingSystemArchitecture().c_str(),
GetProdIdString(prod),
g_delegate ? g_delegate->GetExtraParams().c_str() : "");
}
// static
const char* UpdateQueryParams::GetProdIdString(UpdateQueryParams::ProdId prod) {
switch (prod) {
case UpdateQueryParams::CHROME:
return kChrome;
case UpdateQueryParams::CRX:
return kCrx;
case UpdateQueryParams::WEBVIEW:
return kWebView;
case UpdateQueryParams::IOS_WEBVIEW:
return kIOsWebView;
}
return kUnknown;
}
// static
const char* UpdateQueryParams::GetOS() {
return kOs;
}
// static
const char* UpdateQueryParams::GetArch() {
return kArch;
}
// static
std::string UpdateQueryParams::GetProdVersion() {
return std::string(version_info::GetVersionNumber());
}
// static
void UpdateQueryParams::SetDelegate(UpdateQueryParamsDelegate* delegate) {
CHECK(!g_delegate || !delegate || (delegate == g_delegate));
g_delegate = delegate;
}
} // namespace update_client
|