diff --git a/SampleApps/WebView2APISample/AppWindow.cpp b/SampleApps/WebView2APISample/AppWindow.cpp index 7fceeb78..dbb2701d 100644 --- a/SampleApps/WebView2APISample/AppWindow.cpp +++ b/SampleApps/WebView2APISample/AppWindow.cpp @@ -43,6 +43,7 @@ #include "ScenarioNonClientRegionSupport.h" #include "ScenarioNotificationReceived.h" #include "ScenarioPermissionManagement.h" +#include "ScenarioFileSystemHandleShare.h" #include "ScenarioSharedBuffer.h" #include "ScenarioSharedWorkerWRR.h" #include "ScenarioVirtualHostMappingForPopUpWindow.h" diff --git a/SampleApps/WebView2APISample/ProcessComponent.cpp b/SampleApps/WebView2APISample/ProcessComponent.cpp index 72dda647..a5b9f85b 100644 --- a/SampleApps/WebView2APISample/ProcessComponent.cpp +++ b/SampleApps/WebView2APISample/ProcessComponent.cpp @@ -107,7 +107,7 @@ ProcessComponent::ProcessComponent(AppWindow* appWindow) CHECK_FAILURE(args2->get_ExitCode(&exitCode)); auto argFailedModule = - args.try_query(); + args.try_query(); if (argFailedModule) { CHECK_FAILURE( diff --git a/SampleApps/WebView2APISample/ScenarioFileSystemHandleShare.cpp b/SampleApps/WebView2APISample/ScenarioFileSystemHandleShare.cpp new file mode 100644 index 00000000..4dc33c24 --- /dev/null +++ b/SampleApps/WebView2APISample/ScenarioFileSystemHandleShare.cpp @@ -0,0 +1,73 @@ +// Copyright (C) Microsoft Corporation. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. +#include "stdafx.h" + +#include "ScenarioFileSystemHandleShare.h" + +#include "AppWindow.h" +#include "CheckFailure.h" + +#include + +using namespace Microsoft::WRL; + +static constexpr WCHAR c_samplePath[] = L"ScenarioFileSystemHandleShare.html"; + +extern wil::unique_bstr GetDomainOfUri(PWSTR uri); + +ScenarioFileSystemHandleShare::ScenarioFileSystemHandleShare(AppWindow* appWindow) + : m_appWindow(appWindow) +{ + m_webView = m_appWindow->GetWebView(); + + CHECK_FAILURE(m_webView->Navigate(m_appWindow->GetLocalUri(c_samplePath).c_str())); + + CHECK_FAILURE(m_webView->add_NavigationCompleted( + Callback( + [this, appWindow]( + ICoreWebView2* sender, + ICoreWebView2NavigationCompletedEventArgs* args) -> HRESULT + { + wil::com_ptr webview24 = + m_webView.try_query(); + CHECK_FEATURE_RETURN_HRESULT(webview24); + wil::com_ptr environment = + appWindow->GetWebViewEnvironment(); + wil::com_ptr environment_staging14 = + environment.try_query(); + CHECK_FEATURE_RETURN_HRESULT(environment_staging14); + wil::com_ptr rootHandle; + CHECK_FAILURE(environment_staging14->CreateWebFileSystemDirectoryHandle( + L"C:\\", COREWEBVIEW2_FILE_SYSTEM_HANDLE_PERMISSION_READ_ONLY, + &rootHandle)); + wil::com_ptr webObjectCollection; + IUnknown* webObjects[] = {rootHandle.get()}; + CHECK_FAILURE(environment_staging14->CreateObjectCollection( + ARRAYSIZE(webObjects), webObjects, &webObjectCollection)); + wil::com_ptr webObjectCollectionView = + webObjectCollection.try_query(); + wil::unique_cotaskmem_string source; + CHECK_FAILURE(m_webView->get_Source(&source)); + + static const wchar_t* expectedDomain = L"appassets.example"; + wil::unique_bstr sourceDomain = GetDomainOfUri(source.get()); + + // Check the source to ensure the message is sent to the correct target content. + if (std::wstring(expectedDomain) == sourceDomain.get()) + { + CHECK_FAILURE(webview24->PostWebMessageAsJsonWithAdditionalObjects( + L"{ \"messageType\" : \"RootDirectoryHandle\" }", + webObjectCollectionView.get())); + } + + return S_OK; + }) + .Get(), + &m_navigationCompletedToken)); +} + +ScenarioFileSystemHandleShare::~ScenarioFileSystemHandleShare() +{ + CHECK_FAILURE(m_webView->remove_WebMessageReceived(m_navigationCompletedToken)); +} \ No newline at end of file diff --git a/SampleApps/WebView2APISample/ScenarioFileSystemHandleShare.h b/SampleApps/WebView2APISample/ScenarioFileSystemHandleShare.h new file mode 100644 index 00000000..7e986148 --- /dev/null +++ b/SampleApps/WebView2APISample/ScenarioFileSystemHandleShare.h @@ -0,0 +1,22 @@ +// Copyright (C) Microsoft Corporation. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#pragma once +#include "stdafx.h" + +#include "AppWindow.h" +#include "ComponentBase.h" + +class ScenarioFileSystemHandleShare : public ComponentBase +{ +public: + ScenarioFileSystemHandleShare(AppWindow* appWindow); + ~ScenarioFileSystemHandleShare() override; + +private: + EventRegistrationToken m_navigationCompletedToken = {}; + + AppWindow* m_appWindow = nullptr; + wil::com_ptr m_webView = nullptr; +}; \ No newline at end of file diff --git a/SampleApps/WebView2APISample/WebView2APISample.vcxproj b/SampleApps/WebView2APISample/WebView2APISample.vcxproj index 64df7948..1884a2c9 100644 --- a/SampleApps/WebView2APISample/WebView2APISample.vcxproj +++ b/SampleApps/WebView2APISample/WebView2APISample.vcxproj @@ -237,6 +237,7 @@ + @@ -287,6 +288,7 @@ + @@ -320,6 +322,7 @@ + @@ -354,6 +357,9 @@ $(OutDir)\assets + + $(OutDir)\assets + $(OutDir)\assets @@ -452,13 +458,13 @@ - + This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - + diff --git a/SampleApps/WebView2APISample/assets/ScenarioFileSystemHandleShare.html b/SampleApps/WebView2APISample/assets/ScenarioFileSystemHandleShare.html new file mode 100644 index 00000000..2e776bd6 --- /dev/null +++ b/SampleApps/WebView2APISample/assets/ScenarioFileSystemHandleShare.html @@ -0,0 +1,94 @@ + + + + + + + + +

