forked from pnp/powershell
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBrowserHelper.cs
More file actions
294 lines (263 loc) · 12.9 KB
/
BrowserHelper.cs
File metadata and controls
294 lines (263 loc) · 12.9 KB
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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
using Microsoft.Identity.Client;
using System;
using System.Collections.Concurrent;
using System.Diagnostics;
using System.IO;
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));
}
}
}
// Using code from MSAL
// https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/blob/main/src/client/Microsoft.Identity.Client/Platforms/netstandard/NetCorePlatformProxy.cs
internal static void OpenBrowserForInteractiveLogin(string url, int port, CancellationTokenSource cancellationTokenSource)
{
// Fixes encoding of scopes and redirect_uri issue on MacOS. It has no negative effects on Windows.
url = WebUtility.UrlDecode(url);
if (OperatingSystem.IsWindows())
{
try
{
var psi = new ProcessStartInfo
{
FileName = url,
UseShellExecute = true
};
Process.Start(psi);
}
catch
{
// hack because of this: https://github.com/dotnet/corefx/issues/10361
url = url.Replace("&", "^&");
Process.Start(new ProcessStartInfo("cmd", $"/c start {url}") { CreateNoWindow = true });
}
}
else if (OperatingSystem.IsLinux())
{
string sudoUser = Environment.GetEnvironmentVariable("SUDO_USER");
if (!string.IsNullOrWhiteSpace(sudoUser))
{
throw new MsalClientException(MsalError.LinuxXdgOpen, "Unable to open a web page using xdg-open, gnome-open, kfmclient or wslview tools in sudo mode. Please run the process as non-sudo user.");
}
try
{
bool opened = false;
foreach (string openTool in GetOpenToolsLinux())
{
if (TryGetExecutablePath(openTool, out string openToolPath))
{
OpenLinuxBrowser(openToolPath, url);
opened = true;
break;
}
}
if (!opened)
{
throw new MsalClientException(MsalError.LinuxXdgOpen, "Unable to open a web page using xdg-open, gnome-open, kfmclient or wslview tools. See inner exception for details. Possible causes for this error are: tools are not installed or they cannot open a URL. Make sure you can open a web page by invoking from a terminal: xdg-open https://aka.ms/pnp/powershell");
}
}
catch (Exception ex)
{
throw new MsalClientException(MsalError.LinuxXdgOpen, "Unable to open a web page using xdg-open, gnome-open, kfmclient or wslview tools. See inner exception for details. Possible causes for this error are: tools are not installed or they cannot open a URL. Make sure you can open a web page by invoking from a terminal: xdg-open https://aka.ms/pnp/powershell", ex);
}
}
else if (OperatingSystem.IsMacOS())
{
Process.Start("/usr/bin/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();
}
}
internal static void OpenLinuxBrowser(string openToolPath, string url)
{
ProcessStartInfo psi = new ProcessStartInfo(openToolPath, url)
{
RedirectStandardOutput = true,
RedirectStandardError = true,
UseShellExecute = false
};
Process.Start(psi);
}
internal static string[] GetOpenToolsLinux()
{
return ["xdg-open", "gnome-open", "kfmclient", "microsoft-edge", "wslview"];
}
/// <summary>
/// Searches through PATH variable to find the path to the specified executable.
/// </summary>
/// <param name="executable">Executable to find the path for.</param>
/// <param name="path">Location of the specified executable.</param>
/// <returns></returns>
internal static bool TryGetExecutablePath(string executable, out string path)
{
string pathEnvVar = Environment.GetEnvironmentVariable("PATH");
if (pathEnvVar != null)
{
var paths = pathEnvVar.Split(':');
foreach (var basePath in paths)
{
path = Path.Combine(basePath, executable);
if (File.Exists(path))
{
return true;
}
}
}
path = null;
return false;
}
}
}