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
|
using System;
using System.IO.IsolatedStorage;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using RestSharp;
using System.Diagnostics;
namespace Juick.Classes
{
public class AccountManager
{
private string _userName;
private string _password;
public string UserName
{
get
{
if (_userName == null)
{
IsolatedStorageSettings.ApplicationSettings.TryGetValue<string>("user", out _userName);
}
return _userName;
}
set
{
_userName = value;
IsolatedStorageSettings.ApplicationSettings["user"] = _userName;
}
}
public string Password
{
get
{
if (_password == null)
{
IsolatedStorageSettings.ApplicationSettings.TryGetValue<string>("password", out _password);
}
return _password;
}
set
{
_password = value;
IsolatedStorageSettings.ApplicationSettings["password"] = value;
}
}
public bool IsAuthenticated
{
get
{
bool authenticated;
IsolatedStorageSettings.ApplicationSettings.TryGetValue<bool>("authenticated", out authenticated);
return authenticated;
}
set { IsolatedStorageSettings.ApplicationSettings["authenticated"] = value; }
}
public string NotificationUri
{
get
{
string _notificationUri;
IsolatedStorageSettings.ApplicationSettings.TryGetValue<string>("notification_uri", out _notificationUri);
return _notificationUri;
}
set
{
var oldValue = NotificationUri;
if (!string.IsNullOrEmpty(oldValue))
UnregisterNotificationUrl(oldValue);
IsolatedStorageSettings.ApplicationSettings["notification_uri"] = value;
if (!string.IsNullOrEmpty(value))
RegisterNotificationUrl(value);
}
}
public void SignOut(Page page)
{
IsAuthenticated = false;
App.AppContext.DisableNotifications();
page.NavigationService.Navigate(new Uri("/LoginView.xaml", UriKind.Relative));
page.Dispatcher.BeginInvoke(() => page.NavigationService.RemoveBackEntry());
}
void RegisterNotificationUrl(string newUrl)
{
App.AppContext.Client.ExecuteAsync(new RestRequest("/winphone/register?url=" + newUrl),
response => Debug.WriteLine("Registering push url, status {0}: {1}", response.Request.Resource, response.StatusCode));
}
void UnregisterNotificationUrl(string oldUrl)
{
App.AppContext.Client.ExecuteAsync(new RestRequest("/winphone/unregister?url=" + oldUrl),
response => Debug.WriteLine("Unregistered push url, status {0}: {1}", response.Request.Resource, response.StatusCode));
}
}
}
|