File System Explorer

+ +
+
    +
    + + + + \ No newline at end of file diff --git a/SampleApps/WebView2APISample/packages.config b/SampleApps/WebView2APISample/packages.config index a1f4e011..afc7b144 100644 --- a/SampleApps/WebView2APISample/packages.config +++ b/SampleApps/WebView2APISample/packages.config @@ -1,5 +1,5 @@  - + \ No newline at end of file diff --git a/SampleApps/WebView2APISample/small.ico b/SampleApps/WebView2APISample/small.ico new file mode 100644 index 00000000..b3ec03bd Binary files /dev/null and b/SampleApps/WebView2APISample/small.ico differ diff --git a/SampleApps/WebView2WindowsFormsBrowser/WebView2WindowsFormsBrowser.csproj b/SampleApps/WebView2WindowsFormsBrowser/WebView2WindowsFormsBrowser.csproj index f9cb9e12..fc57ee20 100644 --- a/SampleApps/WebView2WindowsFormsBrowser/WebView2WindowsFormsBrowser.csproj +++ b/SampleApps/WebView2WindowsFormsBrowser/WebView2WindowsFormsBrowser.csproj @@ -25,7 +25,7 @@ AnyCPU - + diff --git a/SampleApps/WebView2WpfBrowser/MainWindow.xaml b/SampleApps/WebView2WpfBrowser/MainWindow.xaml index d81f5e5e..a4dcfde3 100644 --- a/SampleApps/WebView2WpfBrowser/MainWindow.xaml +++ b/SampleApps/WebView2WpfBrowser/MainWindow.xaml @@ -98,6 +98,7 @@ found in the LICENSE file. + @@ -225,6 +226,7 @@ found in the LICENSE file. + diff --git a/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs b/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs index 95129b52..5c302eb0 100644 --- a/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs +++ b/SampleApps/WebView2WpfBrowser/MainWindow.xaml.cs @@ -3317,7 +3317,24 @@ string GetJSONStringField(string jsonMessage, string fieldName) void FileExplorerExecuted(object target, ExecutedRoutedEventArgs e) { +#if USE_WEBVIEW2_EXPERIMENTAL + webView.CoreWebView2.NavigationCompleted += delegate ( + object webview2, CoreWebView2NavigationCompletedEventArgs args) + { + if (args.IsSuccess && webView.CoreWebView2.Source.Equals("https://appassets.example/ScenarioFileSystemHandleShare.html")) + { + webView.CoreWebView2.PostWebMessageAsJsonWithAdditionalObjects("{ \"messageType\" : \"RootDirectoryHandle\" }", new List() + { + webView.CoreWebView2.Environment.CreateWebFileSystemDirectoryHandle( + "C:\\", + CoreWebView2FileSystemHandlePermission.ReadOnly) + }); + } + }; + webView.Source = new Uri("https://appassets.example/ScenarioFileSystemHandleShare.html"); +#endif } + void ThrottlingControlExecuted(object target, ExecutedRoutedEventArgs e) { } diff --git a/SampleApps/WebView2WpfBrowser/WebView2WpfBrowser.csproj b/SampleApps/WebView2WpfBrowser/WebView2WpfBrowser.csproj index cdc97525..f0562a98 100644 --- a/SampleApps/WebView2WpfBrowser/WebView2WpfBrowser.csproj +++ b/SampleApps/WebView2WpfBrowser/WebView2WpfBrowser.csproj @@ -61,7 +61,7 @@ - +