2018-10-24 10:49:10 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/common/application_info.h"
|
2013-05-21 15:40:49 +00:00
|
|
|
|
2017-12-05 20:58:48 +00:00
|
|
|
#include <windows.h> // windows.h must be included first
|
|
|
|
|
2018-09-19 11:10:26 +00:00
|
|
|
#include <VersionHelpers.h>
|
2018-09-05 16:06:29 +00:00
|
|
|
#include <appmodel.h>
|
2017-12-05 20:58:48 +00:00
|
|
|
#include <shlobj.h>
|
|
|
|
|
2017-05-18 22:29:22 +00:00
|
|
|
#include <memory>
|
|
|
|
|
2013-05-28 19:24:55 +00:00
|
|
|
#include "base/file_version_info.h"
|
2017-12-05 20:58:48 +00:00
|
|
|
#include "base/strings/string_util.h"
|
|
|
|
#include "base/strings/stringprintf.h"
|
2013-08-23 21:01:18 +00:00
|
|
|
#include "base/strings/utf_string_conversions.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/win/scoped_hstring.h"
|
2013-05-28 19:24:55 +00:00
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2013-05-21 15:40:49 +00:00
|
|
|
|
2017-12-05 20:58:48 +00:00
|
|
|
namespace {
|
|
|
|
|
2018-02-05 05:47:00 +00:00
|
|
|
base::string16 g_app_user_model_id;
|
2017-12-05 20:58:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const wchar_t kAppUserModelIDFormat[] = L"electron.app.$1";
|
|
|
|
|
2013-05-21 15:40:49 +00:00
|
|
|
std::string GetApplicationName() {
|
2018-06-21 23:45:45 +00:00
|
|
|
auto* module = GetModuleHandle(nullptr);
|
2016-05-23 06:08:20 +00:00
|
|
|
std::unique_ptr<FileVersionInfo> info(
|
2013-11-18 00:13:44 +00:00
|
|
|
FileVersionInfo::CreateFileVersionInfoForModule(module));
|
2014-06-27 18:02:44 +00:00
|
|
|
return base::UTF16ToUTF8(info->product_name());
|
2013-05-21 15:40:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string GetApplicationVersion() {
|
2018-06-21 23:45:45 +00:00
|
|
|
auto* module = GetModuleHandle(nullptr);
|
2016-05-23 06:08:20 +00:00
|
|
|
std::unique_ptr<FileVersionInfo> info(
|
2013-11-18 00:13:44 +00:00
|
|
|
FileVersionInfo::CreateFileVersionInfoForModule(module));
|
2014-06-27 18:02:44 +00:00
|
|
|
return base::UTF16ToUTF8(info->product_version());
|
2013-05-21 15:40:49 +00:00
|
|
|
}
|
|
|
|
|
2017-12-05 20:58:48 +00:00
|
|
|
void SetAppUserModelID(const base::string16& name) {
|
2018-02-05 05:47:00 +00:00
|
|
|
g_app_user_model_id = name;
|
|
|
|
SetCurrentProcessExplicitAppUserModelID(g_app_user_model_id.c_str());
|
2017-12-05 20:58:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
PCWSTR GetRawAppUserModelID() {
|
2018-02-05 05:47:00 +00:00
|
|
|
if (g_app_user_model_id.empty()) {
|
2017-12-05 20:58:48 +00:00
|
|
|
PWSTR current_app_id;
|
|
|
|
if (SUCCEEDED(GetCurrentProcessExplicitAppUserModelID(¤t_app_id))) {
|
2018-02-05 05:47:00 +00:00
|
|
|
g_app_user_model_id = current_app_id;
|
2017-12-05 20:58:48 +00:00
|
|
|
} else {
|
2018-03-12 00:33:06 +00:00
|
|
|
std::string name = GetApplicationName();
|
2017-12-05 20:58:48 +00:00
|
|
|
base::string16 generated_app_id = base::ReplaceStringPlaceholders(
|
2018-04-18 01:56:12 +00:00
|
|
|
kAppUserModelIDFormat, base::UTF8ToUTF16(name), nullptr);
|
2017-12-05 20:58:48 +00:00
|
|
|
SetAppUserModelID(generated_app_id);
|
|
|
|
}
|
|
|
|
CoTaskMemFree(current_app_id);
|
|
|
|
}
|
|
|
|
|
2018-02-05 05:47:00 +00:00
|
|
|
return g_app_user_model_id.c_str();
|
2017-12-05 20:58:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool GetAppUserModelID(ScopedHString* app_id) {
|
|
|
|
app_id->Reset(GetRawAppUserModelID());
|
|
|
|
return app_id->success();
|
|
|
|
}
|
|
|
|
|
2018-09-05 16:06:29 +00:00
|
|
|
bool IsRunningInDesktopBridgeImpl() {
|
|
|
|
if (IsWindows8OrGreater()) {
|
|
|
|
// GetPackageFamilyName is not available on Windows 7
|
|
|
|
using GetPackageFamilyNameFuncPtr = decltype(&GetPackageFamilyName);
|
|
|
|
|
|
|
|
static bool initialize_get_package_family_name = true;
|
|
|
|
static GetPackageFamilyNameFuncPtr get_package_family_namePtr = NULL;
|
|
|
|
|
|
|
|
if (initialize_get_package_family_name) {
|
|
|
|
initialize_get_package_family_name = false;
|
|
|
|
HMODULE kernel32_base = GetModuleHandle(L"Kernel32.dll");
|
|
|
|
if (!kernel32_base) {
|
|
|
|
NOTREACHED() << " " << __FUNCTION__ << "(): Can't open Kernel32.dll";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
get_package_family_namePtr =
|
|
|
|
reinterpret_cast<GetPackageFamilyNameFuncPtr>(
|
|
|
|
GetProcAddress(kernel32_base, "GetPackageFamilyName"));
|
|
|
|
|
|
|
|
if (!get_package_family_namePtr) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-27 17:50:01 +00:00
|
|
|
UINT32 length = PACKAGE_FAMILY_NAME_MAX_LENGTH;
|
|
|
|
wchar_t packageFamilyName[PACKAGE_FAMILY_NAME_MAX_LENGTH];
|
2018-09-05 16:06:29 +00:00
|
|
|
HANDLE proc = GetCurrentProcess();
|
|
|
|
LONG result =
|
2018-09-19 11:10:26 +00:00
|
|
|
(*get_package_family_namePtr)(proc, &length, packageFamilyName);
|
2018-09-05 16:06:29 +00:00
|
|
|
|
|
|
|
return result == ERROR_SUCCESS;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool IsRunningInDesktopBridge() {
|
|
|
|
static bool result = IsRunningInDesktopBridgeImpl();
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|