93 lines
		
	
	
	
		
			2.9 KiB
			
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			93 lines
		
	
	
	
		
			2.9 KiB
			
		
	
	
	
		
			C++
		
	
	
	
	
	
// 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/browser/api/atom_api_web_contents.h"
 | 
						|
#include "atom/browser/web_view_manager.h"
 | 
						|
#include "atom/common/native_mate_converters/gurl_converter.h"
 | 
						|
#include "content/public/browser/browser_context.h"
 | 
						|
#include "native_mate/dictionary.h"
 | 
						|
#include "net/base/filename_util.h"
 | 
						|
 | 
						|
#include "atom/common/node_includes.h"
 | 
						|
 | 
						|
namespace mate {
 | 
						|
 | 
						|
template<>
 | 
						|
struct Converter<content::WebContents*> {
 | 
						|
  static bool FromV8(v8::Isolate* isolate, v8::Local<v8::Value> val,
 | 
						|
                     content::WebContents** out) {
 | 
						|
    atom::api::WebContents* contents;
 | 
						|
    if (!Converter<atom::api::WebContents*>::FromV8(isolate, val, &contents))
 | 
						|
      return false;
 | 
						|
    *out = contents->web_contents();
 | 
						|
    return true;
 | 
						|
  }
 | 
						|
};
 | 
						|
 | 
						|
template<>
 | 
						|
struct Converter<atom::WebViewManager::WebViewInfo> {
 | 
						|
  static bool FromV8(v8::Isolate* isolate, v8::Local<v8::Value> val,
 | 
						|
                     atom::WebViewManager::WebViewInfo* out) {
 | 
						|
    Dictionary options;
 | 
						|
    if (!ConvertFromV8(isolate, val, &options))
 | 
						|
      return false;
 | 
						|
 | 
						|
    GURL preload_url;
 | 
						|
    if (!options.Get("preloadUrl", &preload_url))
 | 
						|
      return false;
 | 
						|
 | 
						|
    if (!preload_url.is_empty() &&
 | 
						|
        !net::FileURLToFilePath(preload_url, &(out->preload_script)))
 | 
						|
      return false;
 | 
						|
 | 
						|
    return options.Get("nodeIntegration", &(out->node_integration)) &&
 | 
						|
           options.Get("plugins", &(out->plugins)) &&
 | 
						|
           options.Get("disableWebSecurity", &(out->disable_web_security));
 | 
						|
  }
 | 
						|
};
 | 
						|
 | 
						|
}  // namespace mate
 | 
						|
 | 
						|
namespace {
 | 
						|
 | 
						|
atom::WebViewManager* GetWebViewManager(content::WebContents* web_contents) {
 | 
						|
  auto context = web_contents->GetBrowserContext();
 | 
						|
  if (context) {
 | 
						|
    auto manager = context->GetGuestManager();
 | 
						|
    return static_cast<atom::WebViewManager*>(manager);
 | 
						|
  } else {
 | 
						|
    return nullptr;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
void AddGuest(int guest_instance_id,
 | 
						|
              int element_instance_id,
 | 
						|
              content::WebContents* embedder,
 | 
						|
              content::WebContents* guest_web_contents,
 | 
						|
              atom::WebViewManager::WebViewInfo info) {
 | 
						|
  auto manager = GetWebViewManager(embedder);
 | 
						|
  if (manager) {
 | 
						|
    info.guest_instance_id = guest_instance_id;
 | 
						|
    info.embedder = embedder;
 | 
						|
    manager->AddGuest(guest_instance_id, element_instance_id, embedder,
 | 
						|
                      guest_web_contents, info);
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
void RemoveGuest(content::WebContents* embedder, int guest_instance_id) {
 | 
						|
  auto manager = GetWebViewManager(embedder);
 | 
						|
  if (manager)
 | 
						|
    manager->RemoveGuest(guest_instance_id);
 | 
						|
}
 | 
						|
 | 
						|
void Initialize(v8::Local<v8::Object> exports, v8::Local<v8::Value> unused,
 | 
						|
                v8::Local<v8::Context> context, void* priv) {
 | 
						|
  mate::Dictionary dict(context->GetIsolate(), exports);
 | 
						|
  dict.SetMethod("addGuest", &AddGuest);
 | 
						|
  dict.SetMethod("removeGuest", &RemoveGuest);
 | 
						|
}
 | 
						|
 | 
						|
}  // namespace
 | 
						|
 | 
						|
NODE_MODULE_CONTEXT_AWARE_BUILTIN(atom_browser_web_view_manager, Initialize)
 |