forked from MicrosoftEdge/WebView2Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScenarioCustomSchemeNavigate.cpp
105 lines (96 loc) · 4.49 KB
/
ScenarioCustomSchemeNavigate.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
// 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 "ScenarioCustomSchemeNavigate.h"
#include "AppWindow.h"
#include "CheckFailure.h"
#include <Shlwapi.h>
using namespace Microsoft::WRL;
ScenarioCustomSchemeNavigate::ScenarioCustomSchemeNavigate(AppWindow* appWindow)
: m_appWindow(appWindow)
{
m_appWindow->GetWebView()->QueryInterface(IID_PPV_ARGS(&m_webView2_22));
CHECK_FEATURE_RETURN_EMPTY(m_webView2_22);
CHECK_FAILURE(m_webView2_22->AddWebResourceRequestedFilterWithRequestSourceKinds(
L"wv2rocks*", COREWEBVIEW2_WEB_RESOURCE_CONTEXT_ALL,
COREWEBVIEW2_WEB_RESOURCE_REQUEST_SOURCE_KINDS_DOCUMENT));
CHECK_FAILURE(m_appWindow->GetWebView()->add_WebResourceRequested(
Callback<ICoreWebView2WebResourceRequestedEventHandler>(
[this](ICoreWebView2* sender, ICoreWebView2WebResourceRequestedEventArgs* args)
{
wil::com_ptr<ICoreWebView2WebResourceRequest> request;
wil::com_ptr<ICoreWebView2WebResourceResponse> response;
CHECK_FAILURE(args->get_Request(&request));
wil::com_ptr<IStream> content;
request->get_Content(&content);
wil::unique_cotaskmem_string uri;
CHECK_FAILURE(request->get_Uri(&uri));
if (wcsncmp(
uri.get(), L"wv2rocks://domain/",
ARRAYSIZE(L"wv2rocks://domain/") - 1) == 0)
{
std::wstring assetsFilePath = L"assets/";
assetsFilePath +=
wcsstr(uri.get(), L"://domain/") + ARRAYSIZE(L"://domain/") - 1;
wil::com_ptr<IStream> stream;
SHCreateStreamOnFileEx(
assetsFilePath.c_str(), STGM_READ, FILE_ATTRIBUTE_NORMAL, FALSE,
nullptr, &stream);
if (stream)
{
std::wstring headers;
if (assetsFilePath.substr(assetsFilePath.find_last_of(L".") + 1) ==
L"html")
{
headers = L"Content-Type: text/html";
}
else if (
assetsFilePath.substr(assetsFilePath.find_last_of(L".") + 1) ==
L"jpg")
{
headers = L"Content-Type: image/jpeg";
}
else if (
assetsFilePath.substr(assetsFilePath.find_last_of(L".") + 1) ==
L"png")
{
headers = L"Content-Type: image/png";
}
else if (
assetsFilePath.substr(assetsFilePath.find_last_of(L".") + 1) ==
L"css")
{
headers = L"Content-Type: text/css";
}
else if (
assetsFilePath.substr(assetsFilePath.find_last_of(L".") + 1) ==
L"js")
{
headers = L"Content-Type: application/javascript";
}
CHECK_FAILURE(
m_appWindow->GetWebViewEnvironment()->CreateWebResourceResponse(
stream.get(), 200, L"OK", headers.c_str(), &response));
CHECK_FAILURE(args->put_Response(response.get()));
}
else
{
CHECK_FAILURE(
m_appWindow->GetWebViewEnvironment()->CreateWebResourceResponse(
nullptr, 404, L"Not Found", L"", &response));
CHECK_FAILURE(args->put_Response(response.get()));
}
return S_OK;
}
return S_OK;
})
.Get(),
&m_webResourceRequestedToken));
m_appWindow->GetWebView()->Navigate(L"wv2rocks://domain/ScenarioCustomScheme.html");
}
ScenarioCustomSchemeNavigate::~ScenarioCustomSchemeNavigate()
{
CHECK_FAILURE(
m_appWindow->GetWebView()->remove_WebResourceRequested(m_webResourceRequestedToken));
}