-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathauthenticator.cpp
194 lines (167 loc) · 6.19 KB
/
authenticator.cpp
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
#include "authenticator.h"
namespace ikoOSKAR {
namespace BLL {
Authenticator::Authenticator() { }
Authenticator* Authenticator::getInstance()
{
if (instance == nullptr) {
instance = new Authenticator();
}
return instance;
}
void Authenticator::login()
{
// Login steps for demo users
if (localAuth.isDemo()) {
if (cloudAuth.isOnline()) {
// Proper signal gets sent in synchronizeDemo()
synchronizeDemo();
} else {
if (localAuth.getDemoRemainings() > 0) {
emit success();
} else {
emit error("Ücretsiz deneme haklarınız tükenmiştir. Eğer ikoOSKAR'dan memnun kaldıysanız "
"ve programı kullanmaya devam etmek istiyorsanız lütfen [email protected] "
"e-posta adresinden iletişime geçip bir lisans anahtarı satın alınız.");
}
}
return;
}
// Login steps for non-demo users
// Check if the serial is empty
QString serial = localAuth.getSerial();
if (serial.isEmpty()) {
emit error();
return;
}
// Check if the serial is valid if both the server and the client are online
if (cloudAuth.isOnline()) {
// Proper signal gets sent in synchronizeLicense()
synchronizeLicense(serial);
} else {
int remainings = localAuth.getDemoRemainings();
if (remainings > 0) {
emit success();
} else {
emit error();
}
}
}
void Authenticator::signupLicensed(QString serial)
{
if (serial.isEmpty()) {
emit error("Lütfen lisans anahtarınızı giriniz.");
return;
}
if (serial.size() < 3) {
emit error("Lisans anahtarı 3 harften kısa olamaz.");
return;
}
if (!cloudAuth.isOnline()) {
emit error("Bilgisayarınız internete bağlı değil. Lütfen internete bağlanıp tekrar deneyiniz.");
return;
}
// Proper signal gets sent in synchronizeLicense()
bool isSignupSuccessful = synchronizeLicense(serial);
if (isSignupSuccessful) {
localAuth.setSerial(serial);
localAuth.setDemo(false);
}
}
void Authenticator::signupDemo()
{
if (!cloudAuth.isOnline()) {
emit error("Bilgisayarınız internete bağlı değil. Lütfen internete bağlanıp tekrar deneyiniz.");
return;
}
// Proper signal gets sent in synchronizeDemo()
bool isSignupSuccessful = synchronizeDemo();
localAuth.setSerial("");
localAuth.setDemo(isSignupSuccessful);
}
int Authenticator::getDemoRemainings()
{
return localAuth.getDemoRemainings();
}
void Authenticator::decreaseDemoRemainingsByOne()
{
int current = localAuth.getDemoRemainings();
localAuth.setDemoRemainings(current - 1);
synchronizeDemo();
emit demoUpdated();
}
bool Authenticator::isDemo()
{
return localAuth.isDemo();
}
QString Authenticator::getSerial()
{
return localAuth.getSerial();
}
const LicenseStatus Authenticator::getLicenseStatus()
{
if (isDemo()) {
int remainings = getDemoRemainings();
if (remainings > 0) {
return LicenseStatus::Demo;
} else {
return LicenseStatus::EndOfDemo;
}
} else {
return LicenseStatus::Activated;
}
}
bool Authenticator::synchronizeLicense(const QString& serial)
{
auto response = cloudAuth.activateLicense(serial);
switch (response.statusCode) {
case CloudAuthResponse::REACTIVATED:
emit success("Lisans anahtarı yeniden etkinleştirildi.");
return true;
case CloudAuthResponse::ACTIVATED:
emit success("Lisans anahtarı etkinleştirildi.");
return true;
case CloudAuthResponse::BAD_REQUEST:
emit error("Lisans anahtarı etkinleştirilemedi: Hata kodu 400, hatalı istek.");
return false;
case CloudAuthResponse::UNAUTHORIZED:
emit error("Lisans anahtarı etkinleştirilemedi: Hata kodu 401, yetkisiz erişim.");
return false;
case CloudAuthResponse::SERIAL_NOT_FOUND:
emit error("Lisans anahtarı etkinleştirilemedi: Hata kodu 404, lisans anahtarı bulunamadı.");
return false;
default:
emit error("Lisans anahtarı etkinleştirilemedi: Diğer hata: " + response.body);
return false;
}
}
bool Authenticator::synchronizeDemo()
{
int localRemainings = localAuth.getDemoRemainings();
auto response = cloudAuth.setDemoRemainings(localRemainings);
int remoteRemainings;
switch (response.statusCode) {
case CloudAuthResponse::REACTIVATED:
case CloudAuthResponse::ACTIVATED:
case CloudAuthResponse::END_OF_DEMO:
remoteRemainings = response.getDemoRemainings();
localAuth.setDemoRemainings(remoteRemainings);
if (remoteRemainings > 0) {
emit success("Deneme sürümü etkinleştirildi.");
return true;
} else {
emit error("Ücretsiz deneme haklarınız tükenmiştir. Eğer ikoOSKAR'dan memnun kaldıysanız "
"ve programı kullanmaya devam etmek istiyorsanız lütfen [email protected] "
"e-posta adresinden iletişime geçip bir lisans anahtarı satın alınız.");
return false;
}
case CloudAuthResponse::BAD_REQUEST:
emit error("Deneme sürümü etkinleştirilemedi: Hata kodu 400, hatalı istek.");
return false;
default:
emit error("Deneme sürümü etkinleştirilemedi: Diğer hata: " + response.body);
return false;
}
}
} // namespace BLL
} // namespace ikoOSKAR