-
Notifications
You must be signed in to change notification settings - Fork 0
/
FlexibleWebAuthView.xaml.cs
72 lines (60 loc) · 2.17 KB
/
FlexibleWebAuthView.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
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices.WindowsRuntime;
using Windows.Foundation;
using Windows.Foundation.Collections;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Controls.Primitives;
using Windows.UI.Xaml.Data;
using Windows.UI.Xaml.Input;
using Windows.UI.Xaml.Media;
using Windows.UI.Xaml.Navigation;
using OAuth2Manager.Common;
// The User Control item template is documented at http://go.microsoft.com/fwlink/?LinkId=234236
namespace OAuth2Manager
{
public sealed partial class FlexibleWebAuthView : UserControl, IUserAuthorizationViewer
{
public EventHandler OAuthCancelled { get; set; }
public EventHandler OAuthSuccess { get; set; }
public EventHandler NavigationFailed { get; set; }
public FlexibleWebAuthView()
{
this.InitializeComponent();
FlexibleWebAuthViewControl.Focus(FocusState.Pointer);
this.InitEvents();
}
private void InternalWebView_NavigationFailed(object sender, WebViewNavigationFailedEventArgs e)
{
NavigationFailed?.Invoke(e.Uri, EventArgs.Empty);
}
private void InitEvents()
{
this.Loaded += FlexibleWebAuthView_Loaded;
InternalWebView.NavigationFailed += InternalWebView_NavigationFailed;
InternalWebView.NavigationStarting += InternalWebView_NavigationStarting;
}
private void InternalWebView_NavigationStarting(WebView sender, WebViewNavigationStartingEventArgs args)
{
if (AuthController.IsCallBack(args.Uri))
OAuthSuccess?.Invoke(args.Uri, EventArgs.Empty);
}
private void FlexibleWebAuthView_Loaded(object sender, RoutedEventArgs e)
{
InternalWebView.Width = 800.0f;
}
public void Navigate(Uri uri)
{
InternalWebView.Navigate(uri);
}
public Uri GetCurrentUri()
{
return InternalWebView.Source;
}
public Uri AuthorizeUrl { get; set; }
public IUserConsentHandler AuthController { get; set; }
}
}