Co-authored-by: Akshat Malik <amalik@microstrategy.com> Co-authored-by: Jeremy Rose <nornagon@nornagon.net>
		
			
				
	
	
		
			1697 lines
		
	
	
	
		
			55 KiB
			
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			1697 lines
		
	
	
	
		
			55 KiB
			
		
	
	
	
		
			C++
		
	
	
	
	
	
// Copyright (c) 2013 GitHub, Inc.
 | 
						|
// Use of this source code is governed by the MIT license that can be
 | 
						|
// found in the LICENSE file.
 | 
						|
 | 
						|
#include "shell/browser/api/electron_api_app.h"
 | 
						|
 | 
						|
#include <memory>
 | 
						|
#include <string>
 | 
						|
#include <utility>
 | 
						|
#include <vector>
 | 
						|
 | 
						|
#include "base/callback_helpers.h"
 | 
						|
#include "base/command_line.h"
 | 
						|
#include "base/containers/span.h"
 | 
						|
#include "base/environment.h"
 | 
						|
#include "base/files/file_path.h"
 | 
						|
#include "base/files/file_util.h"
 | 
						|
#include "base/path_service.h"
 | 
						|
#include "base/system/sys_info.h"
 | 
						|
#include "chrome/browser/browser_process.h"
 | 
						|
#include "chrome/browser/icon_manager.h"
 | 
						|
#include "chrome/common/chrome_paths.h"
 | 
						|
#include "content/browser/gpu/compositor_util.h"        // nogncheck
 | 
						|
#include "content/browser/gpu/gpu_data_manager_impl.h"  // nogncheck
 | 
						|
#include "content/public/browser/browser_accessibility_state.h"
 | 
						|
#include "content/public/browser/browser_child_process_host.h"
 | 
						|
#include "content/public/browser/child_process_data.h"
 | 
						|
#include "content/public/browser/client_certificate_delegate.h"
 | 
						|
#include "content/public/browser/gpu_data_manager.h"
 | 
						|
#include "content/public/browser/render_frame_host.h"
 | 
						|
#include "content/public/common/content_switches.h"
 | 
						|
#include "media/audio/audio_manager.h"
 | 
						|
#include "net/ssl/client_cert_identity.h"
 | 
						|
#include "net/ssl/ssl_cert_request_info.h"
 | 
						|
#include "sandbox/policy/switches.h"
 | 
						|
#include "shell/browser/api/electron_api_menu.h"
 | 
						|
#include "shell/browser/api/electron_api_session.h"
 | 
						|
#include "shell/browser/api/electron_api_web_contents.h"
 | 
						|
#include "shell/browser/api/gpuinfo_manager.h"
 | 
						|
#include "shell/browser/electron_browser_context.h"
 | 
						|
#include "shell/browser/electron_browser_main_parts.h"
 | 
						|
#include "shell/browser/javascript_environment.h"
 | 
						|
#include "shell/browser/login_handler.h"
 | 
						|
#include "shell/browser/relauncher.h"
 | 
						|
#include "shell/common/application_info.h"
 | 
						|
#include "shell/common/electron_command_line.h"
 | 
						|
#include "shell/common/electron_paths.h"
 | 
						|
#include "shell/common/gin_converters/base_converter.h"
 | 
						|
#include "shell/common/gin_converters/callback_converter.h"
 | 
						|
#include "shell/common/gin_converters/file_path_converter.h"
 | 
						|
#include "shell/common/gin_converters/gurl_converter.h"
 | 
						|
#include "shell/common/gin_converters/image_converter.h"
 | 
						|
#include "shell/common/gin_converters/net_converter.h"
 | 
						|
#include "shell/common/gin_converters/value_converter.h"
 | 
						|
#include "shell/common/gin_helper/dictionary.h"
 | 
						|
#include "shell/common/gin_helper/object_template_builder.h"
 | 
						|
#include "shell/common/node_includes.h"
 | 
						|
#include "shell/common/options_switches.h"
 | 
						|
#include "shell/common/platform_util.h"
 | 
						|
#include "third_party/abseil-cpp/absl/types/optional.h"
 | 
						|
#include "ui/gfx/image/image.h"
 | 
						|
 | 
						|
#if defined(OS_WIN)
 | 
						|
#include "base/strings/utf_string_conversions.h"
 | 
						|
#include "shell/browser/ui/win/jump_list.h"
 | 
						|
#endif
 | 
						|
 | 
						|
#if defined(OS_MAC)
 | 
						|
#include <CoreFoundation/CoreFoundation.h>
 | 
						|
#include "shell/browser/ui/cocoa/electron_bundle_mover.h"
 | 
						|
#endif
 | 
						|
 | 
						|
using electron::Browser;
 | 
						|
 | 
						|
namespace gin {
 | 
						|
 | 
						|
#if defined(OS_WIN)
 | 
						|
template <>
 | 
						|
struct Converter<electron::ProcessIntegrityLevel> {
 | 
						|
  static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
 | 
						|
                                   electron::ProcessIntegrityLevel value) {
 | 
						|
    switch (value) {
 | 
						|
      case electron::ProcessIntegrityLevel::kUntrusted:
 | 
						|
        return StringToV8(isolate, "untrusted");
 | 
						|
      case electron::ProcessIntegrityLevel::kLow:
 | 
						|
        return StringToV8(isolate, "low");
 | 
						|
      case electron::ProcessIntegrityLevel::kMedium:
 | 
						|
        return StringToV8(isolate, "medium");
 | 
						|
      case electron::ProcessIntegrityLevel::kHigh:
 | 
						|
        return StringToV8(isolate, "high");
 | 
						|
      default:
 | 
						|
        return StringToV8(isolate, "unknown");
 | 
						|
    }
 | 
						|
  }
 | 
						|
};
 | 
						|
 | 
						|
template <>
 | 
						|
struct Converter<Browser::UserTask> {
 | 
						|
  static bool FromV8(v8::Isolate* isolate,
 | 
						|
                     v8::Local<v8::Value> val,
 | 
						|
                     Browser::UserTask* out) {
 | 
						|
    gin_helper::Dictionary dict;
 | 
						|
    if (!ConvertFromV8(isolate, val, &dict))
 | 
						|
      return false;
 | 
						|
    if (!dict.Get("program", &(out->program)) ||
 | 
						|
        !dict.Get("title", &(out->title)))
 | 
						|
      return false;
 | 
						|
    if (dict.Get("iconPath", &(out->icon_path)) &&
 | 
						|
        !dict.Get("iconIndex", &(out->icon_index)))
 | 
						|
      return false;
 | 
						|
    dict.Get("arguments", &(out->arguments));
 | 
						|
    dict.Get("description", &(out->description));
 | 
						|
    dict.Get("workingDirectory", &(out->working_dir));
 | 
						|
    return true;
 | 
						|
  }
 | 
						|
};
 | 
						|
 | 
						|
using electron::JumpListCategory;
 | 
						|
using electron::JumpListItem;
 | 
						|
using electron::JumpListResult;
 | 
						|
 | 
						|
template <>
 | 
						|
struct Converter<JumpListItem::Type> {
 | 
						|
  static bool FromV8(v8::Isolate* isolate,
 | 
						|
                     v8::Local<v8::Value> val,
 | 
						|
                     JumpListItem::Type* out) {
 | 
						|
    std::string item_type;
 | 
						|
    if (!ConvertFromV8(isolate, val, &item_type))
 | 
						|
      return false;
 | 
						|
 | 
						|
    if (item_type == "task")
 | 
						|
      *out = JumpListItem::Type::kTask;
 | 
						|
    else if (item_type == "separator")
 | 
						|
      *out = JumpListItem::Type::kSeparator;
 | 
						|
    else if (item_type == "file")
 | 
						|
      *out = JumpListItem::Type::kFile;
 | 
						|
    else
 | 
						|
      return false;
 | 
						|
 | 
						|
    return true;
 | 
						|
  }
 | 
						|
 | 
						|
  static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
 | 
						|
                                   JumpListItem::Type val) {
 | 
						|
    std::string item_type;
 | 
						|
    switch (val) {
 | 
						|
      case JumpListItem::Type::kTask:
 | 
						|
        item_type = "task";
 | 
						|
        break;
 | 
						|
 | 
						|
      case JumpListItem::Type::kSeparator:
 | 
						|
        item_type = "separator";
 | 
						|
        break;
 | 
						|
 | 
						|
      case JumpListItem::Type::kFile:
 | 
						|
        item_type = "file";
 | 
						|
        break;
 | 
						|
    }
 | 
						|
    return gin::ConvertToV8(isolate, item_type);
 | 
						|
  }
 | 
						|
};
 | 
						|
 | 
						|
template <>
 | 
						|
struct Converter<JumpListItem> {
 | 
						|
  static bool FromV8(v8::Isolate* isolate,
 | 
						|
                     v8::Local<v8::Value> val,
 | 
						|
                     JumpListItem* out) {
 | 
						|
    gin_helper::Dictionary dict;
 | 
						|
    if (!ConvertFromV8(isolate, val, &dict))
 | 
						|
      return false;
 | 
						|
 | 
						|
    if (!dict.Get("type", &(out->type)))
 | 
						|
      return false;
 | 
						|
 | 
						|
    switch (out->type) {
 | 
						|
      case JumpListItem::Type::kTask:
 | 
						|
        if (!dict.Get("program", &(out->path)) ||
 | 
						|
            !dict.Get("title", &(out->title)))
 | 
						|
          return false;
 | 
						|
 | 
						|
        if (dict.Get("iconPath", &(out->icon_path)) &&
 | 
						|
            !dict.Get("iconIndex", &(out->icon_index)))
 | 
						|
          return false;
 | 
						|
 | 
						|
        dict.Get("args", &(out->arguments));
 | 
						|
        dict.Get("description", &(out->description));
 | 
						|
        dict.Get("workingDirectory", &(out->working_dir));
 | 
						|
        return true;
 | 
						|
 | 
						|
      case JumpListItem::Type::kSeparator:
 | 
						|
        return true;
 | 
						|
 | 
						|
      case JumpListItem::Type::kFile:
 | 
						|
        return dict.Get("path", &(out->path));
 | 
						|
    }
 | 
						|
 | 
						|
    assert(false);
 | 
						|
    return false;
 | 
						|
  }
 | 
						|
 | 
						|
  static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
 | 
						|
                                   const JumpListItem& val) {
 | 
						|
    gin_helper::Dictionary dict = gin::Dictionary::CreateEmpty(isolate);
 | 
						|
    dict.Set("type", val.type);
 | 
						|
 | 
						|
    switch (val.type) {
 | 
						|
      case JumpListItem::Type::kTask:
 | 
						|
        dict.Set("program", val.path);
 | 
						|
        dict.Set("args", val.arguments);
 | 
						|
        dict.Set("title", val.title);
 | 
						|
        dict.Set("iconPath", val.icon_path);
 | 
						|
        dict.Set("iconIndex", val.icon_index);
 | 
						|
        dict.Set("description", val.description);
 | 
						|
        dict.Set("workingDirectory", val.working_dir);
 | 
						|
        break;
 | 
						|
 | 
						|
      case JumpListItem::Type::kSeparator:
 | 
						|
        break;
 | 
						|
 | 
						|
      case JumpListItem::Type::kFile:
 | 
						|
        dict.Set("path", val.path);
 | 
						|
        break;
 | 
						|
    }
 | 
						|
    return dict.GetHandle();
 | 
						|
  }
 | 
						|
};
 | 
						|
 | 
						|
