electron/atom/browser/api/atom_api_app.cc

264 lines
7.6 KiB
C++
Raw Normal View History

// 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-05-02 16:05:09 +00:00
// found in the LICENSE file.
2014-03-16 00:30:26 +00:00
#include "atom/browser/api/atom_api_app.h"
2013-05-02 16:05:09 +00:00
#include <string>
#include <vector>
2014-11-16 15:04:31 +00:00
#include "atom/browser/api/atom_api_menu.h"
2014-08-19 13:26:45 +00:00
#include "atom/browser/atom_browser_context.h"
#include "atom/browser/browser.h"
#include "atom/common/native_mate_converters/file_path_converter.h"
#include "atom/common/native_mate_converters/gurl_converter.h"
#include "base/values.h"
#include "base/command_line.h"
#include "base/environment.h"
#include "base/files/file_path.h"
#include "base/path_service.h"
2014-08-19 13:26:45 +00:00
#include "native_mate/callback.h"
2014-04-17 09:13:46 +00:00
#include "native_mate/dictionary.h"
#include "native_mate/object_template_builder.h"
2014-10-11 11:11:34 +00:00
#include "net/base/load_flags.h"
2014-08-19 13:26:45 +00:00
#include "net/proxy/proxy_service.h"
#include "net/url_request/url_request_context.h"
#include "net/url_request/url_request_context_getter.h"
#include "atom/common/node_includes.h"
2013-05-02 16:05:09 +00:00
#if defined(OS_LINUX)
#include "base/nix/xdg_util.h"
#endif
2014-04-17 09:13:46 +00:00
using atom::Browser;
2014-11-17 09:19:41 +00:00
namespace mate {
2014-11-17 09:35:51 +00:00
#if defined(OS_WIN)
2014-11-17 09:19:41 +00:00
template<>
struct Converter<Browser::UserTask> {
static bool FromV8(v8::Isolate* isolate, v8::Handle<v8::Value> val,
Browser::UserTask* out) {
mate::Dictionary dict;
if (!ConvertFromV8(isolate, val, &dict))
return false;
if (!dict.Get("program", &(out->program)) ||
!dict.Get("title", &(out->title)))
return false;
2014-11-17 09:35:51 +00:00
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));
return true;
2014-11-17 09:19:41 +00:00
}
};
2014-11-17 09:35:51 +00:00
#endif
2014-11-17 09:19:41 +00:00
} // namespace mate
2013-05-02 16:05:09 +00:00
namespace atom {
namespace api {
2014-08-19 13:26:45 +00:00
namespace {
class ResolveProxyHelper {
public:
ResolveProxyHelper(const GURL& url, App::ResolveProxyCallback callback)
: callback_(callback) {
net::ProxyService* proxy_service = AtomBrowserContext::Get()->
url_request_context_getter()->GetURLRequestContext()->proxy_service();
// Start the request.
int result = proxy_service->ResolveProxy(
2014-10-11 11:11:34 +00:00
url, net::LOAD_NORMAL, &proxy_info_,
2014-08-19 13:26:45 +00:00
base::Bind(&ResolveProxyHelper::OnResolveProxyCompleted,
base::Unretained(this)),
2014-10-11 11:11:34 +00:00
&pac_req_, nullptr, net::BoundNetLog());
2014-08-19 13:26:45 +00:00
// Completed synchronously.
if (result != net::ERR_IO_PENDING)
OnResolveProxyCompleted(result);
}
void OnResolveProxyCompleted(int result) {
std::string proxy;
if (result == net::OK)
proxy = proxy_info_.ToPacString();
callback_.Run(proxy);
delete this;
}
private:
App::ResolveProxyCallback callback_;
net::ProxyInfo proxy_info_;
net::ProxyService::PacRequest* pac_req_;
DISALLOW_COPY_AND_ASSIGN(ResolveProxyHelper);
};
} // namespace
2014-04-17 09:13:46 +00:00
App::App() {
Browser::Get()->AddObserver(this);
}
App::~App() {
Browser::Get()->RemoveObserver(this);
}
void App::OnWillQuit(bool* prevent_default) {
*prevent_default = Emit("will-quit");
}
void App::OnWindowAllClosed() {
Emit("window-all-closed");
}
2014-09-25 13:47:54 +00:00
void App::OnQuit() {
Emit("quit");
}
void App::OnOpenFile(bool* prevent_default, const std::string& file_path) {
base::ListValue args;
args.AppendString(file_path);
2014-04-17 09:13:46 +00:00
*prevent_default = Emit("open-file", args);
}
void App::OnOpenURL(const std::string& url) {
base::ListValue args;
args.AppendString(url);
2014-04-17 09:13:46 +00:00
Emit("open-url", args);
}
void App::OnActivateWithNoOpenWindows() {
Emit("activate-with-no-open-windows");
}
void App::OnWillFinishLaunching() {
Emit("will-finish-launching");
}
void App::OnFinishLaunching() {
Emit("ready");
}
2014-08-15 14:52:16 +00:00
base::FilePath App::GetDataPath() {
base::FilePath path;
#if defined(OS_LINUX)
scoped_ptr<base::Environment> env(base::Environment::Create());
path = base::nix::GetXDGDirectory(env.get(),
base::nix::kXdgConfigHomeEnvVar,
base::nix::kDotConfigDir);
#else
2014-08-19 13:26:45 +00:00
PathService::Get(base::DIR_APP_DATA, &path);
#endif
2014-08-17 03:33:55 +00:00
return path.Append(base::FilePath::FromUTF8Unsafe(
Browser::Get()->GetName()));
}
2014-08-19 13:26:45 +00:00
void App::ResolveProxy(const GURL& url, ResolveProxyCallback callback) {
new ResolveProxyHelper(url, callback);
}
2014-09-18 11:12:24 +00:00
void App::SetDesktopName(const std::string& desktop_name) {
#if defined(OS_LINUX)
scoped_ptr<base::Environment> env(base::Environment::Create());
env->SetVar("CHROME_DESKTOP", desktop_name);
#endif
}
2014-04-17 09:13:46 +00:00
mate::ObjectTemplateBuilder App::GetObjectTemplateBuilder(
v8::Isolate* isolate) {
auto browser = base::Unretained(Browser::Get());
2014-04-17 09:13:46 +00:00
return mate::ObjectTemplateBuilder(isolate)
.SetMethod("quit", base::Bind(&Browser::Quit, browser))
.SetMethod("focus", base::Bind(&Browser::Focus, browser))
.SetMethod("getVersion", base::Bind(&Browser::GetVersion, browser))
.SetMethod("setVersion", base::Bind(&Browser::SetVersion, browser))
.SetMethod("getName", base::Bind(&Browser::GetName, browser))
.SetMethod("setName", base::Bind(&Browser::SetName, browser))
.SetMethod("isReady", base::Bind(&Browser::is_ready, browser))
2014-11-17 05:05:06 +00:00
.SetMethod("addRecentDocument",
base::Bind(&Browser::AddRecentDocument, browser))
2014-11-17 08:13:47 +00:00
.SetMethod("clearRecentDocuments",
base::Bind(&Browser::ClearRecentDocuments, browser))
2014-11-17 09:19:41 +00:00
#if defined(OS_WIN)
2014-11-17 11:32:11 +00:00
.SetMethod("setUserTasks",
base::Bind(&Browser::SetUserTasks, browser))
2014-11-17 09:19:41 +00:00
#endif
2014-08-19 13:26:45 +00:00
.SetMethod("getDataPath", &App::GetDataPath)
2014-09-18 11:12:24 +00:00
.SetMethod("resolveProxy", &App::ResolveProxy)
.SetMethod("setDesktopName", &App::SetDesktopName);
2013-05-30 11:24:47 +00:00
}
2013-06-19 05:43:48 +00:00
// static
2014-04-17 09:13:46 +00:00
mate::Handle<App> App::Create(v8::Isolate* isolate) {
return CreateHandle(isolate, new App);
2013-12-05 02:26:01 +00:00
}
2014-04-17 09:13:46 +00:00
} // namespace api
2014-04-17 09:13:46 +00:00
} // namespace atom
2014-04-17 09:13:46 +00:00
namespace {
2014-04-17 09:13:46 +00:00
void AppendSwitch(const std::string& switch_string, mate::Arguments* args) {
std::string value;
2014-04-17 09:13:46 +00:00
if (args->GetNext(&value))
CommandLine::ForCurrentProcess()->AppendSwitchASCII(switch_string, value);
else
CommandLine::ForCurrentProcess()->AppendSwitch(switch_string);
}
2013-08-06 08:19:56 +00:00
#if defined(OS_MACOSX)
2014-04-17 09:13:46 +00:00
int DockBounce(const std::string& type) {
2013-08-06 08:19:56 +00:00
int request_id = -1;
if (type == "critical")
request_id = Browser::Get()->DockBounce(Browser::BOUNCE_CRITICAL);
else if (type == "informational")
request_id = Browser::Get()->DockBounce(Browser::BOUNCE_INFORMATIONAL);
2014-04-17 09:13:46 +00:00
return request_id;
2013-08-06 08:19:56 +00:00
}
2014-11-16 15:04:31 +00:00
void DockSetMenu(atom::api::Menu* menu) {
Browser::Get()->DockSetMenu(menu->model());
}
2014-04-17 09:13:46 +00:00
#endif
2013-08-06 08:19:56 +00:00
void Initialize(v8::Handle<v8::Object> exports, v8::Handle<v8::Value> unused,
v8::Handle<v8::Context> context, void* priv) {
v8::Isolate* isolate = context->GetIsolate();
2014-04-17 09:13:46 +00:00
CommandLine* command_line = CommandLine::ForCurrentProcess();
2013-08-06 08:19:56 +00:00
2014-04-17 09:13:46 +00:00
mate::Dictionary dict(isolate, exports);
dict.Set("app", atom::api::App::Create(isolate));
dict.SetMethod("appendSwitch", &AppendSwitch);
dict.SetMethod("appendArgument",
base::Bind(&CommandLine::AppendArg,
base::Unretained(command_line)));
2013-08-06 08:19:56 +00:00
#if defined(OS_MACOSX)
2014-11-16 15:04:31 +00:00
auto browser = base::Unretained(Browser::Get());
2014-04-17 09:13:46 +00:00
dict.SetMethod("dockBounce", &DockBounce);
dict.SetMethod("dockCancelBounce",
2014-11-16 15:04:31 +00:00
base::Bind(&Browser::DockCancelBounce, browser));
2014-04-17 09:13:46 +00:00
dict.SetMethod("dockSetBadgeText",
2014-11-16 15:04:31 +00:00
base::Bind(&Browser::DockSetBadgeText, browser));
2014-04-17 09:13:46 +00:00
dict.SetMethod("dockGetBadgeText",
2014-11-16 15:04:31 +00:00
base::Bind(&Browser::DockGetBadgeText, browser));
dict.SetMethod("dockHide", base::Bind(&Browser::DockHide, browser));
dict.SetMethod("dockShow", base::Bind(&Browser::DockShow, browser));
dict.SetMethod("dockSetMenu", &DockSetMenu);
2014-04-17 09:13:46 +00:00
#endif
}
} // namespace
NODE_MODULE_CONTEXT_AWARE_BUILTIN(atom_browser_app, Initialize)