2014-10-31 11:17:05 -07:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 17:49:37 +08:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-04-23 12:18:07 +08:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2019-01-22 07:31:37 +01:00
|
|
|
#include <string>
|
|
|
|
|
2014-03-16 08:30:26 +08:00
|
|
|
#include "atom/common/api/api_messages.h"
|
2014-04-17 13:45:14 +08:00
|
|
|
#include "atom/common/native_mate_converters/value_converter.h"
|
2018-06-13 04:38:31 -03:00
|
|
|
#include "atom/common/node_bindings.h"
|
2015-09-07 16:29:54 +08:00
|
|
|
#include "atom/common/node_includes.h"
|
2019-01-22 07:31:37 +01:00
|
|
|
#include "base/values.h"
|
2018-03-09 15:01:09 +05:30
|
|
|
#include "content/public/renderer/render_frame.h"
|
2019-01-22 07:31:37 +01:00
|
|
|
#include "native_mate/arguments.h"
|
2014-04-16 15:31:59 +08:00
|
|
|
#include "native_mate/dictionary.h"
|
2018-07-20 18:08:18 +02:00
|
|
|
#include "third_party/blink/public/web/web_local_frame.h"
|
2013-12-11 15:48:19 +08:00
|
|
|
|
2014-07-28 15:29:51 +08:00
|
|
|
using blink::WebLocalFrame;
|
2018-04-17 21:55:30 -04:00
|
|
|
using content::RenderFrame;
|
2013-04-23 12:18:07 +08:00
|
|
|
|
2019-01-22 07:31:37 +01:00
|
|
|
namespace {
|
2013-04-23 12:18:07 +08:00
|
|
|
|
2018-03-09 15:01:09 +05:30
|
|
|
RenderFrame* GetCurrentRenderFrame() {
|
2017-06-16 23:42:33 +03:00
|
|
|
WebLocalFrame* frame = WebLocalFrame::FrameForCurrentContext();
|
2013-04-23 12:18:07 +08:00
|
|
|
if (!frame)
|
2016-07-10 11:52:28 +02:00
|
|
|
return nullptr;
|
2013-04-23 12:18:07 +08:00
|
|
|
|
2018-03-09 15:01:09 +05:30
|
|
|
return RenderFrame::FromWebFrame(frame);
|
2013-04-23 12:18:07 +08:00
|
|
|
}
|
|
|
|
|
2015-09-07 16:12:31 +08:00
|
|
|
void Send(mate::Arguments* args,
|
2019-01-23 17:24:57 +01:00
|
|
|
bool internal,
|
2018-08-24 17:30:37 +02:00
|
|
|
const std::string& channel,
|
2015-06-10 14:21:09 +08:00
|
|
|
const base::ListValue& arguments) {
|
2018-03-09 15:01:09 +05:30
|
|
|
RenderFrame* render_frame = GetCurrentRenderFrame();
|
|
|
|
if (render_frame == nullptr)
|
2013-12-11 15:48:19 +08:00
|
|
|
return;
|
2013-04-23 12:18:07 +08:00
|
|
|
|
2018-03-09 15:01:09 +05:30
|
|
|
bool success = render_frame->Send(new AtomFrameHostMsg_Message(
|
2019-01-23 17:24:57 +01:00
|
|
|
render_frame->GetRoutingID(), internal, channel, arguments));
|
2013-04-23 12:18:07 +08:00
|
|
|
|
2013-04-23 21:52:19 +08:00
|
|
|
if (!success)
|
2018-03-09 15:01:09 +05:30
|
|
|
args->ThrowError("Unable to send AtomFrameHostMsg_Message");
|
2013-04-23 12:18:07 +08:00
|
|
|
}
|
|
|
|
|
2018-06-13 04:38:31 -03:00
|
|
|
base::ListValue SendSync(mate::Arguments* args,
|
2019-01-23 17:24:57 +01:00
|
|
|
bool internal,
|
2018-08-24 17:30:37 +02:00
|
|
|
const std::string& channel,
|
2018-06-13 04:38:31 -03:00
|
|
|
const base::ListValue& arguments) {
|
|
|
|
base::ListValue result;
|
2013-04-23 21:52:19 +08:00
|
|
|
|
2018-03-09 15:01:09 +05:30
|
|
|
RenderFrame* render_frame = GetCurrentRenderFrame();
|
|
|
|
if (render_frame == nullptr)
|
2018-06-13 04:38:31 -03:00
|
|
|
return result;
|
2013-04-23 21:52:19 +08:00
|
|
|
|
2018-03-09 15:01:09 +05:30
|
|
|
IPC::SyncMessage* message = new AtomFrameHostMsg_Message_Sync(
|
2019-01-23 17:24:57 +01:00
|
|
|
render_frame->GetRoutingID(), internal, channel, arguments, &result);
|
2018-03-09 15:01:09 +05:30
|
|
|
bool success = render_frame->Send(message);
|
2013-04-23 21:52:19 +08:00
|
|
|
|
|
|
|
if (!success)
|
2018-03-09 15:01:09 +05:30
|
|
|
args->ThrowError("Unable to send AtomFrameHostMsg_Message_Sync");
|
2013-04-23 21:52:19 +08:00
|
|
|
|
2018-06-13 04:38:31 -03:00
|
|
|
return result;
|
2013-04-23 21:52:19 +08:00
|
|
|
}
|
|
|
|
|
2018-08-24 23:14:39 +02:00
|
|
|
void SendTo(mate::Arguments* args,
|
2018-10-06 13:48:00 +02:00
|
|
|
bool internal,
|
2018-08-24 23:14:39 +02:00
|
|
|
bool send_to_all,
|
|
|
|
int32_t web_contents_id,
|
2018-08-25 00:30:10 +02:00
|
|
|
const std::string& channel,
|
2018-08-24 23:14:39 +02:00
|
|
|
const base::ListValue& arguments) {
|
|
|
|
RenderFrame* render_frame = GetCurrentRenderFrame();
|
|
|
|
if (render_frame == nullptr)
|
|
|
|
return;
|
|
|
|
|
2018-10-06 13:48:00 +02:00
|
|
|
bool success = render_frame->Send(new AtomFrameHostMsg_Message_To(
|
|
|
|
render_frame->GetRoutingID(), internal, send_to_all, web_contents_id,
|
|
|
|
channel, arguments));
|
2018-08-24 23:14:39 +02:00
|
|
|
|
|
|
|
if (!success)
|
|
|
|
args->ThrowError("Unable to send AtomFrameHostMsg_Message_To");
|
|
|
|
}
|
|
|
|
|
2019-01-23 17:24:57 +01:00
|
|
|
void SendToHost(mate::Arguments* args,
|
|
|
|
const std::string& channel,
|
|
|
|
const base::ListValue& arguments) {
|
|
|
|
RenderFrame* render_frame = GetCurrentRenderFrame();
|
|
|
|
if (render_frame == nullptr)
|
|
|
|
return;
|
|
|
|
|
|
|
|
bool success = render_frame->Send(new AtomFrameHostMsg_Message_Host(
|
|
|
|
render_frame->GetRoutingID(), channel, arguments));
|
|
|
|
|
|
|
|
if (!success)
|
|
|
|
args->ThrowError("Unable to send AtomFrameHostMsg_Message_Host");
|
|
|
|
}
|
|
|
|
|
2018-04-17 21:55:30 -04:00
|
|
|
void Initialize(v8::Local<v8::Object> exports,
|
|
|
|
v8::Local<v8::Value> unused,
|
|
|
|
v8::Local<v8::Context> context,
|
|
|
|
void* priv) {
|
2014-06-29 20:48:44 +08:00
|
|
|
mate::Dictionary dict(context->GetIsolate(), exports);
|
2019-01-22 07:31:37 +01:00
|
|
|
dict.SetMethod("send", &Send);
|
|
|
|
dict.SetMethod("sendSync", &SendSync);
|
|
|
|
dict.SetMethod("sendTo", &SendTo);
|
2019-01-23 17:24:57 +01:00
|
|
|
dict.SetMethod("sendToHost", &SendToHost);
|
2013-04-23 12:18:07 +08:00
|
|
|
}
|
|
|
|
|
2018-12-15 01:01:29 +09:00
|
|
|
} // namespace
|
2013-04-23 12:18:07 +08:00
|
|
|
|
2018-12-15 01:01:29 +09:00
|
|
|
NODE_BUILTIN_MODULE_CONTEXT_AWARE(atom_renderer_ipc, Initialize)
|