2015-10-28 12:13:06 +00:00
|
|
|
// Copyright (c) 2015 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#include "atom/common/native_mate_converters/content_converter.h"
|
|
|
|
|
2015-12-17 17:27:56 +00:00
|
|
|
#include <string>
|
2015-11-02 15:28:45 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2016-01-31 21:35:34 +00:00
|
|
|
#include "atom/browser/api/atom_api_web_contents.h"
|
2016-02-01 09:43:49 +00:00
|
|
|
#include "atom/browser/web_contents_permission_helper.h"
|
2016-05-03 00:02:33 +00:00
|
|
|
#include "atom/common/native_mate_converters/blink_converter.h"
|
2015-11-02 15:28:45 +00:00
|
|
|
#include "atom/common/native_mate_converters/callback.h"
|
2016-05-03 00:02:33 +00:00
|
|
|
#include "atom/common/native_mate_converters/gurl_converter.h"
|
2015-10-31 13:39:07 +00:00
|
|
|
#include "atom/common/native_mate_converters/string16_converter.h"
|
2016-05-03 00:02:33 +00:00
|
|
|
#include "atom/common/native_mate_converters/ui_base_types_converter.h"
|
2016-10-09 23:30:38 +00:00
|
|
|
#include "atom/common/native_mate_converters/value_converter.h"
|
2015-11-02 15:28:45 +00:00
|
|
|
#include "content/public/browser/web_contents.h"
|
2015-10-31 13:39:07 +00:00
|
|
|
#include "content/public/common/context_menu_params.h"
|
2015-10-28 12:13:06 +00:00
|
|
|
#include "native_mate/dictionary.h"
|
2016-10-09 23:30:38 +00:00
|
|
|
|
2015-11-02 15:28:45 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
void ExecuteCommand(content::WebContents* web_contents,
|
|
|
|
int action,
|
|
|
|
const content::CustomContextMenuContext& context) {
|
|
|
|
web_contents->ExecuteCustomContextMenuCommand(action, context);
|
|
|
|
}
|
2015-10-28 12:13:06 +00:00
|
|
|
|
2015-11-02 15:28:45 +00:00
|
|
|
// Forward declaration for nested recursive call.
|
|
|
|
v8::Local<v8::Value> MenuToV8(v8::Isolate* isolate,
|
|
|
|
content::WebContents* web_contents,
|
|
|
|
const content::CustomContextMenuContext& context,
|
|
|
|
const std::vector<content::MenuItem>& menu);
|
|
|
|
|
|
|
|
v8::Local<v8::Value> MenuItemToV8(
|
|
|
|
v8::Isolate* isolate,
|
|
|
|
content::WebContents* web_contents,
|
|
|
|
const content::CustomContextMenuContext& context,
|
|
|
|
const content::MenuItem& item) {
|
|
|
|
mate::Dictionary v8_item = mate::Dictionary::CreateEmpty(isolate);
|
|
|
|
switch (item.type) {
|
|
|
|
case content::MenuItem::CHECKABLE_OPTION:
|
|
|
|
case content::MenuItem::GROUP:
|
|
|
|
v8_item.Set("checked", item.checked);
|
2018-06-20 19:54:42 +00:00
|
|
|
FALLTHROUGH;
|
2015-11-02 15:28:45 +00:00
|
|
|
case content::MenuItem::OPTION:
|
|
|
|
case content::MenuItem::SUBMENU:
|
|
|
|
v8_item.Set("label", item.label);
|
|
|
|
v8_item.Set("enabled", item.enabled);
|
2018-06-20 19:54:42 +00:00
|
|
|
FALLTHROUGH;
|
2015-11-02 15:28:45 +00:00
|
|
|
default:
|
|
|
|
v8_item.Set("type", item.type);
|
2015-10-31 13:39:07 +00:00
|
|
|
}
|
2015-11-02 15:28:45 +00:00
|
|
|
if (item.type == content::MenuItem::SUBMENU)
|
|
|
|
v8_item.Set("submenu",
|
|
|
|
MenuToV8(isolate, web_contents, context, item.submenu));
|
|
|
|
else if (item.action > 0)
|
2019-05-29 20:02:15 +00:00
|
|
|
v8_item.Set("click", base::BindRepeating(ExecuteCommand, web_contents,
|
|
|
|
item.action, context));
|
2015-11-02 15:28:45 +00:00
|
|
|
return v8_item.GetHandle();
|
|
|
|
}
|
|
|
|
|
|
|
|
v8::Local<v8::Value> MenuToV8(v8::Isolate* isolate,
|
|
|
|
content::WebContents* web_contents,
|
|
|
|
const content::CustomContextMenuContext& context,
|
|
|
|
const std::vector<content::MenuItem>& menu) {
|
|
|
|
std::vector<v8::Local<v8::Value>> v8_menu;
|
|
|
|
for (const auto& menu_item : menu)
|
|
|
|
v8_menu.push_back(MenuItemToV8(isolate, web_contents, context, menu_item));
|
|
|
|
return mate::ConvertToV8(isolate, v8_menu);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
namespace mate {
|
2015-10-31 13:39:07 +00:00
|
|
|
|
2015-10-28 12:13:06 +00:00
|
|
|
// static
|
2015-11-02 15:28:45 +00:00
|
|
|
v8::Local<v8::Value> Converter<content::MenuItem::Type>::ToV8(
|
2018-04-18 01:55:30 +00:00
|
|
|
v8::Isolate* isolate,
|
|
|
|
const content::MenuItem::Type& val) {
|
2015-11-02 15:28:45 +00:00
|
|
|
switch (val) {
|
|
|
|
case content::MenuItem::CHECKABLE_OPTION:
|
|
|
|
return StringToV8(isolate, "checkbox");
|
|
|
|
case content::MenuItem::GROUP:
|
|
|
|
return StringToV8(isolate, "radio");
|
|
|
|
case content::MenuItem::SEPARATOR:
|
|
|
|
return StringToV8(isolate, "separator");
|
|
|
|
case content::MenuItem::SUBMENU:
|
|
|
|
return StringToV8(isolate, "submenu");
|
|
|
|
case content::MenuItem::OPTION:
|
|
|
|
default:
|
|
|
|
return StringToV8(isolate, "normal");
|
|
|
|
}
|
2015-10-28 12:21:56 +00:00
|
|
|
}
|
2015-10-28 12:13:06 +00:00
|
|
|
|
|
|
|
// static
|
2015-11-02 15:28:45 +00:00
|
|
|
v8::Local<v8::Value> Converter<ContextMenuParamsWithWebContents>::ToV8(
|
2018-04-18 01:55:30 +00:00
|
|
|
v8::Isolate* isolate,
|
|
|
|
const ContextMenuParamsWithWebContents& val) {
|
2015-11-02 15:28:45 +00:00
|
|
|
const auto& params = val.first;
|
2015-10-28 12:13:06 +00:00
|
|
|
mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate);
|
2015-11-02 15:28:45 +00:00
|
|
|
dict.Set("x", params.x);
|
|
|
|
dict.Set("y", params.y);
|
2016-05-03 00:02:33 +00:00
|
|
|
dict.Set("linkURL", params.link_url);
|
|
|
|
dict.Set("linkText", params.link_text);
|
|
|
|
dict.Set("pageURL", params.page_url);
|
|
|
|
dict.Set("frameURL", params.frame_url);
|
|
|
|
dict.Set("srcURL", params.src_url);
|
|
|
|
dict.Set("mediaType", params.media_type);
|
|
|
|
dict.Set("mediaFlags", MediaFlagsToV8(isolate, params.media_flags));
|
2016-08-11 19:25:20 +00:00
|
|
|
bool has_image_contents =
|
2018-04-18 01:55:30 +00:00
|
|
|
(params.media_type == blink::WebContextMenuData::kMediaTypeImage) &&
|
|
|
|
params.has_image_contents;
|
2016-08-11 19:25:20 +00:00
|
|
|
dict.Set("hasImageContents", has_image_contents);
|
2016-05-03 00:02:33 +00:00
|
|
|
dict.Set("isEditable", params.is_editable);
|
|
|
|
dict.Set("editFlags", EditFlagsToV8(isolate, params.edit_flags));
|
|
|
|
dict.Set("selectionText", params.selection_text);
|
|
|
|
dict.Set("titleText", params.title_text);
|
|
|
|
dict.Set("misspelledWord", params.misspelled_word);
|
|
|
|
dict.Set("frameCharset", params.frame_charset);
|
|
|
|
dict.Set("inputFieldType", params.input_field_type);
|
2018-04-18 01:55:30 +00:00
|
|
|
dict.Set("menuSourceType", params.source_type);
|
2016-05-03 00:02:33 +00:00
|
|
|
|
2015-11-02 15:28:45 +00:00
|
|
|
if (params.custom_context.is_pepper_menu)
|
|
|
|
dict.Set("menu", MenuToV8(isolate, val.second, params.custom_context,
|
|
|
|
params.custom_items));
|
2015-10-28 12:13:06 +00:00
|
|
|
return mate::ConvertToV8(isolate, dict);
|
2015-10-28 12:21:56 +00:00
|
|
|
}
|
2015-10-28 12:13:06 +00:00
|
|
|
|
2016-01-30 11:19:18 +00:00
|
|
|
// static
|
2016-05-23 01:59:39 +00:00
|
|
|
bool Converter<blink::mojom::PermissionStatus>::FromV8(
|
2016-01-30 11:19:18 +00:00
|
|
|
v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::Value> val,
|
2016-05-23 01:59:39 +00:00
|
|
|
blink::mojom::PermissionStatus* out) {
|
2016-02-01 09:43:49 +00:00
|
|
|
bool result;
|
|
|
|
if (!ConvertFromV8(isolate, val, &result))
|
2016-01-30 11:19:18 +00:00
|
|
|
return false;
|
|
|
|
|
2016-02-01 09:43:49 +00:00
|
|
|
if (result)
|
2016-05-23 01:59:39 +00:00
|
|
|
*out = blink::mojom::PermissionStatus::GRANTED;
|
2016-01-30 11:19:18 +00:00
|
|
|
else
|
2016-05-23 01:59:39 +00:00
|
|
|
*out = blink::mojom::PermissionStatus::DENIED;
|
2016-01-30 11:19:18 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
v8::Local<v8::Value> Converter<content::PermissionType>::ToV8(
|
2018-04-18 01:55:30 +00:00
|
|
|
v8::Isolate* isolate,
|
|
|
|
const content::PermissionType& val) {
|
2016-02-01 09:43:49 +00:00
|
|
|
using PermissionType = atom::WebContentsPermissionHelper::PermissionType;
|
2016-01-30 11:19:18 +00:00
|
|
|
switch (val) {
|
|
|
|
case content::PermissionType::MIDI_SYSEX:
|
|
|
|
return StringToV8(isolate, "midiSysex");
|
|
|
|
case content::PermissionType::NOTIFICATIONS:
|
|
|
|
return StringToV8(isolate, "notifications");
|
|
|
|
case content::PermissionType::GEOLOCATION:
|
|
|
|
return StringToV8(isolate, "geolocation");
|
|
|
|
case content::PermissionType::AUDIO_CAPTURE:
|
|
|
|
case content::PermissionType::VIDEO_CAPTURE:
|
|
|
|
return StringToV8(isolate, "media");
|
|
|
|
case content::PermissionType::PROTECTED_MEDIA_IDENTIFIER:
|
|
|
|
return StringToV8(isolate, "mediaKeySystem");
|
|
|
|
case content::PermissionType::MIDI:
|
|
|
|
return StringToV8(isolate, "midi");
|
|
|
|
default:
|
2016-02-01 09:43:49 +00:00
|
|
|
break;
|
2016-01-30 11:19:18 +00:00
|
|
|
}
|
2016-02-01 09:43:49 +00:00
|
|
|
|
2017-03-30 21:05:47 +00:00
|
|
|
if (val == static_cast<content::PermissionType>(PermissionType::POINTER_LOCK))
|
2016-02-01 09:43:49 +00:00
|
|
|
return StringToV8(isolate, "pointerLock");
|
2017-03-31 18:09:13 +00:00
|
|
|
else if (val ==
|
|
|
|
static_cast<content::PermissionType>(PermissionType::FULLSCREEN))
|
2016-02-01 09:43:49 +00:00
|
|
|
return StringToV8(isolate, "fullscreen");
|
2017-03-31 18:09:13 +00:00
|
|
|
else if (val ==
|
|
|
|
static_cast<content::PermissionType>(PermissionType::OPEN_EXTERNAL))
|
2016-04-20 16:55:15 +00:00
|
|
|
return StringToV8(isolate, "openExternal");
|
2016-02-01 09:43:49 +00:00
|
|
|
|
|
|
|
return StringToV8(isolate, "unknown");
|
2016-01-30 11:19:18 +00:00
|
|
|
}
|
|
|
|
|
2015-12-17 17:27:56 +00:00
|
|
|
// static
|
2018-04-18 01:55:30 +00:00
|
|
|
bool Converter<content::StopFindAction>::FromV8(v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::Value> val,
|
|
|
|
content::StopFindAction* out) {
|
2015-12-17 17:27:56 +00:00
|
|
|
std::string action;
|
|
|
|
if (!ConvertFromV8(isolate, val, &action))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (action == "clearSelection")
|
|
|
|
*out = content::STOP_FIND_ACTION_CLEAR_SELECTION;
|
|
|
|
else if (action == "keepSelection")
|
|
|
|
*out = content::STOP_FIND_ACTION_KEEP_SELECTION;
|
2015-12-17 23:10:42 +00:00
|
|
|
else if (action == "activateSelection")
|
2015-12-17 17:27:56 +00:00
|
|
|
*out = content::STOP_FIND_ACTION_ACTIVATE_SELECTION;
|
2015-12-17 23:10:42 +00:00
|
|
|
else
|
|
|
|
return false;
|
2015-12-17 17:27:56 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-01-31 21:35:34 +00:00
|
|
|
// static
|
|
|
|
v8::Local<v8::Value> Converter<content::WebContents*>::ToV8(
|
2018-04-18 01:55:30 +00:00
|
|
|
v8::Isolate* isolate,
|
|
|
|
content::WebContents* val) {
|
2016-02-17 08:52:19 +00:00
|
|
|
if (!val)
|
|
|
|
return v8::Null(isolate);
|
2018-10-19 08:52:07 +00:00
|
|
|
return atom::api::WebContents::FromOrCreate(isolate, val).ToV8();
|
2016-01-31 21:35:34 +00:00
|
|
|
}
|
|
|
|
|
2016-04-26 07:10:27 +00:00
|
|
|
// static
|
2018-04-18 01:55:30 +00:00
|
|
|
bool Converter<content::WebContents*>::FromV8(v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::Value> val,
|
|
|
|
content::WebContents** out) {
|
2016-04-26 07:10:27 +00:00
|
|
|
atom::api::WebContents* web_contents = nullptr;
|
|
|
|
if (!ConvertFromV8(isolate, val, &web_contents) || !web_contents)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
*out = web_contents->web_contents();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-04-05 23:13:24 +00:00
|
|
|
// static
|
|
|
|
v8::Local<v8::Value> Converter<content::Referrer>::ToV8(
|
2018-04-18 01:55:30 +00:00
|
|
|
v8::Isolate* isolate,
|
|
|
|
const content::Referrer& val) {
|
2018-04-05 23:13:24 +00:00
|
|
|
mate::Dictionary dict = mate::Dictionary::CreateEmpty(isolate);
|
|
|
|
dict.Set("url", ConvertToV8(isolate, val.url));
|
|
|
|
dict.Set("policy", ConvertToV8(isolate, val.policy));
|
|
|
|
return mate::ConvertToV8(isolate, dict);
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
2018-04-18 01:55:30 +00:00
|
|
|
bool Converter<content::Referrer>::FromV8(v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::Value> val,
|
|
|
|
content::Referrer* out) {
|
2018-04-05 23:13:24 +00:00
|
|
|
mate::Dictionary dict;
|
|
|
|
if (!ConvertFromV8(isolate, val, &dict))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!dict.Get("url", &out->url))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (!dict.Get("policy", &out->policy))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-10-28 12:13:06 +00:00
|
|
|
} // namespace mate
|