forked from Esri/arcgis-maps-sdk-dotnet-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSearchPortalMaps.xaml.cs
282 lines (236 loc) · 12.2 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
// 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 Windows.UI.Popups;
using Windows.UI.Xaml;
using Esri.ArcGISRuntime;
namespace ArcGISRuntime.UWP.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)
{
await new MessageDialog(ex.ToString(), "Error").ShowAsync();
}
}
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 async void WebMapLoadStatusChanged(object sender, LoadStatusEventArgs e)
{
await Dispatcher.RunAsync(Windows.UI.Core.CoreDispatcherPriority.Normal, async () =>
{
// Report errors if map failed to load
if (e.Status == LoadStatus.FailedToLoad)
{
Map map = (Map) sender;
Exception err = map.LoadError;
if (err != null)
{
await new MessageDialog(err.Message, "Map load error").ShowAsync();
}
}
});
}
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)
{
// TODO: handle login canceled
}
catch (Exception)
{
// TODO: handle login failure
}
return loggedIn;
}
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 async 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.";
await new MessageDialog(warning, "No OAuth settings").ShowAsync();
// 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;
}
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);
// 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
{
// User will be challenged for OAuth credentials
credential = await AuthenticationManager.Current.GenerateCredentialAsync(info.ServiceUri);
}
catch (Exception)
{
// Exception will be reported in calling function
throw;
}
return credential;
}
}
}