2014-10-31 21:17:05 +03:00
|
|
|
// Copyright (c) 2014 GitHub, Inc.
|
2014-08-27 16:48:49 +04:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#include "atom/app/atom_content_client.h"
|
|
|
|
|
2014-08-27 17:16:45 +04:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2015-09-14 17:49:22 +03:00
|
|
|
#include "atom/common/atom_version.h"
|
2014-09-12 19:28:14 +04:00
|
|
|
#include "atom/common/chrome_version.h"
|
2015-04-28 18:45:58 +03:00
|
|
|
#include "atom/common/options_switches.h"
|
|
|
|
#include "base/command_line.h"
|
2015-05-12 01:02:42 +03:00
|
|
|
#include "base/strings/string_split.h"
|
|
|
|
#include "base/strings/string_util.h"
|
2015-04-28 18:45:58 +03:00
|
|
|
#include "content/public/common/content_constants.h"
|
|
|
|
#include "content/public/common/pepper_plugin_info.h"
|
2015-09-14 17:49:22 +03:00
|
|
|
#include "content/public/common/user_agent.h"
|
2015-04-28 18:45:58 +03:00
|
|
|
#include "ppapi/shared_impl/ppapi_permissions.h"
|
2015-12-08 22:21:46 +03:00
|
|
|
#include "url/url_constants.h"
|
2014-09-12 19:28:14 +04:00
|
|
|
|
2014-08-27 16:48:49 +04:00
|
|
|
namespace atom {
|
|
|
|
|
2015-04-28 18:45:58 +03:00
|
|
|
namespace {
|
|
|
|
|
2015-05-10 07:55:19 +03:00
|
|
|
content::PepperPluginInfo CreatePepperFlashInfo(const base::FilePath& path,
|
|
|
|
const std::string& version) {
|
|
|
|
content::PepperPluginInfo plugin;
|
|
|
|
|
|
|
|
plugin.is_out_of_process = true;
|
|
|
|
plugin.name = content::kFlashPluginName;
|
|
|
|
plugin.path = path;
|
|
|
|
plugin.permissions = ppapi::PERMISSION_ALL_BITS;
|
|
|
|
|
2015-12-07 14:56:23 +03:00
|
|
|
std::vector<std::string> flash_version_numbers = base::SplitString(
|
|
|
|
version, ".", base::TRIM_WHITESPACE, base::SPLIT_WANT_NONEMPTY);
|
2015-05-12 01:02:42 +03:00
|
|
|
if (flash_version_numbers.size() < 1)
|
|
|
|
flash_version_numbers.push_back("11");
|
|
|
|
// |SplitString()| puts in an empty string given an empty string. :(
|
|
|
|
else if (flash_version_numbers[0].empty())
|
|
|
|
flash_version_numbers[0] = "11";
|
|
|
|
if (flash_version_numbers.size() < 2)
|
|
|
|
flash_version_numbers.push_back("2");
|
|
|
|
if (flash_version_numbers.size() < 3)
|
|
|
|
flash_version_numbers.push_back("999");
|
|
|
|
if (flash_version_numbers.size() < 4)
|
|
|
|
flash_version_numbers.push_back("999");
|
|
|
|
// E.g., "Shockwave Flash 10.2 r154":
|
|
|
|
plugin.description = plugin.name + " " + flash_version_numbers[0] + "." +
|
|
|
|
flash_version_numbers[1] + " r" + flash_version_numbers[2];
|
2015-12-07 14:56:23 +03:00
|
|
|
plugin.version = base::JoinString(flash_version_numbers, ".");
|
2015-05-10 07:55:19 +03:00
|
|
|
content::WebPluginMimeType swf_mime_type(
|
|
|
|
content::kFlashPluginSwfMimeType,
|
|
|
|
content::kFlashPluginSwfExtension,
|
|
|
|
content::kFlashPluginSwfDescription);
|
|
|
|
plugin.mime_types.push_back(swf_mime_type);
|
|
|
|
content::WebPluginMimeType spl_mime_type(
|
|
|
|
content::kFlashPluginSplMimeType,
|
|
|
|
content::kFlashPluginSplExtension,
|
|
|
|
content::kFlashPluginSplDescription);
|
|
|
|
plugin.mime_types.push_back(spl_mime_type);
|
|
|
|
|
|
|
|
return plugin;
|
|
|
|
}
|
2015-04-28 18:45:58 +03:00
|
|
|
|
2015-12-08 22:21:46 +03:00
|
|
|
void ConvertStringWithSeparatorToVector(std::vector<std::string>* vec,
|
|
|
|
const char* separator,
|
|
|
|
const char* cmd_switch) {
|
|
|
|
auto command_line = base::CommandLine::ForCurrentProcess();
|
|
|
|
auto string_with_separator = command_line->GetSwitchValueASCII(cmd_switch);
|
|
|
|
if (!string_with_separator.empty())
|
|
|
|
*vec = base::SplitString(string_with_separator, separator,
|
|
|
|
base::TRIM_WHITESPACE,
|
|
|
|
base::SPLIT_WANT_NONEMPTY);
|
|
|
|
}
|
|
|
|
|
2015-04-28 18:45:58 +03:00
|
|
|
} // namespace
|
|
|
|
|
2014-08-27 16:48:49 +04:00
|
|
|
AtomContentClient::AtomContentClient() {
|
|
|
|
}
|
|
|
|
|
|
|
|
AtomContentClient::~AtomContentClient() {
|
|
|
|
}
|
|
|
|
|
2014-09-12 19:28:14 +04:00
|
|
|
std::string AtomContentClient::GetProduct() const {
|
|
|
|
return "Chrome/" CHROME_VERSION_STRING;
|
|
|
|
}
|
|
|
|
|
2015-09-14 17:49:22 +03:00
|
|
|
std::string AtomContentClient::GetUserAgent() const {
|
|
|
|
return content::BuildUserAgentFromProduct(
|
|
|
|
"Chrome/" CHROME_VERSION_STRING " "
|
|
|
|
ATOM_PRODUCT_NAME "/" ATOM_VERSION_STRING);
|
|
|
|
}
|
|
|
|
|
2014-08-27 16:48:49 +04:00
|
|
|
void AtomContentClient::AddAdditionalSchemes(
|
2015-12-07 14:56:23 +03:00
|
|
|
std::vector<url::SchemeWithType>* standard_schemes,
|
2014-08-27 16:48:49 +04:00
|
|
|
std::vector<std::string>* savable_schemes) {
|
2015-12-08 22:21:46 +03:00
|
|
|
std::vector<std::string> schemes;
|
|
|
|
ConvertStringWithSeparatorToVector(&schemes, ",",
|
|
|
|
switches::kRegisterStandardSchemes);
|
|
|
|
if (!schemes.empty()) {
|
2015-12-07 14:56:23 +03:00
|
|
|
for (const std::string& scheme : schemes)
|
|
|
|
standard_schemes->push_back({scheme.c_str(), url::SCHEME_WITHOUT_PORT});
|
2015-06-12 10:58:23 +03:00
|
|
|
}
|
2015-12-07 14:56:23 +03:00
|
|
|
standard_schemes->push_back({"chrome-extension", url::SCHEME_WITHOUT_PORT});
|
2014-08-27 16:48:49 +04:00
|
|
|
}
|
|
|
|
|
2015-04-28 18:45:58 +03:00
|
|
|
void AtomContentClient::AddPepperPlugins(
|
2015-05-10 07:55:19 +03:00
|
|
|
std::vector<content::PepperPluginInfo>* plugins) {
|
2015-05-06 10:59:23 +03:00
|
|
|
auto command_line = base::CommandLine::ForCurrentProcess();
|
2015-10-07 07:15:48 +03:00
|
|
|
auto flash_path = command_line->GetSwitchValuePath(
|
2015-05-06 10:59:23 +03:00
|
|
|
switches::kPpapiFlashPath);
|
2015-04-28 18:45:58 +03:00
|
|
|
if (flash_path.empty())
|
|
|
|
return;
|
|
|
|
|
2015-05-06 10:59:23 +03:00
|
|
|
auto flash_version = command_line->GetSwitchValueASCII(
|
|
|
|
switches::kPpapiFlashVersion);
|
|
|
|
|
2015-04-28 18:45:58 +03:00
|
|
|
plugins->push_back(
|
2015-10-07 07:15:48 +03:00
|
|
|
CreatePepperFlashInfo(flash_path, flash_version));
|
2015-04-28 18:45:58 +03:00
|
|
|
}
|
|
|
|
|
2015-12-08 22:21:46 +03:00
|
|
|
void AtomContentClient::AddServiceWorkerSchemes(
|
|
|
|
std::set<std::string>* service_worker_schemes) {
|
|
|
|
std::vector<std::string> schemes;
|
|
|
|
ConvertStringWithSeparatorToVector(&schemes, ",",
|
|
|
|
switches::kRegisterServiceWorkerSchemes);
|
|
|
|
if (!schemes.empty()) {
|
|
|
|
for (const std::string& scheme : schemes)
|
|
|
|
service_worker_schemes->insert(scheme);
|
|
|
|
}
|
|
|
|
service_worker_schemes->insert(url::kFileScheme);
|
|
|
|
}
|
|
|
|
|
2014-08-27 16:48:49 +04:00
|
|
|
} // namespace atom
|