-
Notifications
You must be signed in to change notification settings - Fork 356
/
Copy pathBrowserHelper.cs
217 lines (193 loc) · 8.65 KB
/
BrowserHelper.cs
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
using System;
using System.Collections.Concurrent;
using System.Diagnostics;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Net.Sockets;
using System.Runtime.InteropServices;
using System.Text.Json;
using System.Threading;
using System.Threading.Tasks;
namespace PnP.PowerShell.Commands.Utilities
{
internal static class BrowserHelper
{
#pragma warning disable CS0169,CA1823
// not required when compiling for .NET Framework
private static ConcurrentDictionary<string, (string requestDigest, DateTime expiresOn)> requestDigestInfos = new ConcurrentDictionary<string, (string requestDigest, DateTime expiresOn)>();
#pragma warning restore CS0169,CA1823
internal enum UrlMatchType
{
FullMatch,
EndsWith,
StartsWith,
Contains
}
// internal static bool GetWebBrowserPopup(string siteUrl, string title, (string url, UrlMatchType matchType)[] closeUrls = null, bool noThreadJoin = false, CancellationTokenSource cancellationTokenSource = null, bool cancelOnClose = true, bool scriptErrorsSuppressed = true)
// {
// bool success = false;
// #if Windows
// if (OperatingSystem.IsWindows())
// {
// var thread = new Thread(() =>
// {
// var form = new System.Windows.Forms.Form();
// var browser = new System.Windows.Forms.WebBrowser
// {
// ScriptErrorsSuppressed = scriptErrorsSuppressed,
// Dock = System.Windows.Forms.DockStyle.Fill
// };
// var assembly = typeof(BrowserHelper).Assembly;
// form.Icon = new System.Drawing.Icon(assembly.GetManifestResourceStream("PnP.PowerShell.Commands.Resources.parker.ico"));
// form.SuspendLayout();
// form.Width = 1024;
// form.Height = 768;
// form.MinimizeBox = false;
// form.MaximizeBox = false;
// form.Text = title;
// form.Controls.Add(browser);
// form.ResumeLayout(false);
// form.FormClosed += (a, b) =>
// {
// if (!success && cancelOnClose)
// {
// cancellationTokenSource?.Cancel(false);
// }
// };
// browser.Navigate(siteUrl);
// browser.Navigated += (sender, args) =>
// {
// var navigatedUrl = args.Url.ToString();
// var matched = false;
// if (null != closeUrls && closeUrls.Length > 0)
// {
// foreach (var closeUrl in closeUrls)
// {
// switch (closeUrl.matchType)
// {
// case UrlMatchType.FullMatch:
// matched = navigatedUrl.Equals(closeUrl.url, StringComparison.OrdinalIgnoreCase);
// break;
// case UrlMatchType.StartsWith:
// matched = navigatedUrl.StartsWith(closeUrl.url, StringComparison.OrdinalIgnoreCase);
// break;
// case UrlMatchType.EndsWith:
// matched = navigatedUrl.EndsWith(closeUrl.url, StringComparison.OrdinalIgnoreCase);
// break;
// case UrlMatchType.Contains:
// matched = navigatedUrl.Contains(closeUrl.url, StringComparison.OrdinalIgnoreCase);
// break;
// }
// if (matched)
// {
// break;
// }
// }
// }
// if (matched)
// {
// success = true;
// form.Close();
// }
// };
// form.Focus();
// form.ShowDialog();
// browser.Dispose();
// });
// thread.SetApartmentState(ApartmentState.STA);
// thread.Start();
// if (!noThreadJoin)
// {
// thread.Join();
// }
// }
// #endif
// return success;
// }
private static async Task<(string digestToken, DateTime expiresOn)> GetRequestDigestAsync(string siteUrl, CookieContainer cookieContainer)
{
using (var handler = new HttpClientHandler())
{
handler.CookieContainer = cookieContainer;
using (var httpClient = new HttpClient(handler))
{
string responseString = string.Empty;
string requestUrl = string.Format("{0}/_api/contextinfo", siteUrl.TrimEnd('/'));
HttpRequestMessage request = new HttpRequestMessage(HttpMethod.Post, requestUrl);
request.Version = new Version(2, 0);
request.Headers.Add("accept", "application/json;odata=nometadata");
HttpResponseMessage response = await httpClient.SendAsync(request);
if (response.IsSuccessStatusCode)
{
responseString = await response.Content.ReadAsStringAsync();
}
else
{
var errorSb = new System.Text.StringBuilder();
errorSb.AppendLine(await response.Content.ReadAsStringAsync());
if (response.Headers.Contains("SPRequestGuid"))
{
var values = response.Headers.GetValues("SPRequestGuid");
if (values != null)
{
var spRequestGuid = values.FirstOrDefault();
errorSb.AppendLine($"ServerErrorTraceCorrelationId: {spRequestGuid}");
}
}
throw new Exception(errorSb.ToString());
}
var contextInformation = JsonSerializer.Deserialize<JsonElement>(responseString);
string formDigestValue = contextInformation.GetProperty("FormDigestValue").GetString();
int expiresIn = contextInformation.GetProperty("FormDigestTimeoutSeconds").GetInt32();
return (formDigestValue, DateTime.Now.AddSeconds(expiresIn - 30));
}
}
}
internal static void OpenBrowserForInteractiveLogin(string url, int port, CancellationTokenSource cancellationTokenSource)
{
try
{
ProcessStartInfo psi = new ProcessStartInfo
{
FileName = url,
UseShellExecute = true
};
Process.Start(psi);
}
catch
{
// hack because of this: https://github.com/dotnet/corefx/issues/10361
if (OperatingSystem.IsWindows())
{
Process.Start(new ProcessStartInfo("cmd", $"/c start {url}") { CreateNoWindow = true });
}
else if (OperatingSystem.IsLinux())
{
Process.Start("xdg-open", url);
}
else if (OperatingSystem.IsMacOS())
{
Process.Start("open", url);
}
else
{
throw new PlatformNotSupportedException(RuntimeInformation.OSDescription);
}
}
}
internal static int FindFreeLocalhostRedirectUri()
{
TcpListener listener = new TcpListener(IPAddress.Loopback, 0);
try
{
listener.Start();
return ((IPEndPoint)listener.LocalEndpoint).Port;
}
finally
{
listener?.Stop();
}
}
}
}