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