template <>
 | 
						|
struct Converter<JumpListCategory::Type> {
 | 
						|
  static bool FromV8(v8::Isolate* isolate,
 | 
						|
                     v8::Local<v8::Value> val,
 | 
						|
                     JumpListCategory::Type* out) {
 | 
						|
    std::string category_type;
 | 
						|
    if (!ConvertFromV8(isolate, val, &category_type))
 | 
						|
      return false;
 | 
						|
 | 
						|
    if (category_type == "tasks")
 | 
						|
      *out = JumpListCategory::Type::kTasks;
 | 
						|
    else if (category_type == "frequent")
 | 
						|
      *out = JumpListCategory::Type::kFrequent;
 | 
						|
    else if (category_type == "recent")
 | 
						|
      *out = JumpListCategory::Type::kRecent;
 | 
						|
    else if (category_type == "custom")
 | 
						|
      *out = JumpListCategory::Type::kCustom;
 | 
						|
    else
 | 
						|
      return false;
 | 
						|
 | 
						|
    return true;
 | 
						|
  }
 | 
						|
 | 
						|
  static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
 | 
						|
                                   JumpListCategory::Type val) {
 | 
						|
    std::string category_type;
 | 
						|
    switch (val) {
 | 
						|
      case JumpListCategory::Type::kTasks:
 | 
						|
        category_type = "tasks";
 | 
						|
        break;
 | 
						|
 | 
						|
      case JumpListCategory::Type::kFrequent:
 | 
						|
        category_type = "frequent";
 | 
						|
        break;
 | 
						|
 | 
						|
      case JumpListCategory::Type::kRecent:
 | 
						|
        category_type = "recent";
 | 
						|
        break;
 | 
						|
 | 
						|
      case JumpListCategory::Type::kCustom:
 | 
						|
        category_type = "custom";
 | 
						|
        break;
 | 
						|
    }
 | 
						|
    return gin::ConvertToV8(isolate, category_type);
 | 
						|
  }
 | 
						|
};
 | 
						|
 | 
						|
template <>
 | 
						|
struct Converter<JumpListCategory> {
 | 
						|
  static bool FromV8(v8::Isolate* isolate,
 | 
						|
                     v8::Local<v8::Value> val,
 | 
						|
                     JumpListCategory* out) {
 | 
						|
    gin_helper::Dictionary dict;
 | 
						|
    if (!ConvertFromV8(isolate, val, &dict))
 | 
						|
      return false;
 | 
						|
 | 
						|
    if (dict.Get("name", &(out->name)) && out->name.empty())
 | 
						|
      return false;
 | 
						|
 | 
						|
    if (!dict.Get("type", &(out->type))) {
 | 
						|
      if (out->name.empty())
 | 
						|
        out->type = JumpListCategory::Type::kTasks;
 | 
						|
      else
 | 
						|
        out->type = JumpListCategory::Type::kCustom;
 | 
						|
    }
 | 
						|
 | 
						|
    if ((out->type == JumpListCategory::Type::kTasks) ||
 | 
						|
        (out->type == JumpListCategory::Type::kCustom)) {
 | 
						|
      if (!dict.Get("items", &(out->items)))
 | 
						|
        return false;
 | 
						|
    }
 | 
						|
 | 
						|
    return true;
 | 
						|
  }
 | 
						|
};
 | 
						|
 | 
						|
// static
 | 
						|
template <>
 | 
						|
struct Converter<JumpListResult> {
 | 
						|
  static v8::Local<v8::Value> ToV8(v8::Isolate* isolate, JumpListResult val) {
 | 
						|
    std::string result_code;
 | 
						|
    switch (val) {
 | 
						|
      case JumpListResult::kSuccess:
 | 
						|
        result_code = "ok";
 | 
						|
        break;
 | 
						|
 | 
						|
      case JumpListResult::kArgumentError:
 | 
						|
        result_code = "argumentError";
 | 
						|
        break;
 | 
						|
 | 
						|
      case JumpListResult::kGenericError:
 | 
						|
        result_code = "error";
 | 
						|
        break;
 | 
						|
 | 
						|
      case JumpListResult::kCustomCategorySeparatorError:
 | 
						|
        result_code = "invalidSeparatorError";
 | 
						|
        break;
 | 
						|
 | 
						|
      case JumpListResult::kMissingFileTypeRegistrationError:
 | 
						|
        result_code = "fileTypeRegistrationError";
 | 
						|
        break;
 | 
						|
 | 
						|
      case JumpListResult::kCustomCategoryAccessDeniedError:
 | 
						|
        result_code = "customCategoryAccessDeniedError";
 | 
						|
        break;
 | 
						|
    }
 | 
						|
    return ConvertToV8(isolate, result_code);
 | 
						|
  }
 | 
						|
};
 | 
						|
#endif
 | 
						|
 | 
						|
#if defined(OS_WIN)
 | 
						|
template <>
 | 
						|
struct Converter<Browser::LaunchItem> {
 | 
						|
  static bool FromV8(v8::Isolate* isolate,
 | 
						|
                     v8::Local<v8::Value> val,
 | 
						|
                     Browser::LaunchItem* out) {
 | 
						|
    gin_helper::Dictionary dict;
 | 
						|
    if (!ConvertFromV8(isolate, val, &dict))
 | 
						|
      return false;
 | 
						|
 | 
						|
    dict.Get("name", &(out->name));
 | 
						|
    dict.Get("path", &(out->path));
 | 
						|
    dict.Get("args", &(out->args));
 | 
						|
    dict.Get("scope", &(out->scope));
 | 
						|
    dict.Get("enabled", &(out->enabled));
 | 
						|
    return true;
 | 
						|
  }
 | 
						|
 | 
						|
  static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
 | 
						|
                                   Browser::LaunchItem val) {
 | 
						|
    gin_helper::Dictionary dict = gin::Dictionary::CreateEmpty(isolate);
 | 
						|
    dict.Set("name", val.name);
 | 
						|
    dict.Set("path", val.path);
 | 
						|
    dict.Set("args", val.args);
 | 
						|
    dict.Set("scope", val.scope);
 | 
						|
    dict.Set("enabled", val.enabled);
 | 
						|
    return dict.GetHandle();
 | 
						|
  }
 | 
						|
};
 | 
						|
#endif
 | 
						|
 | 
						|
template <>
 | 
						|
struct Converter<Browser::LoginItemSettings> {
 | 
						|
  static bool FromV8(v8::Isolate* isolate,
 | 
						|
                     v8::Local<v8::Value> val,
 | 
						|
                     Browser::LoginItemSettings* out) {
 | 
						|
    gin_helper::Dictionary dict;
 | 
						|
    if (!ConvertFromV8(isolate, val, &dict))
 | 
						|
      return false;
 | 
						|
 | 
						|
    dict.Get("openAtLogin", &(out->open_at_login));
 | 
						|
    dict.Get("openAsHidden", &(out->open_as_hidden));
 | 
						|
    dict.Get("path", &(out->path));
 | 
						|
    dict.Get("args", &(out->args));
 | 
						|
#if defined(OS_WIN)
 | 
						|
    dict.Get("enabled", &(out->enabled));
 | 
						|
    dict.Get("name", &(out->name));
 | 
						|
#endif
 | 
						|
    return true;
 | 
						|
  }
 | 
						|
 | 
						|
  static v8::Local<v8::Value> ToV8(v8::Isolate* isolate,
 | 
						|
                                   Browser::LoginItemSettings val) {
 | 
						|
    gin_helper::Dictionary dict = gin::Dictionary::CreateEmpty(isolate);
 | 
						|
    dict.Set("openAtLogin", val.open_at_login);
 | 
						|
    dict.Set("openAsHidden", val.open_as_hidden);
 | 
						|
    dict.Set("restoreState", val.restore_state);
 | 
						|
    dict.Set("wasOpenedAtLogin", val.opened_at_login);
 | 
						|
    dict.Set("wasOpenedAsHidden", val.opened_as_hidden);
 | 
						|
#if defined(OS_WIN)
 | 
						|
    dict.Set("launchItems", val.launch_items);
 | 
						|
    dict.Set("executableWillLaunchAtLogin",
 | 
						|
             val.executable_will_launch_at_login);
 | 
						|
#endif
 | 
						|
    return dict.GetHandle();
 | 
						|
  }
 | 
						|
};
 | 
						|
 | 
						|
template <>
 | 
						|
struct Converter<content::CertificateRequestResultType> {
 | 
						|
  static bool FromV8(v8::Isolate* isolate,
 | 
						|
                     v8::Local<v8::Value> val,
 | 
						|
                     content::CertificateRequestResultType* out) {
 | 
						|
    bool b;
 | 
						|
    if (!ConvertFromV8(isolate, val, &b))
 | 
						|
      return false;
 | 
						|
    *out = b ? content::CERTIFICATE_REQUEST_RESULT_TYPE_CONTINUE
 | 
						|
             : content::CERTIFICATE_REQUEST_RESULT_TYPE_DENY;
 | 
						|
    return true;
 | 
						|
  }
 | 
						|
};
 | 
						|
 | 
						|
}  // namespace gin
 | 
						|
 | 
						|
