//! Hoists a basic NSView. In our current particular use case, //! this is primarily used as the ContentView for a window. From there, //! we configure an NSToolbar and WKWebview on top of them. use std::sync::Once; use std::ffi::c_void; use block::Block; use objc::declare::ClassDecl; use objc::runtime::{Class, Object, Sel}; use objc::{class, msg_send, sel, sel_impl}; use crate::foundation::{id, nil, YES, NO, CGRect, NSString, NSArray, NSInteger}; use crate::webview::{WEBVIEW_DELEGATE_PTR, WebViewDelegate}; use crate::webview::actions::{NavigationAction, NavigationResponse, OpenPanelParameters}; use crate::webview::enums::{NavigationPolicy, NavigationResponsePolicy}; /// Called when an `alert()` from the underlying `WKWebView` is fired. Will call over to your /// `WebViewController`, where you should handle the event. extern fn alert(_: &Object, _: Sel, _: id, s: id, _: id, complete: id) { let alert = NSString::wrap(s).to_str(); println!("Alert: {}", alert); // @TODO: This is technically (I think?) a private method, and there's some other dance that // needs to be done here involving taking the pointer/invoke/casting... but this is fine for // now as it's being exposed purely for debugging. unsafe { let _: () = msg_send![complete, invoke]; } /*unsafe { let ptr: usize = *this.get_ivar(WEBVIEW_DELEGATE_PTR); let webview = ptr as *const T; (*webview).alert(alert); }*/ /*let queue = dispatch::Queue::main(); queue.exec_async(move || { let a = Alert::new("Subatomic", message); a.show(); });*/ } /// Fires when a message has been passed from the underlying `WKWebView`. extern fn on_message(this: &Object, _: Sel, _: id, script_message: id) { unsafe { let name = NSString::wrap(msg_send![script_message, name]).to_str(); let body = NSString::wrap(msg_send![script_message, body]).to_str(); let ptr: usize = *this.get_ivar(WEBVIEW_DELEGATE_PTR); let webview = ptr as *const T; (*webview).on_message(name, body); } } /// Fires when deciding a navigation policy - i.e, should something be allowed or not. extern fn decide_policy_for_action(this: &Object, _: Sel, _: id, action: id, handler: usize) { let webview = unsafe { let ptr: usize = *this.get_ivar(WEBVIEW_DELEGATE_PTR); let webview = ptr as *const T; &*webview }; let action = NavigationAction::new(action); webview.policy_for_navigation_action(action, |policy| { // This is very sketch and should be heavily checked. :| unsafe { let handler = handler as *const Block<(NSInteger,), c_void>; (*handler).call((policy.into(),)); } }); } /// Fires when deciding a navigation policy - i.e, should something be allowed or not. extern fn decide_policy_for_response(this: &Object, _: Sel, _: id, response: id, handler: usize) { let webview = unsafe { let ptr: usize = *this.get_ivar(WEBVIEW_DELEGATE_PTR); let webview = ptr as *const T; &*webview }; let response = NavigationResponse::new(response); webview.policy_for_navigation_response(response, |policy| unsafe { let handler = handler as *const Block<(NSInteger,), c_void>; (*handler).call((policy.into(),)); }); } /// Fires when deciding a navigation policy - i.e, should something be allowed or not. extern fn run_open_panel(this: &Object, _: Sel, _: id, params: id, _: id, handler: usize) { let webview = unsafe { let ptr: usize = *this.get_ivar(WEBVIEW_DELEGATE_PTR); let webview = ptr as *const T; &*webview }; webview.run_open_panel(params.into(), move |urls| unsafe { let handler = handler as *const Block<(id,), c_void>; match urls { Some(u) => { let nsurls: NSArray = u.iter().map(|s| { let s = NSString::new(s); msg_send![class!(NSURL), URLWithString:s] }).collect::>().into(); (*handler).call((nsurls.into_inner(),)); }, None => { (*handler).call((nil,)); } } }); } /// Called when a download has been initiated in the WebView, and when the navigation policy /// response is upgraded to BecomeDownload. Only called when explicitly linked since it's a private /// API. #[cfg(feature = "webview-downloading")] extern fn handle_download(this: &Object, _: Sel, download: id, suggested_filename: id, handler: usize) { let webview = unsafe { let ptr: usize = *this.get_ivar(WEBVIEW_DELEGATE_PTR); let webview = ptr as *const T; &*webview }; let handler = handler as *const Block<(objc::runtime::BOOL, id), c_void>; let filename = NSString::wrap(suggested_filename).to_str(); webview.run_save_panel(filename, move |can_overwrite, path| unsafe { if path.is_none() { let _: () = msg_send![download, cancel]; } let path = NSString::new(&path.unwrap()); (*handler).call((match can_overwrite { true => YES, false => NO }, path.into_inner())); }); } /// Registers an `NSViewController` that we effectively turn into a `WebViewController`. Acts as /// both a subclass of `NSViewController` and a delegate of the held `WKWebView` (for the various /// varieties of delegates needed there). pub fn register_webview_class() -> *const Class { static mut VIEW_CLASS: *const Class = 0 as *const Class; static INIT: Once = Once::new(); INIT.call_once(|| unsafe { let superclass = class!(WKWebView); let decl = ClassDecl::new("RSTWebView", superclass).unwrap(); VIEW_CLASS = decl.register(); }); unsafe { VIEW_CLASS } } /// Registers an `NSViewController` that we effectively turn into a `WebViewController`. Acts as /// both a subclass of `NSViewController` and a delegate of the held `WKWebView` (for the various /// varieties of delegates needed there). pub fn register_webview_delegate_class() -> *const Class { static mut VIEW_CLASS: *const Class = 0 as *const Class; static INIT: Once = Once::new(); INIT.call_once(|| unsafe { let superclass = class!(NSObject); let mut decl = ClassDecl::new("RSTWebViewDelegate", superclass).unwrap(); decl.add_ivar::(WEBVIEW_DELEGATE_PTR); // WKNavigationDelegate decl.add_method(sel!(webView:decidePolicyForNavigationAction:decisionHandler:), decide_policy_for_action:: as extern fn(&Object, _, _, id, usize)); decl.add_method(sel!(webView:decidePolicyForNavigationResponse:decisionHandler:), decide_policy_for_response:: as extern fn(&Object, _, _, id, usize)); // WKScriptMessageHandler decl.add_method(sel!(userContentController:didReceiveScriptMessage:), on_message:: as extern fn(&Object, _, _, id)); // WKUIDelegate decl.add_method(sel!(webView:runJavaScriptAlertPanelWithMessage:initiatedByFrame:completionHandler:), alert:: as extern fn(&Object, _, _, id, _, _)); decl.add_method(sel!(webView:runOpenPanelWithParameters:initiatedByFrame:completionHandler:), run_open_panel:: as extern fn(&Object, _, _, id, _, usize)); // WKDownloadDelegate is a private class on macOS that handles downloading (saving) files. // It's absurd that this is still private in 2020. This probably couldn't get into the app // store, so... screw it, feature-gate it. #[cfg(feature = "webview-downloading")] decl.add_method(sel!(_download:decideDestinationWithSuggestedFilename:completionHandler:), handle_download:: as extern fn(&Object, _, id, id, usize)); VIEW_CLASS = decl.register(); }); unsafe { VIEW_CLASS } }