-
Notifications
You must be signed in to change notification settings - Fork 89
/
Checker.cs
137 lines (108 loc) · 3.42 KB
/
Checker.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
#region License
// Copyright 2015 LoLAccountChecker
//
// This file is part of LoLAccountChecker.
//
// LoLAccountChecker is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published
// by the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// LoLAccountChecker is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
// See the GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with LoLAccountChecker. If not, see http://www.gnu.org/licenses/.
#endregion
#region
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using LoLAccountChecker.Classes;
using LoLAccountChecker.Views;
#endregion
namespace LoLAccountChecker
{
internal delegate void NewAccount(Account accout);
internal static class Checker
{
static Checker()
{
Accounts = new List<Account>();
IsChecking = false;
}
public static List<Account> Accounts { get; set; }
public static bool IsChecking { get; private set; }
public static void Start()
{
if (IsChecking)
{
return;
}
IsChecking = true;
var thread = new Thread(Handler)
{
IsBackground = true
};
thread.Start();
}
public static void Stop()
{
if (!IsChecking)
{
return;
}
IsChecking = false;
MainWindow.Instance.UpdateControls();
if (AccountsWindow.Instance != null)
{
AccountsWindow.Instance.RefreshAccounts();
}
}
public static void Refresh(bool e = false)
{
if (IsChecking)
{
return;
}
IsChecking = true;
foreach (var account in Accounts.Where(a => a.State == Account.Result.Success || e))
{
account.State = Account.Result.Unchecked;
}
Start();
}
private static async void Handler()
{
while (Accounts.Any(a => a.State == Account.Result.Unchecked))
{
if (!IsChecking)
{
break;
}
var account = Accounts.FirstOrDefault(a => a.State == Account.Result.Unchecked);
if (account == null)
{
continue;
}
var i = Accounts.FindIndex(a => a.Username == account.Username);
Accounts[i] = await CheckAccount(account);
MainWindow.Instance.UpdateControls();
if (AccountsWindow.Instance != null)
{
AccountsWindow.Instance.RefreshAccounts();
}
}
Stop();
}
public static async Task<Account> CheckAccount(Account account)
{
var client = new Client(account.Region, account.Username, account.Password);
await client.IsCompleted.Task;
return client.Data;
}
}
}