Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ClientService.cs « Services « NextcloudApp - github.com/nextcloud/windows-universal.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e2c38e7baabc8ad00d800fdaed0fe0c781d8c5d8 (plain)
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
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Windows.Security.Credentials;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Microsoft.Practices.Unity;
using Prism.Windows.AppModel;
using Prism.Windows.Navigation;

namespace NextcloudApp.Services
{
    public static class ClientService
    {
        private static NextcloudClient.NextcloudClient _client;

        public static async Task<NextcloudClient.NextcloudClient> GetClient()
        {
            if (_client != null)
            {
                return _client;
            }

            if (!string.IsNullOrEmpty(SettingsService.Instance.LocalSettings.ServerAddress) &&
                !string.IsNullOrEmpty(SettingsService.Instance.LocalSettings.Username))
            {
                var vault = new PasswordVault();

                IReadOnlyList<PasswordCredential> credentialList = null;
                try
                {
                    credentialList = vault.FindAllByResource(SettingsService.Instance.LocalSettings.ServerAddress);
                }
                catch
                {
                    // ignored
                }

                var credential = credentialList?.FirstOrDefault(item => item.UserName.Equals(SettingsService.Instance.LocalSettings.Username));

                if (credential == null)
                {
                    return null;
                }
                
                credential.RetrievePassword();

                try
                {
                    var response = await NextcloudClient.NextcloudClient.GetServerStatus(credential.Resource, SettingsService.Instance.LocalSettings.IgnoreServerCertificateErrors);
                    if (response == null)
                    {
                        await ShowServerAddressNotFoundMessage(credential.Resource);
                        return null;
                    }
                }
                catch
                {
                    await ShowServerAddressNotFoundMessage(credential.Resource);
                    return null;
                }

                _client = new NextcloudClient.NextcloudClient(
                    credential.Resource,
                    credential.UserName,
                    credential.Password
                ) {
                    IgnoreServerCertificateErrors =
                        SettingsService.Instance.LocalSettings.IgnoreServerCertificateErrors
                };
            }

            SettingsService.Instance.LocalSettings.PropertyChanged += async (sender, args) =>
            {
                if (_client != null && args.PropertyName == "IgnoreServerCertificateErrors")
                {
                    _client.IgnoreServerCertificateErrors =
                        SettingsService.Instance.LocalSettings.IgnoreServerCertificateErrors;
                }

                if (
                    string.IsNullOrEmpty(SettingsService.Instance.LocalSettings.ServerAddress) ||
                    string.IsNullOrEmpty(SettingsService.Instance.LocalSettings.Username)
                    )
                {
                    _client = null;
                    return;
                }

                var vault = new PasswordVault();

                IReadOnlyList<PasswordCredential> credentialList = null;
                try
                {
                    credentialList = vault.FindAllByResource(SettingsService.Instance.LocalSettings.ServerAddress);
                }
                catch
                {
                    // ignored
                }

                var credential = credentialList?.FirstOrDefault(item => item.UserName.Equals(SettingsService.Instance.LocalSettings.Username));

                if (credential == null)
                {
                    _client = null;
                    return;
                }

                credential.RetrievePassword();

                try
                {
                    var response = await NextcloudClient.NextcloudClient.GetServerStatus(credential.Resource, SettingsService.Instance.LocalSettings.IgnoreServerCertificateErrors);
                    if (response == null)
                    {
                        _client = null;
                        await ShowServerAddressNotFoundMessage(credential.Resource);
                        return;
                    }
                }
                catch
                {
                    _client = null;
                    await ShowServerAddressNotFoundMessage(credential.Resource);
                    return;
                }

                _client = new NextcloudClient.NextcloudClient(
                    credential.Resource,
                    credential.UserName,
                    credential.Password
                ) {
                    IgnoreServerCertificateErrors =
                            SettingsService.Instance.LocalSettings.IgnoreServerCertificateErrors
                };
            };

            return _client;
        }

        private static async Task ShowServerAddressNotFoundMessage(string serverAddress)
        {
            var app = Application.Current as App;
            if (app == null)
            {
                return;
            }
            var navigationService = app.Container.Resolve<INavigationService>();
            var resourceLoader = app.Container.Resolve<IResourceLoader>();
            var dialogService = app.Container.Resolve<DialogService>();

            var dialog = new ContentDialog
            {
                Title = resourceLoader.GetString("AnErrorHasOccurred"),
                Content = new TextBlock
                {
                    Text = string.Format(resourceLoader.GetString("ServerWithGivenAddressIsNotReachable"), serverAddress),
                    TextWrapping = TextWrapping.WrapWholeWords,
                    Margin = new Thickness(0, 20, 0, 0)
                },
                PrimaryButtonText = resourceLoader.GetString("OK")
            };
            await dialogService.ShowAsync(dialog);
            SettingsService.Instance.Reset();
            navigationService.Navigate(PageTokens.Login.ToString(), null);
        }

        public static void Reset()
        {
            _client = null;
        }
    }
}