forked from Esri/arcgis-maps-sdk-dotnet-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSearchPortalMaps.xaml.cs
458 lines (377 loc) · 19 KB
/
SearchPortalMaps.xaml.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
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
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
// Copyright 2017 Esri.
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
// You may obtain a copy of the License at: http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
// language governing permissions and limitations under the License.
using Esri.ArcGISRuntime.Mapping;
using Esri.ArcGISRuntime.Portal;
using Esri.ArcGISRuntime.Security;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Navigation;
using System.Windows.Threading;
using Esri.ArcGISRuntime;
namespace ArcGISRuntime.WPF.Samples.SearchPortalMaps
{
[ArcGISRuntime.Samples.Shared.Attributes.Sample(
"Search a portal for maps",
"Map",
"This sample demonstrates searching a portal for web maps and loading them in the map view. You can search ArcGIS Online public web maps using tag values or browse the web maps in your account. OAuth is used to authenticate with ArcGIS Online to access items in your account.",
"1. When the sample starts, you will be presented with a dialog for entering OAuth settings. If you need to create your own settings, sign in with your developer account and use the [ArcGIS for Developers dashboard](https://developers.arcgis.com/dashboard) to create an Application to store these settings.\n2. Enter values for the following OAuth settings.\n\t1. **Client ID**: a unique alphanumeric string identifier for your application\n\t2. **Redirect URL**: a URL to which a successful OAuth login response will be sent\n3. If you do not enter OAuth settings, you will be able to search public web maps on ArcGIS Online. Browsing the web map items in your ArcGIS Online account will be disabled, however.")]
public partial class SearchPortalMaps
{
// Variables for OAuth with default values ...
// URL of the server to authenticate with (ArcGIS Online)
private const string ArcGISOnlineUrl = "https://www.arcgis.com/sharing/rest";
// Client ID for the app registered with the server (Portal Maps)
private string _appClientId = "2Gh53JRzkPtOENQq";
// Redirect URL after a successful authorization (configured for the Portal Maps application)
private string _oAuthRedirectUrl = "https://developers.arcgis.com";
// Constructor for sample class
public SearchPortalMaps()
{
InitializeComponent();
// Show the OAuth settings in the page
ClientIdTextBox.Text = _appClientId;
RedirectUrlTextBox.Text = _oAuthRedirectUrl;
// Display a default map
DisplayDefaultMap();
}
private void DisplayDefaultMap()
{
// Create a new Map instance
Map myMap = new Map(Basemap.CreateLightGrayCanvas());
// Provide Map to the MapView
MyMapView.Map = myMap;
}
private async void SearchButton_Click(object sender, RoutedEventArgs e)
{
try
{
// Get web map portal items in the current user's folder or from a keyword search
IEnumerable<PortalItem> mapItems;
ArcGISPortal portal;
// See if the user wants to search public web map items
if (SearchPublicMaps.IsChecked == true)
{
// Connect to the portal (anonymously)
portal = await ArcGISPortal.CreateAsync();
// Create a query expression that will get public items of type 'web map' with the keyword(s) in the items tags
string queryExpression = string.Format("tags:\"{0}\" access:public type: (\"web map\" NOT \"web mapping application\")", SearchText.Text);
// Create a query parameters object with the expression and a limit of 10 results
PortalQueryParameters queryParams = new PortalQueryParameters(queryExpression, 10);
// Search the portal using the query parameters and await the results
PortalQueryResultSet<PortalItem> findResult = await portal.FindItemsAsync(queryParams);
// Get the items from the query results
mapItems = findResult.Results;
}
else
{
// Call a sub that will force the user to log in to ArcGIS Online (if they haven't already)
bool loggedIn = await EnsureLoggedInAsync();
if (!loggedIn) { return; }
// Connect to the portal (will connect using the provided credentials)
portal = await ArcGISPortal.CreateAsync(new Uri(ArcGISOnlineUrl));
// Get the user's content (items in the root folder and a collection of sub-folders)
PortalUserContent myContent = await portal.User.GetContentAsync();
// Get the web map items in the root folder
mapItems = from item in myContent.Items where item.Type == PortalItemType.WebMap select item;
// Loop through all sub-folders and get web map items, add them to the mapItems collection
foreach (PortalFolder folder in myContent.Folders)
{
IEnumerable<PortalItem> folderItems = await portal.User.GetContentAsync(folder.FolderId);
mapItems = mapItems.Concat(from item in folderItems where item.Type == PortalItemType.WebMap select item);
}
}
// Show the web map portal items in the list box
MapListBox.ItemsSource = mapItems;
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString(), "Error");
}
}
private void LoadMapButtonClick(object sender, RoutedEventArgs e)
{
// Get the selected web map item in the list box
PortalItem selectedMap = MapListBox.SelectedItem as PortalItem;
if (selectedMap == null) { return; }
// Create a new map, pass the web map portal item to the constructor
Map webMap = new Map(selectedMap);
// Handle change in the load status (to report load errors)
webMap.LoadStatusChanged += WebMapLoadStatusChanged;
// Show the web map in the map view
MyMapView.Map = webMap;
}
private void WebMapLoadStatusChanged(object sender, Esri.ArcGISRuntime.LoadStatusEventArgs e)
{
// Report errors if map failed to load
if(e.Status == LoadStatus.FailedToLoad)
{
Map map = (Map)sender;
Exception err = map.LoadError;
if(err != null)
{
MessageBox.Show(err.Message, "Map Load Error");
}
}
}
private void RadioButtonUnchecked(object sender, RoutedEventArgs e)
{
// When the search/user radio buttons are unchecked, clear the list box
MapListBox.ItemsSource = null;
// Set the map to the default (if necessary)
if (MyMapView.Map.Item != null)
{
DisplayDefaultMap();
}
}
private async Task<bool> EnsureLoggedInAsync()
{
bool loggedIn = false;
try
{
// Create a challenge request for portal credentials (OAuth credential request for arcgis.com)
CredentialRequestInfo challengeRequest = new CredentialRequestInfo
{
// Use the OAuth implicit grant flow
GenerateTokenOptions = new GenerateTokenOptions
{
TokenAuthenticationType = TokenAuthenticationType.OAuthImplicit
},
// Indicate the url (portal) to authenticate with (ArcGIS Online)
ServiceUri = new Uri(ArcGISOnlineUrl)
};
// Call GetCredentialAsync on the AuthenticationManager to invoke the challenge handler
Credential cred = await AuthenticationManager.Current.GetCredentialAsync(challengeRequest, false);
loggedIn = cred != null;
}
catch (OperationCanceledException)
{
// OAuth login was canceled
// .. ignore this, the user can still search public maps
}
catch (Exception ex)
{
// Login failure
MessageBox.Show("Login failed: " + ex.Message);
}
return loggedIn;
}
private void UpdateAuthenticationManager()
{
// Define the server information for ArcGIS Online
ServerInfo portalServerInfo = new ServerInfo
{
// ArcGIS Online URI
ServerUri = new Uri(ArcGISOnlineUrl),
// Type of token authentication to use
TokenAuthenticationType = TokenAuthenticationType.OAuthImplicit
};
// Define the OAuth information
OAuthClientInfo oAuthInfo = new OAuthClientInfo
{
ClientId = _appClientId,
RedirectUri = new Uri(_oAuthRedirectUrl)
};
portalServerInfo.OAuthClientInfo = oAuthInfo;
// Get a reference to the (singleton) AuthenticationManager for the app
AuthenticationManager thisAuthenticationManager = AuthenticationManager.Current;
// Register the ArcGIS Online server information with the AuthenticationManager
thisAuthenticationManager.RegisterServer(portalServerInfo);
// Use the OAuthAuthorize class in this project to create a new web view to show the login UI
thisAuthenticationManager.OAuthAuthorizeHandler = new OAuthAuthorize();
// Create a new ChallengeHandler that uses a method in this class to challenge for credentials
thisAuthenticationManager.ChallengeHandler = new ChallengeHandler(CreateCredentialAsync);
}
// ChallengeHandler function that will be called whenever access to a secured resource is attempted
public async Task<Credential> CreateCredentialAsync(CredentialRequestInfo info)
{
Credential credential = null;
try
{
// IOAuthAuthorizeHandler will challenge the user for OAuth credentials
credential = await AuthenticationManager.Current.GenerateCredentialAsync(info.ServiceUri);
}
catch (Exception)
{
// Exception will be reported in calling function
throw;
}
return credential;
}
private void SaveOAuthSettingsClicked(object sender, RoutedEventArgs e)
{
// Settings were provided, update the configuration settings for OAuth authorization
_appClientId = ClientIdTextBox.Text.Trim();
_oAuthRedirectUrl = RedirectUrlTextBox.Text.Trim();
// Update authentication manager with the OAuth settings
UpdateAuthenticationManager();
// Hide the OAuth input, show the search UI
OAuthSettingsGrid.Visibility = Visibility.Collapsed;
SearchUI.Visibility = Visibility.Visible;
}
private void CancelOAuthSettingsClicked(object sender, RoutedEventArgs e)
{
// Warn that browsing user's ArcGIS Online maps won't be available without OAuth settings
string warning = "Without OAuth settings, you will not be able to browse maps from your ArcGIS Online account.";
bool noAuth = MessageBox.Show(warning, "No OAuth Settings", MessageBoxButton.OKCancel) == MessageBoxResult.OK;
if (noAuth)
{
// Disable browsing maps from your ArcGIS Online account
BrowseMyMaps.IsEnabled = false;
// Hide the OAuth input, show the search UI
OAuthSettingsGrid.Visibility = Visibility.Collapsed;
SearchUI.Visibility = Visibility.Visible;
}
}
}
#region OAuth handler
public class OAuthAuthorize : IOAuthAuthorizeHandler
{
// Window to contain the OAuth UI
private Window _window;
// Use a TaskCompletionSource to track the completion of the authorization
private TaskCompletionSource<IDictionary<string, string>> _tcs;
// URL for the authorization callback result (the redirect URI configured for your application)
private string _callbackUrl;
// URL that handles the OAuth request
private string _authorizeUrl;
// Function to handle authorization requests, takes the URIs for the secured service, the authorization endpoint, and the redirect URI
public Task<IDictionary<string, string>> AuthorizeAsync(Uri serviceUri, Uri authorizeUri, Uri callbackUri)
{
if (_tcs != null && !_tcs.Task.IsCompleted)
throw new Exception("Task in progress");
_tcs = new TaskCompletionSource<IDictionary<string, string>>();
// Store the authorization and redirect URLs
_authorizeUrl = authorizeUri.AbsoluteUri;
_callbackUrl = callbackUri.AbsoluteUri;
// Call a function to show the login controls, make sure it runs on the UI thread for this app
Dispatcher dispatcher = Application.Current.Dispatcher;
if (dispatcher == null || dispatcher.CheckAccess())
{
AuthorizeOnUIThread(_authorizeUrl);
}
else
{
Action authorizeOnUIAction = () => AuthorizeOnUIThread(_authorizeUrl);
dispatcher.BeginInvoke(authorizeOnUIAction);
}
// Return the task associated with the TaskCompletionSource
return _tcs.Task;
}
// Challenge for OAuth credentials on the UI thread
private void AuthorizeOnUIThread(string authorizeUri)
{
// Create a WebBrowser control to display the authorize page
WebBrowser webBrowser = new WebBrowser();
// Handle the navigation event for the browser to check for a response to the redirect URL
webBrowser.Navigating += WebBrowserOnNavigating;
// Display the web browser in a new window
_window = new Window
{
Content = webBrowser,
Height = 330,
Width = 295,
WindowStartupLocation = WindowStartupLocation.CenterOwner
};
// Set the app's window as the owner of the browser window (if main window closes, so will the browser)
if (Application.Current != null && Application.Current.MainWindow != null)
{
_window.Owner = Application.Current.MainWindow;
}
// Handle the window closed event then navigate to the authorize url
_window.Closed += OnWindowClosed;
webBrowser.Navigate(authorizeUri);
// Display the Window
_window.ShowDialog();
}
// Handle the browser window closing
private void OnWindowClosed(object sender, EventArgs e)
{
// If the browser window closes, return the focus to the main window
if (_window != null && _window.Owner != null)
{
_window.Owner.Focus();
}
// If the task wasn't completed, the user must have closed the window without logging in
if (!_tcs.Task.IsCompleted)
{
// Set the task completion source exception to indicate a canceled operation
_tcs.SetCanceled();
}
_window = null;
}
// Handle browser navigation (content changing)
private void WebBrowserOnNavigating(object sender, NavigatingCancelEventArgs e)
{
// Check for a response to the callback url
const string portalApprovalMarker = "/oauth2/approval";
WebBrowser webBrowser = sender as WebBrowser;
Uri uri = e.Uri;
// If no browser, uri, or an empty url, return
if (webBrowser == null || uri == null || String.IsNullOrEmpty(uri.AbsoluteUri))
return;
// Check for redirect
bool isRedirected = uri.AbsoluteUri.StartsWith(_callbackUrl) ||
_callbackUrl.Contains(portalApprovalMarker) && uri.AbsoluteUri.Contains(portalApprovalMarker);
if (isRedirected)
{
// Browser was redirected to the callbackUrl (success!)
// -close the window
// -decode the parameters (returned as fragments or query)
// -return these parameters as result of the Task
e.Cancel = true;
// Call a helper function to decode the response parameters
IDictionary<string,string> authResponse = DecodeParameters(uri);
// Set the result for the task completion source
_tcs.SetResult(authResponse);
if (_window != null)
{
_window.Close();
}
}
}
private static IDictionary<string, string> DecodeParameters(Uri uri)
{
// Create a dictionary of key value pairs returned in an OAuth authorization response URI query string
string answer = "";
// Get the values from the URI fragment or query string
if (!String.IsNullOrEmpty(uri.Fragment))
{
answer = uri.Fragment.Substring(1);
}
else
{
if (!String.IsNullOrEmpty(uri.Query))
{
answer = uri.Query.Substring(1);
}
}
// Parse parameters into key / value pairs
Dictionary<string,string> keyValueDictionary = new Dictionary<string, string>();
string[] keysAndValues = answer.Split(new[] { '&' }, StringSplitOptions.RemoveEmptyEntries);
foreach (string kvString in keysAndValues)
{
string[] pair = kvString.Split('=');
string key = pair[0];
string value = string.Empty;
if (key.Length > 1)
{
value = Uri.UnescapeDataString(pair[1]);
}
keyValueDictionary.Add(key, value);
}
// Return the dictionary of string keys/values
return keyValueDictionary;
}
}
#endregion
}