namespace electron {
 | 
						|
 | 
						|
namespace api {
 | 
						|
 | 
						|
gin::WrapperInfo App::kWrapperInfo = {gin::kEmbedderNativeGin};
 | 
						|
 | 
						|
namespace {
 | 
						|
 | 
						|
IconLoader::IconSize GetIconSizeByString(const std::string& size) {
 | 
						|
  if (size == "small") {
 | 
						|
    return IconLoader::IconSize::SMALL;
 | 
						|
  } else if (size == "large") {
 | 
						|
    return IconLoader::IconSize::LARGE;
 | 
						|
  }
 | 
						|
  return IconLoader::IconSize::NORMAL;
 | 
						|
}
 | 
						|
 | 
						|
// Return the path constant from string.
 | 
						|
int GetPathConstant(const std::string& name) {
 | 
						|
  if (name == "appData")
 | 
						|
    return DIR_APP_DATA;
 | 
						|
  else if (name == "userData")
 | 
						|
    return chrome::DIR_USER_DATA;
 | 
						|
  else if (name == "cache")
 | 
						|
#if defined(OS_POSIX)
 | 
						|
    return base::DIR_CACHE;
 | 
						|
#else
 | 
						|
    return base::DIR_APP_DATA;
 | 
						|
#endif
 | 
						|
  else if (name == "userCache")
 | 
						|
    return DIR_USER_CACHE;
 | 
						|
  else if (name == "logs")
 | 
						|
    return DIR_APP_LOGS;
 | 
						|
  else if (name == "crashDumps")
 | 
						|
    return DIR_CRASH_DUMPS;
 | 
						|
  else if (name == "home")
 | 
						|
    return base::DIR_HOME;
 | 
						|
  else if (name == "temp")
 | 
						|
    return base::DIR_TEMP;
 | 
						|
  else if (name == "userDesktop" || name == "desktop")
 | 
						|
    return base::DIR_USER_DESKTOP;
 | 
						|
  else if (name == "exe")
 | 
						|
    return base::FILE_EXE;
 | 
						|
  else if (name == "module")
 | 
						|
    return base::FILE_MODULE;
 | 
						|
  else if (name == "documents")
 | 
						|
    return chrome::DIR_USER_DOCUMENTS;
 | 
						|
  else if (name == "downloads")
 | 
						|
    return chrome::DIR_DEFAULT_DOWNLOADS;
 | 
						|
  else if (name == "music")
 | 
						|
    return chrome::DIR_USER_MUSIC;
 | 
						|
  else if (name == "pictures")
 | 
						|
    return chrome::DIR_USER_PICTURES;
 | 
						|
  else if (name == "videos")
 | 
						|
    return chrome::DIR_USER_VIDEOS;
 | 
						|
#if defined(OS_WIN)
 | 
						|
  else if (name == "recent")
 | 
						|
    return electron::DIR_RECENT;
 | 
						|
#endif
 | 
						|
  else
 | 
						|
    return -1;
 | 
						|
}
 | 
						|
 | 
						|
bool NotificationCallbackWrapper(
 | 
						|
    const base::RepeatingCallback<
 | 
						|
        void(const base::CommandLine::StringVector& command_line,
 | 
						|
             const base::FilePath& current_directory)>& callback,
 | 
						|
    const base::CommandLine::StringVector& cmd,
 | 
						|
    const base::FilePath& cwd) {
 | 
						|
  // Make sure the callback is called after app gets ready.
 | 
						|
  if (Browser::Get()->is_ready()) {
 | 
						|
    callback.Run(cmd, cwd);
 | 
						|
  } else {
 | 
						|
    scoped_refptr<base::SingleThreadTaskRunner> task_runner(
 | 
						|
        base::ThreadTaskRunnerHandle::Get());
 | 
						|
    task_runner->PostTask(
 | 
						|
        FROM_HERE, base::BindOnce(base::IgnoreResult(callback), cmd, cwd));
 | 
						|
  }
 | 
						|
  // ProcessSingleton needs to know whether current process is quiting.
 | 
						|
  return !Browser::Get()->is_shutting_down();
 | 
						|
}
 | 
						|
 | 
						|
void GotPrivateKey(std::shared_ptr<content::ClientCertificateDelegate> delegate,
 | 
						|
                   scoped_refptr<net::X509Certificate> cert,
 | 
						|
                   scoped_refptr<net::SSLPrivateKey> private_key) {
 | 
						|
  delegate->ContinueWithCertificate(cert, private_key);
 | 
						|
}
 | 
						|
 | 
						|
void OnClientCertificateSelected(
 | 
						|
    v8::Isolate* isolate,
 | 
						|
    std::shared_ptr<content::ClientCertificateDelegate> delegate,
 | 
						|
    std::shared_ptr<net::ClientCertIdentityList> identities,
 | 
						|
    gin::Arguments* args) {
 | 
						|
  if (args->Length() == 2) {
 | 
						|
    delegate->ContinueWithCertificate(nullptr, nullptr);
 | 
						|
    return;
 | 
						|
  }
 | 
						|
 | 
						|
  v8::Local<v8::Value> val;
 | 
						|
  args->GetNext(&val);
 | 
						|
  if (val->IsNull()) {
 | 
						|
    delegate->ContinueWithCertificate(nullptr, nullptr);
 | 
						|
    return;
 | 
						|
  }
 | 
						|
 | 
						|
  gin_helper::Dictionary cert_data;
 | 
						|
  if (!gin::ConvertFromV8(isolate, val, &cert_data)) {
 | 
						|
    gin_helper::ErrorThrower(isolate).ThrowError(
 | 
						|
        "Must pass valid certificate object.");
 | 
						|
    return;
 | 
						|
  }
 | 
						|
 | 
						|
  std::string data;
 | 
						|
  if (!cert_data.Get("data", &data))
 | 
						|
    return;
 | 
						|
 | 
						|
  auto certs = net::X509Certificate::CreateCertificateListFromBytes(
 | 
						|
      base::as_bytes(base::make_span(data.c_str(), data.size())),
 | 
						|
      net::X509Certificate::FORMAT_AUTO);
 | 
						|
  if (!certs.empty()) {
 | 
						|
    scoped_refptr<net::X509Certificate> cert(certs[0].get());
 | 
						|
    for (auto& identity : *identities) {
 | 
						|
      scoped_refptr<net::X509Certificate> identity_cert =
 | 
						|
          identity->certificate();
 | 
						|
      // Since |cert| was recreated from |data|, it won't include any
 | 
						|
      // intermediates. That's fine for checking equality, but once a match is
 | 
						|
      // found then |identity_cert| should be used since it will include the
 | 
						|
      // intermediates which would otherwise be lost.
 | 
						|
      if (cert->EqualsExcludingChain(identity_cert.get())) {
 | 
						|
        net::ClientCertIdentity::SelfOwningAcquirePrivateKey(
 | 
						|
            std::move(identity), base::BindRepeating(&GotPrivateKey, delegate,
 | 
						|
                                                     std::move(identity_cert)));
 | 
						|
        break;
 | 
						|
      }
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
#if defined(USE_NSS_CERTS)
 | 
						|
int ImportIntoCertStore(CertificateManagerModel* model, base::Value options) {
 | 
						|
  std::string file_data, cert_path;
 | 
						|
  std::u16string password;
 | 
						|
  net::ScopedCERTCertificateList imported_certs;
 | 
						|
  int rv = -1;
 | 
						|
 | 
						|
  std::string* cert_path_ptr = options.FindStringKey("certificate");
 | 
						|
  if (cert_path_ptr)
 | 
						|
    cert_path = *cert_path_ptr;
 | 
						|
 | 
						|
  std::string* pwd = options.FindStringKey("password");
 | 
						|
  if (pwd)
 | 
						|
    password = base::UTF8ToUTF16(*pwd);
 | 
						|
 | 
						|
  if (!cert_path.empty()) {
 | 
						|
    if (base::ReadFileToString(base::FilePath(cert_path), &file_data)) {
 | 
						|
      auto module = model->cert_db()->GetPrivateSlot();
 | 
						|
      rv = model->ImportFromPKCS12(module.get(), file_data, password, true,
 | 
						|
                                   &imported_certs);
 | 
						|
      if (imported_certs.size() > 1) {
 | 
						|
        auto it = imported_certs.begin();
 | 
						|
        ++it;  // skip first which would  be the client certificate.
 | 
						|
        for (; it != imported_certs.end(); ++it)
 | 
						|
          rv &= model->SetCertTrust(it->get(), net::CA_CERT,
 | 
						|
                                    net::NSSCertDatabase::TRUSTED_SSL);
 | 
						|
      }
 | 
						|
    }
 | 
						|
  }
 | 
						|
  return rv;
 | 
						|
}
 | 
						|
#endif
 | 
						|
 | 
						|
void OnIconDataAvailable(gin_helper::Promise<gfx::Image> promise,
 | 
						|
                         gfx::Image icon) {
 | 
						|
  if (!icon.IsEmpty()) {
 | 
						|
    promise.Resolve(icon);
 | 
						|
  } else {
 | 
						|
    promise.RejectWithErrorMessage("Failed to get file icon.");
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
}  // namespace
 | 
						|
 | 
						|
App::App() {
 | 
						|
  static_cast<ElectronBrowserClient*>(ElectronBrowserClient::Get())
 | 
						|
      ->set_delegate(this);
 | 
						|
  Browser::Get()->AddObserver(this);
 | 
						|
 | 
						|
  auto pid = content::ChildProcessHost::kInvalidUniqueID;
 | 
						|
  auto process_metric = std::make_unique<electron::ProcessMetric>(
 | 
						|
      content::PROCESS_TYPE_BROWSER, base::GetCurrentProcessHandle(),
 | 
						|
      base::ProcessMetrics::CreateCurrentProcessMetrics());
 | 
						|
  app_metrics_[pid] = std::move(process_metric);
 | 
						|
}
 | 
						|
 | 
						|
App::~App() {
 | 
						|
  static_cast<ElectronBrowserClient*>(ElectronBrowserClient::Get())
 | 
						|
      ->set_delegate(nullptr);
 | 
						|
  Browser::Get()->RemoveObserver(this);
 | 
						|
  content::GpuDataManager::GetInstance()->RemoveObserver(this);
 | 
						|
  content::BrowserChildProcessObserver::Remove(this);
 | 
						|
}
 | 
						|
 | 
						|
void App::OnBeforeQuit(bool* prevent_default) {
 | 
						|
  if (Emit("before-quit")) {
 | 
						|
    *prevent_default = true;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
void App::OnWillQuit(bool* prevent_default) {
 | 
						|
  if (Emit("will-quit")) {
 | 
						|
    *prevent_default = true;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
void App::OnWindowAllClosed() {
 | 
						|
  Emit("window-all-closed");
 | 
						|
}
 | 
						|
 | 
						|
void App::OnQuit() {
 | 
						|
  const int exitCode = ElectronBrowserMainParts::Get()->GetExitCode();
 | 
						|
  Emit("quit", exitCode);
 | 
						|
 | 
						|
  if (process_singleton_) {
 | 
						|
    process_singleton_->Cleanup();
 | 
						|
    process_singleton_.reset();
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
void App::OnOpenFile(bool* prevent_default, const std::string& file_path) {
 | 
						|
  if (Emit("open-file", file_path)) {
 | 
						|
    *prevent_default = true;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
void App::OnOpenURL(const std::string& url) {
 | 
						|
  Emit("open-url", url);
 | 
						|
}
 | 
						|
 | 
						|
void App::OnActivate(bool has_visible_windows) {
 | 
						|
  Emit("activate", has_visible_windows);
 | 
						|
}
 | 
						|
 | 
						|
void App::OnWillFinishLaunching() {
 | 
						|
  Emit("will-finish-launching");
 | 
						|
}
 | 
						|
 | 
						|
void App::OnFinishLaunching(const base::DictionaryValue& launch_info) {
 | 
						|
#if defined(OS_LINUX)
 | 
						|
  // Set the application name for audio streams shown in external
 | 
						|
  // applications. Only affects pulseaudio currently.
 | 
						|
  media::AudioManager::SetGlobalAppName(Browser::Get()->GetName());
 | 
						|
#endif
 | 
						|
  Emit("ready", launch_info);
 | 
						|
}
 | 
						|
 | 
						|
void App::OnPreMainMessageLoopRun() {
 | 
						|
  content::BrowserChildProcessObserver::Add(this);
 | 
						|
  if (process_singleton_) {
 | 
						|
    process_singleton_->OnBrowserReady();
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
void App::OnPreCreateThreads() {
 | 
						|
  DCHECK(!content::GpuDataManager::Initialized());
 | 
						|
  content::GpuDataManager* manager = content::GpuDataManager::GetInstance();
 | 
						|
  manager->AddObserver(this);
 | 
						|
 | 
						|
  if (disable_hw_acceleration_) {
 | 
						|
    manager->DisableHardwareAcceleration();
 | 
						|
  }
 | 
						|
 | 
						|
  if (disable_domain_blocking_for_3DAPIs_) {
 | 
						|
    content::GpuDataManagerImpl::GetInstance()
 | 
						|
        ->DisableDomainBlockingFor3DAPIsForTesting();
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
void App::OnAccessibilitySupportChanged() {
 | 
						|
  Emit("accessibility-support-changed", IsAccessibilitySupportEnabled());
 | 
						|
}
 | 
						|
 | 
						|
#if defined(OS_MAC)
 | 
						|
void App::OnWillContinueUserActivity(bool* prevent_default,
 | 
						|
                                     const std::string& type) {
 | 
						|
  if (Emit("will-continue-activity", type)) {
 | 
						|
    *prevent_default = true;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
void App::OnDidFailToContinueUserActivity(const std::string& type,
 | 
						|
                                          const std::string& error) {
 | 
						|
  Emit("continue-activity-error", type, error);
 | 
						|
}
 | 
						|
 | 
						|
void App::OnContinueUserActivity(bool* prevent_default,
 | 
						|
                                 const std::string& type,
 | 
						|
                                 const base::DictionaryValue& user_info,
 | 
						|
                                 const base::DictionaryValue& details) {
 | 
						|
  if (Emit("continue-activity", type, user_info, details)) {
 | 
						|
    *prevent_default = true;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
void App::OnUserActivityWasContinued(const std::string& type,
 | 
						|
                                     const base::DictionaryValue& user_info) {
 | 
						|
  Emit("activity-was-continued", type, user_info);
 | 
						|
}
 | 
						|
 | 
						|
void App::OnUpdateUserActivityState(bool* prevent_default,
 | 
						|
                                    const std::string& type,
 | 
						|
                                    const base::DictionaryValue& user_info) {
 | 
						|
  if (Emit("update-activity-state", type, user_info)) {
 | 
						|
    *prevent_default = true;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
void App::OnNewWindowForTab() {
 | 
						|
  Emit("new-window-for-tab");
 | 
						|
}
 | 
						|
 | 
						|
void App::OnDidBecomeActive() {
 | 
						|
  Emit("did-become-active");
 | 
						|
}
 | 
						|
#endif
 | 
						|
 | 
						|
bool App::CanCreateWindow(
 | 
						|
    content::RenderFrameHost* opener,
 | 
						|
    const GURL& opener_url,
 | 
						|
    const GURL& opener_top_level_frame_url,
 | 
						|
    const url::Origin& source_origin,
 | 
						|
    content::mojom::WindowContainerType container_type,
 | 
						|
    const GURL& target_url,
 | 
						|
    const content::Referrer& referrer,
 | 
						|
    const std::string& frame_name,
 | 
						|
    WindowOpenDisposition disposition,
 | 
						|
    const blink::mojom::WindowFeatures& features,
 | 
						|
    const std::string& raw_features,
 | 
						|
    const scoped_refptr<network::ResourceRequestBody>& body,
 | 
						|
    bool user_gesture,
 | 
						|
    bool opener_suppressed,
 | 
						|
    bool* no_javascript_access) {
 | 
						|
  v8::Isolate* isolate = JavascriptEnvironment::GetIsolate();
 | 
						|
  v8::Locker locker(isolate);
 | 
						|
  v8::HandleScope handle_scope(isolate);
 | 
						|
  content::WebContents* web_contents =
 | 
						|
      content::WebContents::FromRenderFrameHost(opener);
 | 
						|
  if (web_contents) {
 | 
						|
    WebContents* api_web_contents = WebContents::From(web_contents);
 | 
						|
    // No need to emit any event if the WebContents is not available in JS.
 | 
						|
    if (api_web_contents) {
 | 
						|
      api_web_contents->OnCreateWindow(target_url, referrer, frame_name,
 | 
						|
                                       disposition, raw_features, body);
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  return false;
 | 
						|
}
 | 
						|
 | 
						|
void App::AllowCertificateError(
 | 
						|
    content::WebContents* web_contents,
 | 
						|
    int cert_error,
 | 
						|
    const net::SSLInfo& ssl_info,
 | 
						|
    const GURL& request_url,
 | 
						|
    bool is_main_frame_request,
 | 
						|
    bool strict_enforcement,
 | 
						|
    base::OnceCallback<void(content::CertificateRequestResultType)> callback) {
 | 
						|
  auto adapted_callback = base::AdaptCallbackForRepeating(std::move(callback));
 | 
						|
  v8::Isolate* isolate = JavascriptEnvironment::GetIsolate();
 | 
						|
  v8::Locker locker(isolate);
 | 
						|
  v8::HandleScope handle_scope(isolate);
 | 
						|
  bool prevent_default =
 | 
						|
      Emit("certificate-error",
 | 
						|
           WebContents::FromOrCreate(isolate, web_contents), request_url,
 | 
						|
           net::ErrorToString(cert_error), ssl_info.cert, adapted_callback);
 | 
						|
 | 
						|
  // Deny the certificate by default.
 | 
						|
  if (!prevent_default)
 | 
						|
    adapted_callback.Run(content::CERTIFICATE_REQUEST_RESULT_TYPE_DENY);
 | 
						|
}
 | 
						|
 | 
						|
base::OnceClosure App::SelectClientCertificate(
 | 
						|
    content::WebContents* web_contents,
 | 
						|
    net::SSLCertRequestInfo* cert_request_info,
 | 
						|
    net::ClientCertIdentityList identities,
 | 
						|
    std::unique_ptr<content::ClientCertificateDelegate> delegate) {
 | 
						|
  std::shared_ptr<content::ClientCertificateDelegate> shared_delegate(
 | 
						|
      delegate.release());
 | 
						|
 | 
						|
  // Convert the ClientCertIdentityList to a CertificateList
 | 
						|
  // to avoid changes in the API.
 | 
						|
  auto client_certs = net::CertificateList();
 | 
						|
  for (const std::unique_ptr<net::ClientCertIdentity>& identity : identities)
 | 
						|
    client_certs.emplace_back(identity->certificate());
 | 
						|
 | 
						|
  auto shared_identities =
 | 
						|
      std::make_shared<net::ClientCertIdentityList>(std::move(identities));
 | 
						|
 | 
						|
  v8::Isolate* isolate = JavascriptEnvironment::GetIsolate();
 | 
						|
  v8::HandleScope handle_scope(isolate);
 | 
						|
  bool prevent_default =
 | 
						|
      Emit("select-client-certificate",
 | 
						|
           WebContents::FromOrCreate(isolate, web_contents),
 | 
						|
           cert_request_info->host_and_port.ToString(), std::move(client_certs),
 | 
						|
           base::BindOnce(&OnClientCertificateSelected, isolate,
 | 
						|
                          shared_delegate, shared_identities));
 | 
						|
 | 
						|
  // Default to first certificate from the platform store.
 | 
						|
  if (!prevent_default) {
 | 
						|
    scoped_refptr<net::X509Certificate> cert =
 | 
						|
        (*shared_identities)[0]->certificate();
 | 
						|
    net::ClientCertIdentity::SelfOwningAcquirePrivateKey(
 | 
						|
        std::move((*shared_identities)[0]),
 | 
						|
        base::BindRepeating(&GotPrivateKey, shared_delegate, std::move(cert)));
 | 
						|
  }
 | 
						|
  return base::OnceClosure();
 | 
						|
}
 | 
						|
 | 
						|
void App::OnGpuInfoUpdate() {
 | 
						|
  Emit("gpu-info-update");
 | 
						|
}
 | 
						|
 | 
						|
void App::OnGpuProcessCrashed(base::TerminationStatus status) {
 | 
						|
  Emit("gpu-process-crashed",
 | 
						|
       status == base::TERMINATION_STATUS_PROCESS_WAS_KILLED);
 | 
						|
}
 | 
						|
 | 
						|
void App::BrowserChildProcessLaunchedAndConnected(
 | 
						|
    const content::ChildProcessData& data) {
 | 
						|
  ChildProcessLaunched(data.process_type, data.id, data.GetProcess().Handle(),
 | 
						|
                       data.metrics_name, base::UTF16ToUTF8(data.name));
 | 
						|
}
 | 
						|
 | 
						|
void App::BrowserChildProcessHostDisconnected(
 | 
						|
    const content::ChildProcessData& data) {
 | 
						|
  ChildProcessDisconnected(data.id);
 | 
						|
}
 | 
						|
 | 
						|
void App::BrowserChildProcessCrashed(
 | 
						|
    const content::ChildProcessData& data,
 | 
						|
    const content::ChildProcessTerminationInfo& info) {
 | 
						|
  ChildProcessDisconnected(data.id);
 | 
						|
  BrowserChildProcessCrashedOrKilled(data, info);
 | 
						|
}
 | 
						|
 | 
						|
void App::BrowserChildProcessKilled(
 | 
						|
    const content::ChildProcessData& data,
 | 
						|
    const content::ChildProcessTerminationInfo& info) {
 | 
						|
  ChildProcessDisconnected(data.id);
 | 
						|
  BrowserChildProcessCrashedOrKilled(data, info);
 | 
						|
}
 | 
						|
 | 
						|
void App::BrowserChildProcessCrashedOrKilled(
 | 
						|
    const content::ChildProcessData& data,
 | 
						|
    const content::ChildProcessTerminationInfo& info) {
 | 
						|
  v8::Isolate* isolate = JavascriptEnvironment::GetIsolate();
 | 
						|
  v8::HandleScope handle_scope(isolate);
 | 
						|
  auto details = gin_helper::Dictionary::CreateEmpty(isolate);
 | 
						|
  details.Set("type", content::GetProcessTypeNameInEnglish(data.process_type));
 | 
						|
  details.Set("reason", info.status);
 | 
						|
  details.Set("exitCode", info.exit_code);
 | 
						|
  details.Set("serviceName", data.metrics_name);
 | 
						|
  if (!data.name.empty()) {
 | 
						|
    details.Set("name", data.name);
 | 
						|
  }
 | 
						|
  Emit("child-process-gone", details);
 | 
						|
}
 | 
						|
 | 
						|
void App::RenderProcessReady(content::RenderProcessHost* host) {
 | 
						|
  ChildProcessLaunched(content::PROCESS_TYPE_RENDERER, host->GetID(),
 | 
						|
                       host->GetProcess().Handle());
 | 
						|
}
 | 
						|
 | 
						|
void App::RenderProcessExited(content::RenderProcessHost* host) {
 | 
						|
  ChildProcessDisconnected(host->GetID());
 | 
						|
}
 | 
						|
 | 
						|
void App::ChildProcessLaunched(int process_type,
 | 
						|
                               int pid,
 | 
						|
                               base::ProcessHandle handle,
 | 
						|
                               const std::string& service_name,
 | 
						|
                               const std::string& name) {
 | 
						|
#if defined(OS_MAC)
 | 
						|
  auto metrics = base::ProcessMetrics::CreateProcessMetrics(
 | 
						|
      handle, content::BrowserChildProcessHost::GetPortProvider());
 | 
						|
#else
 | 
						|
  auto metrics = base::ProcessMetrics::CreateProcessMetrics(handle);
 | 
						|
#endif
 | 
						|
  app_metrics_[pid] = std::make_unique<electron::ProcessMetric>(
 | 
						|
      process_type, handle, std::move(metrics), service_name, name);
 | 
						|
}
 | 
						|
 | 
						|
void App::ChildProcessDisconnected(int pid) {
 | 
						|
  app_metrics_.erase(pid);
 | 
						|
}
 | 
						|
 | 
						|
base::FilePath App::GetAppPath() const {
 | 
						|
  return app_path_;
 | 
						|
}
 | 
						|
 | 
						|
void App::SetAppPath(const base::FilePath& app_path) {
 | 
						|
  app_path_ = app_path;
 | 
						|
}
 | 
						|
 | 
						|
#if !defined(OS_MAC)
 | 
						|
void App::SetAppLogsPath(gin_helper::ErrorThrower thrower,
 | 
						|
                         absl::optional<base::FilePath> custom_path) {
 | 
						|
  if (custom_path.has_value()) {
 | 
						|
    if (!custom_path->IsAbsolute()) {
 | 
						|
      thrower.ThrowError("Path must be absolute");
 | 
						|
      return;
 | 
						|
    }
 | 
						|
    {
 | 
						|
      base::ThreadRestrictions::ScopedAllowIO allow_io;
 | 
						|
      base::PathService::Override(DIR_APP_LOGS, custom_path.value());
 | 
						|
    }
 | 
						|
  } else {
 | 
						|
    base::FilePath path;
 | 
						|
    if (base::PathService::Get(chrome::DIR_USER_DATA, &path)) {
 | 
						|
      path = path.Append(base::FilePath::FromUTF8Unsafe("logs"));
 | 
						|
      {
 | 
						|
        base::ThreadRestrictions::ScopedAllowIO allow_io;
 | 
						|
        base::PathService::Override(DIR_APP_LOGS, path);
 | 
						|
      }
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
#endif
 | 
						|
 | 
						|
// static
 | 
						|
bool App::IsPackaged() {
 | 
						|
  auto env = base::Environment::Create();
 | 
						|
  if (env->HasVar("ELECTRON_FORCE_IS_PACKAGED"))
 | 
						|
    return true;
 | 
						|
 | 
						|
  base::FilePath exe_path;
 | 
						|
  base::PathService::Get(base::FILE_EXE, &exe_path);
 | 
						|
  base::FilePath::StringType base_name =
 | 
						|
      base::ToLowerASCII(exe_path.BaseName().value());
 | 
						|
 | 
						|
#if defined(OS_WIN)
 | 
						|
  return base_name != FILE_PATH_LITERAL("electron.exe");
 | 
						|
#else
 | 
						|
  return base_name != FILE_PATH_LITERAL("electron");
 | 
						|
#endif
 | 
						|
}
 | 
						|
 | 
						|
base::FilePath App::GetPath(gin_helper::ErrorThrower thrower,
 | 
						|
                            const std::string& name) {
 | 
						|
  base::FilePath path;
 | 
						|
 | 
						|
  int key = GetPathConstant(name);
 | 
						|
  if (key < 0 || !base::PathService::Get(key, &path))
 | 
						|
    thrower.ThrowError("Failed to get '" + name + "' path");
 | 
						|
 | 
						|
  return path;
 | 
						|
}
 | 
						|
 | 
						|
void App::SetPath(gin_helper::ErrorThrower thrower,
 | 
						|
                  const std::string& name,
 | 
						|
                  const base::FilePath& path) {
 | 
						|
  if (!path.IsAbsolute()) {
 | 
						|
    thrower.ThrowError("Path must be absolute");
 | 
						|
    return;
 | 
						|
  }
 | 
						|
 | 
						|
  int key = GetPathConstant(name);
 | 
						|
  if (key < 0 || !base::PathService::OverrideAndCreateIfNeeded(
 | 
						|
                     key, path, /* is_absolute = */ true, /* create = */ false))
 | 
						|
    thrower.ThrowError("Failed to set path");
 | 
						|
}
 | 
						|
 | 
						|
void App::SetDesktopName(const std::string& desktop_name) {
 | 
						|
#if defined(OS_LINUX)
 | 
						|
  auto env = base::Environment::Create();
 | 
						|
  env->SetVar("CHROME_DESKTOP", desktop_name);
 | 
						|
#endif
 | 
						|
}
 | 
						|
 | 
						|
std::string App::GetLocale() {
 | 
						|
  return g_browser_process->GetApplicationLocale();
 | 
						|
}
 | 
						|
 | 
						|
std::string App::GetLocaleCountryCode() {
 | 
						|
  std::string region;
 | 
						|
#if defined(OS_WIN)
 | 
						|
  WCHAR locale_name[LOCALE_NAME_MAX_LENGTH] = {0};
 | 
						|
 | 
						|
  if (GetLocaleInfoEx(LOCALE_NAME_USER_DEFAULT, LOCALE_SISO3166CTRYNAME,
 | 
						|
                      (LPWSTR)&locale_name,
 | 
						|
                      sizeof(locale_name) / sizeof(WCHAR)) ||
 | 
						|
      GetLocaleInfoEx(LOCALE_NAME_SYSTEM_DEFAULT, LOCALE_SISO3166CTRYNAME,
 | 
						|
                      (LPWSTR)&locale_name,
 | 
						|
                      sizeof(locale_name) / sizeof(WCHAR))) {
 | 
						|
    base::WideToUTF8(locale_name, wcslen(locale_name), ®ion);
 | 
						|
  }
 | 
						|
#elif defined(OS_MAC)
 | 
						|
  CFLocaleRef locale = CFLocaleCopyCurrent();
 | 
						|
  CFStringRef value = CFStringRef(
 | 
						|
      static_cast<CFTypeRef>(CFLocaleGetValue(locale, kCFLocaleCountryCode)));
 | 
						|
  const CFIndex kCStringSize = 128;
 | 
						|
  char temporaryCString[kCStringSize] = {0};
 | 
						|
  CFStringGetCString(value, temporaryCString, kCStringSize,
 | 
						|
                     kCFStringEncodingUTF8);
 | 
						|
  region = temporaryCString;
 | 
						|
#else
 | 
						|
  const char* locale_ptr = setlocale(LC_TIME, nullptr);
 | 
						|
  if (!locale_ptr)
 | 
						|
    locale_ptr = setlocale(LC_NUMERIC, nullptr);
 | 
						|
  if (locale_ptr) {
 | 
						|
    std::string locale = locale_ptr;
 | 
						|
    std::string::size_type rpos = locale.find('.');
 | 
						|
    if (rpos != std::string::npos)
 | 
						|
      locale = locale.substr(0, rpos);
 | 
						|
    rpos = locale.find('_');
 | 
						|
    if (rpos != std::string::npos && rpos + 1 < locale.size())
 | 
						|
      region = locale.substr(rpos + 1);
 | 
						|
  }
 | 
						|
#endif
 | 
						|
  return region.size() == 2 ? region : std::string();
 | 
						|
}
 | 
						|
 | 
						|
void App::OnSecondInstance(const base::CommandLine::StringVector& cmd,
 | 
						|
                           const base::FilePath& cwd) {
 | 
						|
  Emit("second-instance", cmd, cwd);
 | 
						|
}
 | 
						|
 | 
						|
bool App::HasSingleInstanceLock() const {
 | 
						|
  if (process_singleton_)
 | 
						|
    return true;
 | 
						|
  return false;
 | 
						|
}
 | 
						|
 | 
						|
bool App::RequestSingleInstanceLock() {
 | 
						|
  if (HasSingleInstanceLock())
 | 
						|
    return true;
 | 
						|
 | 
						|
  base::FilePath user_dir;
 | 
						|
  base::PathService::Get(chrome::DIR_USER_DATA, &user_dir);
 | 
						|
 | 
						|
  auto cb = base::BindRepeating(&App::OnSecondInstance, base::Unretained(this));
 | 
						|
 | 
						|
  process_singleton_ = std::make_unique<ProcessSingleton>(
 | 
						|
      user_dir, base::BindRepeating(NotificationCallbackWrapper, cb));
 | 
						|
 | 
						|
  switch (process_singleton_->NotifyOtherProcessOrCreate()) {
 | 
						|
    case ProcessSingleton::NotifyResult::LOCK_ERROR:
 | 
						|
    case ProcessSingleton::NotifyResult::PROFILE_IN_USE:
 | 
						|
    case ProcessSingleton::NotifyResult::PROCESS_NOTIFIED: {
 | 
						|
      process_singleton_.reset();
 | 
						|
      return false;
 | 
						|
    }
 | 
						|
    case ProcessSingleton::NotifyResult::PROCESS_NONE:
 | 
						|
    default:  // Shouldn't be needed, but VS warns if it is not there.
 | 
						|
      return true;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
void App::ReleaseSingleInstanceLock() {
 | 
						|
  if (process_singleton_) {
 | 
						|
    process_singleton_->Cleanup();
 | 
						|
    process_singleton_.reset();
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
bool App::Relaunch(gin::Arguments* js_args) {
 | 
						|
  // Parse parameters.
 | 
						|
  bool override_argv = false;
 | 
						|
  base::FilePath exec_path;
 | 
						|
  relauncher::StringVector args;
 | 
						|
 | 
						|
  gin_helper::Dictionary options;
 | 
						|
  if (js_args->GetNext(&options)) {
 | 
						|
    if (options.Get("execPath", &exec_path) | options.Get("args", &args))
 | 
						|
      override_argv = true;
 | 
						|
  }
 | 
						|
 | 
						|
  if (!override_argv) {
 | 
						|
    const relauncher::StringVector& argv =
 | 
						|
        electron::ElectronCommandLine::argv();
 | 
						|
    return relauncher::RelaunchApp(argv);
 | 
						|
  }
 | 
						|
 | 
						|
  relauncher::StringVector argv;
 | 
						|
  argv.reserve(1 + args.size());
 | 
						|
 | 
						|
  if (exec_path.empty()) {
 | 
						|
    base::FilePath current_exe_path;
 | 
						|
    base::PathService::Get(base::FILE_EXE, ¤t_exe_path);
 | 
						|
    argv.push_back(current_exe_path.value());
 | 
						|
  } else {
 | 
						|
    argv.push_back(exec_path.value());
 | 
						|
  }
 | 
						|
 | 
						|
  argv.insert(argv.end(), args.begin(), args.end());
 | 
						|
 | 
						|
  return relauncher::RelaunchApp(argv);
 | 
						|
}
 | 
						|
 | 
						|
void App::DisableHardwareAcceleration(gin_helper::ErrorThrower thrower) {
 | 
						|
  if (Browser::Get()->is_ready()) {
 | 
						|
    thrower.ThrowError(
 | 
						|
        "app.disableHardwareAcceleration() can only be called "
 | 
						|
        "before app is ready");
 | 
						|
    return;
 | 
						|
  }
 | 
						|
  if (content::GpuDataManager::Initialized()) {
 | 
						|
    content::GpuDataManager::GetInstance()->DisableHardwareAcceleration();
 | 
						|
  } else {
 | 
						|
    disable_hw_acceleration_ = true;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
void App::DisableDomainBlockingFor3DAPIs(gin_helper::ErrorThrower thrower) {
 | 
						|
  if (Browser::Get()->is_ready()) {
 | 
						|
    thrower.ThrowError(
 | 
						|
        "app.disableDomainBlockingFor3DAPIs() can only be called "
 | 
						|
        "before app is ready");
 | 
						|
    return;
 | 
						|
  }
 | 
						|
  if (content::GpuDataManager::Initialized()) {
 | 
						|
    content::GpuDataManagerImpl::GetInstance()
 | 
						|
        ->DisableDomainBlockingFor3DAPIsForTesting();
 | 
						|
  } else {
 | 
						|
    disable_domain_blocking_for_3DAPIs_ = true;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
bool App::IsAccessibilitySupportEnabled() {
 | 
						|
  auto* ax_state = content::BrowserAccessibilityState::GetInstance();
 | 
						|
  return ax_state->IsAccessibleBrowser();
 | 
						|
}
 | 
						|
 | 
						|
void App::SetAccessibilitySupportEnabled(gin_helper::ErrorThrower thrower,
 | 
						|
                                         bool enabled) {
 | 
						|
  if (!Browser::Get()->is_ready()) {
 | 
						|
    thrower.ThrowError(
 | 
						|
        "app.setAccessibilitySupportEnabled() can only be called "
 | 
						|
        "after app is ready");
 | 
						|
    return;
 | 
						|
  }
 | 
						|
 | 
						|
  auto* ax_state = content::BrowserAccessibilityState::GetInstance();
 | 
						|
  if (enabled) {
 | 
						|
    ax_state->OnScreenReaderDetected();
 | 
						|
  } else {
 | 
						|
    ax_state->DisableAccessibility();
 | 
						|
  }
 | 
						|
  Browser::Get()->OnAccessibilitySupportChanged();
 | 
						|
}
 | 
						|
 | 
						|
Browser::LoginItemSettings App::GetLoginItemSettings(gin::Arguments* args) {
 | 
						|
  Browser::LoginItemSettings options;
 | 
						|
  args->GetNext(&options);
 | 
						|
  return Browser::Get()->GetLoginItemSettings(options);
 | 
						|
}
 | 
						|
 | 
						|
#if defined(USE_NSS_CERTS)
 | 
						|
void App::ImportCertificate(gin_helper::ErrorThrower thrower,
 | 
						|
                            base::Value options,
 | 
						|
                            net::CompletionOnceCallback callback) {
 | 
						|
  if (!options.is_dict()) {
 | 
						|
    thrower.ThrowTypeError("Expected options to be an object");
 | 
						|
    return;
 | 
						|
  }
 | 
						|
 | 
						|
  auto* browser_context = ElectronBrowserContext::From("", false);
 | 
						|
  if (!certificate_manager_model_) {
 | 
						|
    CertificateManagerModel::Create(
 | 
						|
        browser_context,
 | 
						|
        base::BindOnce(&App::OnCertificateManagerModelCreated,
 | 
						|
                       base::Unretained(this), std::move(options),
 | 
						|
                       std::move(callback)));
 | 
						|
    return;
 | 
						|
  }
 | 
						|
 | 
						|
  int rv =
 | 
						|
      ImportIntoCertStore(certificate_manager_model_.get(), std::move(options));
 | 
						|
  std::move(callback).Run(rv);
 | 
						|
}
 | 
						|
 | 
						|
void App::OnCertificateManagerModelCreated(
 | 
						|
    base::Value options,
 | 
						|
    net::CompletionOnceCallback callback,
 | 
						|
    std::unique_ptr<CertificateManagerModel> model) {
 | 
						|
  certificate_manager_model_ = std::move(model);
 | 
						|
  int rv =
 | 
						|
      ImportIntoCertStore(certificate_manager_model_.get(), std::move(options));
 | 
						|
  std::move(callback).Run(rv);
 | 
						|
}
 | 
						|
#endif
 | 
						|
 | 
						|
#if defined(OS_WIN)
 | 
						|
v8::Local<v8::Value> App::GetJumpListSettings() {
 | 
						|
  JumpList jump_list(Browser::Get()->GetAppUserModelID());
 | 
						|
 | 
						|
  int min_items = 10;
 | 
						|
  std::vector<JumpListItem> removed_items;
 | 
						|
  if (jump_list.Begin(&min_items, &removed_items)) {
 | 
						|
    // We don't actually want to change anything, so abort the transaction.
 | 
						|
    jump_list.Abort();
 | 
						|
  } else {
 | 
						|
    LOG(ERROR) << "Failed to begin Jump List transaction.";
 | 
						|
  }
 | 
						|
 | 
						|
  v8::Isolate* isolate = JavascriptEnvironment::GetIsolate();
 | 
						|
  gin_helper::Dictionary dict = gin::Dictionary::CreateEmpty(isolate);
 | 
						|
  dict.Set("minItems", min_items);
 | 
						|
  dict.Set("removedItems", gin::ConvertToV8(isolate, removed_items));
 | 
						|
  return dict.GetHandle();
 | 
						|
}
 | 
						|
 | 
						|
JumpListResult App::SetJumpList(v8::Local<v8::Value> val,
 | 
						|
                                gin::Arguments* args) {
 | 
						|
  std::vector<JumpListCategory> categories;
 | 
						|
  bool delete_jump_list = val->IsNull();
 | 
						|
  if (!delete_jump_list &&
 | 
						|
      !gin::ConvertFromV8(args->isolate(), val, &categories)) {
 | 
						|
    gin_helper::ErrorThrower(args->isolate())
 | 
						|
        .ThrowError("Argument must be null or an array of categories");
 | 
						|
    return JumpListResult::kArgumentError;
 | 
						|
  }
 | 
						|
 | 
						|
  JumpList jump_list(Browser::Get()->GetAppUserModelID());
 | 
						|
 | 
						|
  if (delete_jump_list) {
 | 
						|
    return jump_list.Delete() ? JumpListResult::kSuccess
 | 
						|
                              : JumpListResult::kGenericError;
 | 
						|
  }
 | 
						|
 | 
						|
  // Start a transaction that updates the JumpList of this application.
 | 
						|
  if (!jump_list.Begin())
 | 
						|
    return JumpListResult::kGenericError;
 | 
						|
 | 
						|
  JumpListResult result = jump_list.AppendCategories(categories);
 | 
						|
  // AppendCategories may have failed to add some categories, but it's better
 | 
						|
  // to have something than nothing so try to commit the changes anyway.
 | 
						|
  if (!jump_list.Commit()) {
 | 
						|
    LOG(ERROR) << "Failed to commit changes to custom Jump List.";
 | 
						|
    // It's more useful to return the earlier error code that might give
 | 
						|
    // some indication as to why the transaction actually failed, so don't
 | 
						|
    // overwrite it with a "generic error" code here.
 | 
						|
    if (result == JumpListResult::kSuccess)
 | 
						|
      result = JumpListResult::kGenericError;
 | 
						|
  }
 | 
						|
 | 
						|
  return result;
 | 
						|
}
 | 
						|
#endif  // defined(OS_WIN)
 | 
						|
 | 
						|
v8::Local<v8::Promise> App::GetFileIcon(const base::FilePath& path,
 | 
						|
                                        gin::Arguments* args) {
 | 
						|
  v8::Isolate* isolate = JavascriptEnvironment::GetIsolate();
 | 
						|
  gin_helper::Promise<gfx::Image> promise(isolate);
 | 
						|
  v8::Local<v8::Promise> handle = promise.GetHandle();
 | 
						|
  base::FilePath normalized_path = path.NormalizePathSeparators();
 | 
						|
 | 
						|
  IconLoader::IconSize icon_size;
 | 
						|
  gin_helper::Dictionary options;
 | 
						|
  if (!args->GetNext(&options)) {
 | 
						|
    icon_size = IconLoader::IconSize::NORMAL;
 | 
						|
  } else {
 | 
						|
    std::string icon_size_string;
 | 
						|
    options.Get("size", &icon_size_string);
 | 
						|
    icon_size = GetIconSizeByString(icon_size_string);
 | 
						|
  }
 | 
						|
 | 
						|
  auto* icon_manager = ElectronBrowserMainParts::Get()->GetIconManager();
 | 
						|
  gfx::Image* icon =
 | 
						|
      icon_manager->LookupIconFromFilepath(normalized_path, icon_size, 1.0f);
 | 
						|
  if (icon) {
 | 
						|
    promise.Resolve(*icon);
 | 
						|
  } else {
 | 
						|
    icon_manager->LoadIcon(
 | 
						|
        normalized_path, icon_size, 1.0f,
 | 
						|
        base::BindOnce(&OnIconDataAvailable, std::move(promise)),
 | 
						|
        &cancelable_task_tracker_);
 | 
						|
  }
 | 
						|
  return handle;
 | 
						|
}
 | 
						|
 | 
						|
std::vector<gin_helper::Dictionary> App::GetAppMetrics(v8::Isolate* isolate) {
 | 
						|
  std::vector<gin_helper::Dictionary> result;
 | 
						|
  result.reserve(app_metrics_.size());
 | 
						|
  int processor_count = base::SysInfo::NumberOfProcessors();
 | 
						|
 | 
						|
  for (const auto& process_metric : app_metrics_) {
 | 
						|
    gin_helper::Dictionary pid_dict = gin::Dictionary::CreateEmpty(isolate);
 | 
						|
    gin_helper::Dictionary cpu_dict = gin::Dictionary::CreateEmpty(isolate);
 | 
						|
 | 
						|
    pid_dict.SetHidden("simple", true);
 | 
						|
    cpu_dict.SetHidden("simple", true);
 | 
						|
    cpu_dict.Set(
 | 
						|
        "percentCPUUsage",
 | 
						|
        process_metric.second->metrics->GetPlatformIndependentCPUUsage() /
 | 
						|
            processor_count);
 | 
						|
 | 
						|
#if !defined(OS_WIN)
 | 
						|
    cpu_dict.Set("idleWakeupsPerSecond",
 | 
						|
                 process_metric.second->metrics->GetIdleWakeupsPerSecond());
 | 
						|
#else
 | 
						|
    // Chrome's underlying process_metrics.cc will throw a non-fatal warning
 | 
						|
    // that this method isn't implemented on Windows, so set it to 0 instead
 | 
						|
    // of calling it
 | 
						|
    cpu_dict.Set("idleWakeupsPerSecond", 0);
 | 
						|
#endif
 | 
						|
 | 
						|
    pid_dict.Set("cpu", cpu_dict);
 | 
						|
    pid_dict.Set("pid", process_metric.second->process.Pid());
 | 
						|
    pid_dict.Set("type", content::GetProcessTypeNameInEnglish(
 | 
						|
                             process_metric.second->type));
 | 
						|
    pid_dict.Set("creationTime",
 | 
						|
                 process_metric.second->process.CreationTime().ToJsTime());
 | 
						|
 | 
						|
    if (!process_metric.second->service_name.empty()) {
 | 
						|
      pid_dict.Set("serviceName", process_metric.second->service_name);
 | 
						|
    }
 | 
						|
 | 
						|
    if (!process_metric.second->name.empty()) {
 | 
						|
      pid_dict.Set("name", process_metric.second->name);
 | 
						|
    }
 | 
						|
 | 
						|
#if !defined(OS_LINUX)
 | 
						|
    auto memory_info = process_metric.second->GetMemoryInfo();
 | 
						|
 | 
						|
    gin_helper::Dictionary memory_dict = gin::Dictionary::CreateEmpty(isolate);
 | 
						|
    memory_dict.SetHidden("simple", true);
 | 
						|
    memory_dict.Set("workingSetSize",
 | 
						|
                    static_cast<double>(memory_info.working_set_size >> 10));
 | 
						|
    memory_dict.Set(
 | 
						|
        "peakWorkingSetSize",
 | 
						|
        static_cast<double>(memory_info.peak_working_set_size >> 10));
 | 
						|
 | 
						|
#if defined(OS_WIN)
 | 
						|
    memory_dict.Set("privateBytes",
 | 
						|
                    static_cast<double>(memory_info.private_bytes >> 10));
 | 
						|
#endif
 | 
						|
 | 
						|
    pid_dict.Set("memory", memory_dict);
 | 
						|
#endif
 | 
						|
 | 
						|
#if defined(OS_MAC)
 | 
						|
    pid_dict.Set("sandboxed", process_metric.second->IsSandboxed());
 | 
						|
#elif defined(OS_WIN)
 | 
						|
    auto integrity_level = process_metric.second->GetIntegrityLevel();
 | 
						|
    auto sandboxed = ProcessMetric::IsSandboxed(integrity_level);
 | 
						|
    pid_dict.Set("integrityLevel", integrity_level);
 | 
						|
    pid_dict.Set("sandboxed", sandboxed);
 | 
						|
#endif
 | 
						|
 | 
						|
    result.push_back(pid_dict);
 | 
						|
  }
 | 
						|
 | 
						|
  return result;
 | 
						|
}
 | 
						|
 | 
						|
v8::Local<v8::Value> App::GetGPUFeatureStatus(v8::Isolate* isolate) {
 | 
						|
  return gin::ConvertToV8(isolate, content::GetFeatureStatus());
 | 
						|
}
 | 
						|
 | 
						|
v8::Local<v8::Promise> App::GetGPUInfo(v8::Isolate* isolate,
 | 
						|
                                       const std::string& info_type) {
 | 
						|
  auto* const gpu_data_manager = content::GpuDataManagerImpl::GetInstance();
 | 
						|
  gin_helper::Promise<base::DictionaryValue> promise(isolate);
 | 
						|
  v8::Local<v8::Promise> handle = promise.GetHandle();
 | 
						|
  if (info_type != "basic" && info_type != "complete") {
 | 
						|
    promise.RejectWithErrorMessage(
 | 
						|
        "Invalid info type. Use 'basic' or 'complete'");
 | 
						|
    return handle;
 | 
						|
  }
 | 
						|
  std::string reason;
 | 
						|
  if (!gpu_data_manager->GpuAccessAllowed(&reason)) {
 | 
						|
    promise.RejectWithErrorMessage("GPU access not allowed. Reason: " + reason);
 | 
						|
    return handle;
 | 
						|
  }
 | 
						|
 | 
						|
  auto* const info_mgr = GPUInfoManager::GetInstance();
 | 
						|
  if (info_type == "complete") {
 | 
						|
#if defined(OS_WIN) || defined(OS_MAC)
 | 
						|
    info_mgr->FetchCompleteInfo(std::move(promise));
 | 
						|
#else
 | 
						|
    info_mgr->FetchBasicInfo(std::move(promise));
 | 
						|
#endif
 | 
						|
  } else /* (info_type == "basic") */ {
 | 
						|
    info_mgr->FetchBasicInfo(std::move(promise));
 | 
						|
  }
 | 
						|
  return handle;
 | 
						|
}
 | 
						|
 | 
						|
static void RemoveNoSandboxSwitch(base::CommandLine* command_line) {
 | 
						|
  if (command_line->HasSwitch(sandbox::policy::switches::kNoSandbox)) {
 | 
						|
    const base::CommandLine::CharType* noSandboxArg =
 | 
						|
        FILE_PATH_LITERAL("--no-sandbox");
 | 
						|
    base::CommandLine::StringVector modified_command_line;
 | 
						|
    for (auto& arg : command_line->argv()) {
 | 
						|
      if (arg.compare(noSandboxArg) != 0) {
 | 
						|
        modified_command_line.push_back(arg);
 | 
						|
      }
 | 
						|
    }
 | 
						|
    command_line->InitFromArgv(modified_command_line);
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
void App::EnableSandbox(gin_helper::ErrorThrower thrower) {
 | 
						|
  if (Browser::Get()->is_ready()) {
 | 
						|
    thrower.ThrowError(
 | 
						|
        "app.enableSandbox() can only be called "
 | 
						|
        "before app is ready");
 | 
						|
    return;
 | 
						|
  }
 | 
						|
 | 
						|
  auto* command_line = base::CommandLine::ForCurrentProcess();
 | 
						|
  RemoveNoSandboxSwitch(command_line);
 | 
						|
  command_line->AppendSwitch(switches::kEnableSandbox);
 | 
						|
}
 | 
						|
 | 
						|
void App::SetUserAgentFallback(const std::string& user_agent) {
 | 
						|
  ElectronBrowserClient::Get()->SetUserAgent(user_agent);
 | 
						|
}
 | 
						|
 | 
						|
#if defined(OS_WIN)
 | 
						|
 | 
						|
bool App::IsRunningUnderARM64Translation() const {
 | 
						|
  USHORT processMachine = 0;
 | 
						|
  USHORT nativeMachine = 0;
 | 
						|
 | 
						|
  auto IsWow64Process2 = reinterpret_cast<decltype(&::IsWow64Process2)>(
 | 
						|
      GetProcAddress(GetModuleHandle(L"kernel32.dll"), "IsWow64Process2"));
 | 
						|
 | 
						|
  if (IsWow64Process2 == nullptr) {
 | 
						|
    return false;
 | 
						|
  }
 | 
						|
 | 
						|
  if (!IsWow64Process2(GetCurrentProcess(), &processMachine, &nativeMachine)) {
 | 
						|
    return false;
 | 
						|
  }
 | 
						|
 | 
						|
  return nativeMachine == IMAGE_FILE_MACHINE_ARM64;
 | 
						|
}
 | 
						|
#endif
 | 
						|
 | 
						|
std::string App::GetUserAgentFallback() {
 | 
						|
  return ElectronBrowserClient::Get()->GetUserAgent();
 | 
						|
}
 | 
						|
 | 
						|
#if defined(OS_MAC)
 | 
						|
bool App::MoveToApplicationsFolder(gin_helper::ErrorThrower thrower,
 | 
						|
                                   gin::Arguments* args) {
 | 
						|
  return ElectronBundleMover::Move(thrower, args);
 | 
						|
}
 | 
						|
 | 
						|
bool App::IsInApplicationsFolder() {
 | 
						|
  return ElectronBundleMover::IsCurrentAppInApplicationsFolder();
 | 
						|
}
 | 
						|
 | 
						|
int DockBounce(gin::Arguments* args) {
 | 
						|
  int request_id = -1;
 | 
						|
  std::string type = "informational";
 | 
						|
  args->GetNext(&type);
 | 
						|
 | 
						|
  if (type == "critical")
 | 
						|
    request_id = Browser::Get()->DockBounce(Browser::BounceType::kCritical);
 | 
						|
  else if (type == "informational")
 | 
						|
    request_id =
 | 
						|
        Browser::Get()->DockBounce(Browser::BounceType::kInformational);
 | 
						|
  return request_id;
 | 
						|
}
 | 
						|
 | 
						|
void DockSetMenu(electron::api::Menu* menu) {
 | 
						|
  Browser::Get()->DockSetMenu(menu->model());
 | 
						|
}
 | 
						|
 | 
						|
v8::Local<v8::Value> App::GetDockAPI(v8::Isolate* isolate) {
 | 
						|
  if (dock_.IsEmpty()) {
 | 
						|
    // Initialize the Dock API, the methods are bound to "dock" which exists
 | 
						|
    // for the lifetime of "app"
 | 
						|
    auto browser = base::Unretained(Browser::Get());
 | 
						|
    gin_helper::Dictionary dock_obj = gin::Dictionary::CreateEmpty(isolate);
 | 
						|
    dock_obj.SetMethod("bounce", &DockBounce);
 | 
						|
    dock_obj.SetMethod(
 | 
						|
        "cancelBounce",
 | 
						|
        base::BindRepeating(&Browser::DockCancelBounce, browser));
 | 
						|
    dock_obj.SetMethod(
 | 
						|
        "downloadFinished",
 | 
						|
        base::BindRepeating(&Browser::DockDownloadFinished, browser));
 | 
						|
    dock_obj.SetMethod(
 | 
						|
        "setBadge", base::BindRepeating(&Browser::DockSetBadgeText, browser));
 | 
						|
    dock_obj.SetMethod(
 | 
						|
        "getBadge", base::BindRepeating(&Browser::DockGetBadgeText, browser));
 | 
						|
    dock_obj.SetMethod("hide",
 | 
						|
                       base::BindRepeating(&Browser::DockHide, browser));
 | 
						|
    dock_obj.SetMethod("show",
 | 
						|
                       base::BindRepeating(&Browser::DockShow, browser));
 | 
						|
    dock_obj.SetMethod("isVisible",
 | 
						|
                       base::BindRepeating(&Browser::DockIsVisible, browser));
 | 
						|
    dock_obj.SetMethod("setMenu", &DockSetMenu);
 | 
						|
    dock_obj.SetMethod("setIcon",
 | 
						|
                       base::BindRepeating(&Browser::DockSetIcon, browser));
 | 
						|
 | 
						|
    dock_.Reset(isolate, dock_obj.GetHandle());
 | 
						|
  }
 | 
						|
  return v8::Local<v8::Value>::New(isolate, dock_);
 | 
						|
}
 | 
						|
#endif
 | 
						|
 | 
						|
// static
 | 
						|
App* App::Get() {
 | 
						|
  static base::NoDestructor<App> app;
 | 
						|
  return app.get();
 | 
						|
}
 | 
						|
 | 
						|
// static
 | 
						|
gin::Handle<App> App::Create(v8::Isolate* isolate) {
 | 
						|
  return gin::CreateHandle(isolate, Get());
 | 
						|
}
 | 
						|
 | 
						|
gin::ObjectTemplateBuilder App::GetObjectTemplateBuilder(v8::Isolate* isolate) {
 | 
						|
  auto browser = base::Unretained(Browser::Get());
 | 
						|
  return gin_helper::EventEmitterMixin<App>::GetObjectTemplateBuilder(isolate)
 | 
						|
      .SetMethod("quit", base::BindRepeating(&Browser::Quit, browser))
 | 
						|
      .SetMethod("exit", base::BindRepeating(&Browser::Exit, browser))
 | 
						|
      .SetMethod("focus", base::BindRepeating(&Browser::Focus, browser))
 | 
						|
      .SetMethod("getVersion",
 | 
						|
                 base::BindRepeating(&Browser::GetVersion, browser))
 | 
						|
      .SetMethod("setVersion",
 | 
						|
                 base::BindRepeating(&Browser::SetVersion, browser))
 | 
						|
      .SetMethod("getName", base::BindRepeating(&Browser::GetName, browser))
 | 
						|
      .SetMethod("setName", base::BindRepeating(&Browser::SetName, browser))
 | 
						|
      .SetMethod("isReady", base::BindRepeating(&Browser::is_ready, browser))
 | 
						|
      .SetMethod("whenReady", base::BindRepeating(&Browser::WhenReady, browser))
 | 
						|
      .SetMethod("addRecentDocument",
 | 
						|
                 base::BindRepeating(&Browser::AddRecentDocument, browser))
 | 
						|
      .SetMethod("clearRecentDocuments",
 | 
						|
                 base::BindRepeating(&Browser::ClearRecentDocuments, browser))
 | 
						|
#if defined(OS_WIN)
 | 
						|
      .SetMethod("setAppUserModelId",
 | 
						|
                 base::BindRepeating(&Browser::SetAppUserModelID, browser))
 | 
						|
#endif
 | 
						|
      .SetMethod(
 | 
						|
          "isDefaultProtocolClient",
 | 
						|
          base::BindRepeating(&Browser::IsDefaultProtocolClient, browser))
 | 
						|
      .SetMethod(
 | 
						|
          "setAsDefaultProtocolClient",
 | 
						|
          base::BindRepeating(&Browser::SetAsDefaultProtocolClient, browser))
 | 
						|
      .SetMethod(
 | 
						|
          "removeAsDefaultProtocolClient",
 | 
						|
          base::BindRepeating(&Browser::RemoveAsDefaultProtocolClient, browser))
 | 
						|
#if !defined(OS_LINUX)
 | 
						|
      .SetMethod(
 | 
						|
          "getApplicationInfoForProtocol",
 | 
						|
          base::BindRepeating(&Browser::GetApplicationInfoForProtocol, browser))
 | 
						|
#endif
 | 
						|
      .SetMethod(
 | 
						|
          "getApplicationNameForProtocol",
 | 
						|
          base::BindRepeating(&Browser::GetApplicationNameForProtocol, browser))
 | 
						|
      .SetMethod("setBadgeCount",
 | 
						|
                 base::BindRepeating(&Browser::SetBadgeCount, browser))
 | 
						|
      .SetMethod("getBadgeCount",
 | 
						|
                 base::BindRepeating(&Browser::GetBadgeCount, browser))
 | 
						|
      .SetMethod("getLoginItemSettings", &App::GetLoginItemSettings)
 | 
						|
      .SetMethod("setLoginItemSettings",
 | 
						|
                 base::BindRepeating(&Browser::SetLoginItemSettings, browser))
 | 
						|
      .SetMethod("isEmojiPanelSupported",
 | 
						|
                 base::BindRepeating(&Browser::IsEmojiPanelSupported, browser))
 | 
						|
#if defined(OS_MAC)
 | 
						|
      .SetMethod("hide", base::BindRepeating(&Browser::Hide, browser))
 | 
						|
      .SetMethod("show", base::BindRepeating(&Browser::Show, browser))
 | 
						|
      .SetMethod("setUserActivity",
 | 
						|
                 base::BindRepeating(&Browser::SetUserActivity, browser))
 | 
						|
      .SetMethod("getCurrentActivityType",
 | 
						|
                 base::BindRepeating(&Browser::GetCurrentActivityType, browser))
 | 
						|
      .SetMethod(
 | 
						|
          "invalidateCurrentActivity",
 | 
						|
          base::BindRepeating(&Browser::InvalidateCurrentActivity, browser))
 | 
						|
      .SetMethod("resignCurrentActivity",
 | 
						|
                 base::BindRepeating(&Browser::ResignCurrentActivity, browser))
 | 
						|
      .SetMethod("updateCurrentActivity",
 | 
						|
                 base::BindRepeating(&Browser::UpdateCurrentActivity, browser))
 | 
						|
      .SetMethod("moveToApplicationsFolder", &App::MoveToApplicationsFolder)
 | 
						|
      .SetMethod("isInApplicationsFolder", &App::IsInApplicationsFolder)
 | 
						|
      .SetMethod("setActivationPolicy", &App::SetActivationPolicy)
 | 
						|
#endif
 | 
						|
      .SetMethod("setAboutPanelOptions",
 | 
						|
                 base::BindRepeating(&Browser::SetAboutPanelOptions, browser))
 | 
						|
      .SetMethod("showAboutPanel",
 | 
						|
                 base::BindRepeating(&Browser::ShowAboutPanel, browser))
 | 
						|
#if defined(OS_MAC)
 | 
						|
      .SetMethod(
 | 
						|
          "isSecureKeyboardEntryEnabled",
 | 
						|
          base::BindRepeating(&Browser::IsSecureKeyboardEntryEnabled, browser))
 | 
						|
      .SetMethod(
 | 
						|
          "setSecureKeyboardEntryEnabled",
 | 
						|
          base::BindRepeating(&Browser::SetSecureKeyboardEntryEnabled, browser))
 | 
						|
#endif
 | 
						|
#if defined(OS_MAC) || defined(OS_WIN)
 | 
						|
      .SetMethod("showEmojiPanel",
 | 
						|
                 base::BindRepeating(&Browser::ShowEmojiPanel, browser))
 | 
						|
#endif
 | 
						|
#if defined(OS_WIN)
 | 
						|
      .SetMethod("setUserTasks",
 | 
						|
                 base::BindRepeating(&Browser::SetUserTasks, browser))
 | 
						|
      .SetMethod("getJumpListSettings", &App::GetJumpListSettings)
 | 
						|
      .SetMethod("setJumpList", &App::SetJumpList)
 | 
						|
#endif
 | 
						|
#if defined(OS_LINUX)
 | 
						|
      .SetMethod("isUnityRunning",
 | 
						|
                 base::BindRepeating(&Browser::IsUnityRunning, browser))
 | 
						|
#endif
 | 
						|
      .SetProperty("isPackaged", &App::IsPackaged)
 | 
						|
      .SetMethod("setAppPath", &App::SetAppPath)
 | 
						|
      .SetMethod("getAppPath", &App::GetAppPath)
 | 
						|
      .SetMethod("setPath", &App::SetPath)
 | 
						|
      .SetMethod("getPath", &App::GetPath)
 | 
						|
      .SetMethod("setAppLogsPath", &App::SetAppLogsPath)
 | 
						|
      .SetMethod("setDesktopName", &App::SetDesktopName)
 | 
						|
      .SetMethod("getLocale", &App::GetLocale)
 | 
						|
      .SetMethod("getLocaleCountryCode", &App::GetLocaleCountryCode)
 | 
						|
#if defined(USE_NSS_CERTS)
 | 
						|
      .SetMethod("importCertificate", &App::ImportCertificate)
 | 
						|
#endif
 | 
						|
      .SetMethod("hasSingleInstanceLock", &App::HasSingleInstanceLock)
 | 
						|
      .SetMethod("requestSingleInstanceLock", &App::RequestSingleInstanceLock)
 | 
						|
      .SetMethod("releaseSingleInstanceLock", &App::ReleaseSingleInstanceLock)
 | 
						|
      .SetMethod("relaunch", &App::Relaunch)
 | 
						|
      .SetMethod("isAccessibilitySupportEnabled",
 | 
						|
                 &App::IsAccessibilitySupportEnabled)
 | 
						|
      .SetMethod("setAccessibilitySupportEnabled",
 | 
						|
                 &App::SetAccessibilitySupportEnabled)
 | 
						|
      .SetMethod("disableHardwareAcceleration",
 | 
						|
                 &App::DisableHardwareAcceleration)
 | 
						|
      .SetMethod("disableDomainBlockingFor3DAPIs",
 | 
						|
                 &App::DisableDomainBlockingFor3DAPIs)
 | 
						|
      .SetMethod("getFileIcon", &App::GetFileIcon)
 | 
						|
      .SetMethod("getAppMetrics", &App::GetAppMetrics)
 | 
						|
      .SetMethod("getGPUFeatureStatus", &App::GetGPUFeatureStatus)
 | 
						|
      .SetMethod("getGPUInfo", &App::GetGPUInfo)
 | 
						|
#if defined(MAS_BUILD)
 | 
						|
      .SetMethod("startAccessingSecurityScopedResource",
 | 
						|
                 &App::StartAccessingSecurityScopedResource)
 | 
						|
#endif
 | 
						|
#if defined(OS_MAC)
 | 
						|
      .SetProperty("dock", &App::GetDockAPI)
 | 
						|
      .SetProperty("runningUnderRosettaTranslation",
 | 
						|
                   &App::IsRunningUnderRosettaTranslation)
 | 
						|
#endif
 | 
						|
#if defined(OS_MAC) || defined(OS_WIN)
 | 
						|
      .SetProperty("runningUnderARM64Translation",
 | 
						|
                   &App::IsRunningUnderARM64Translation)
 | 
						|
#endif
 | 
						|
      .SetProperty("userAgentFallback", &App::GetUserAgentFallback,
 | 
						|
                   &App::SetUserAgentFallback)
 | 
						|
      .SetMethod("enableSandbox", &App::EnableSandbox);
 | 
						|
}
 | 
						|
 | 
						|
const char* App::GetTypeName() {
 | 
						|
  return "App";
 | 
						|
}
 | 
						|
 | 
						|
}  // namespace api
 | 
						|
 | 
						|
}  // namespace electron
 | 
						|
 | 
						|
namespace {
 | 
						|
 | 
						|
void Initialize(v8::Local<v8::Object> exports,
 | 
						|
                v8::Local<v8::Value> unused,
 | 
						|
                v8::Local<v8::Context> context,
 | 
						|
                void* priv) {
 | 
						|
  v8::Isolate* isolate = context->GetIsolate();
 | 
						|
  gin_helper::Dictionary dict(isolate, exports);
 | 
						|
  dict.Set("app", electron::api::App::Create(isolate));
 | 
						|
}
 | 
						|
 | 
						|
}  // namespace
 | 
						|
 | 
						|
NODE_LINKED_MODULE_CONTEXT_AWARE(electron_browser_app, Initialize)
 |