-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAuthSharp.cs
More file actions
1021 lines (926 loc) · 45.7 KB
/
AuthSharp.cs
File metadata and controls
1021 lines (926 loc) · 45.7 KB
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
using AuthSharp.SDK;
using AuthSharp.SDK.Classes;
using AuthSharp.SDK.Enums;
using AuthSharp.SDK.Exceptions;
using AuthSharp.SDK.Models;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using RestSharp;
using System;
using System.Collections.Generic;
using System.Net;
using System.Runtime.InteropServices;
using System.Security.Cryptography;
using System.Threading;
using System.Threading.Tasks;
namespace AuthSharp
{
/// <summary>
/// Main authentication client for interacting with the AuthSharp service.
/// Handles user registration, login, session management, and license operations.
/// </summary>
public class AuthClient : IDisposable
{
private ApplicationConfig _appConfig;
private SessionData _sessionData;
private HTTP http;
/// <summary>
/// Initializes a new instance of the AuthClient class.
/// </summary>
/// <param name="ApplicationId">The unique identifier of your application.</param>
/// <param name="PublicKeySha256">The SHA256 hash of the application's public key for validation.</param>
public AuthClient(string ApplicationId, string PublicKeySha256)
{
_appConfig = new ApplicationConfig
{
Id = ApplicationId,
PublicKeySha256 = PublicKeySha256
};
http = new HTTP();
}
/// <summary>
/// Initializes the authentication client by retrieving the public key from the server and creating a secure session.
/// This method must be called before any other operations.
/// </summary>
/// <exception cref="InitializationException">Thrown when the initialization fails or the public key cannot be retrieved.</exception>
public void Init()
{
var req = new RestRequest("/api/v1/service/GetPublicKey", Method.Get);
req.AddParameter("ApplicationId", _appConfig.Id);
req.AddParameter("PublicSha", _appConfig.PublicKeySha256);
var response = ExecuteRequest(req);
if (response.StatusCode == System.Net.HttpStatusCode.OK)
{
_appConfig.PublicKey = Convert.FromBase64String(response.Content);
_appConfig.SymmetricSecret = Encryption.CreateSymmetricKey();
http.AddDefaultHeader("ApplicationId", _appConfig.Id);
CreateSession();
}
else
{
var content = response.Content;
var message = string.Empty;
if (content.TryParseJObject(out var data))
{
message = " " + data.Value<string>("message");
}
throw new InitializationException($"Failed to initialize AuthClient.{message}");
}
}
/// <summary>
/// Asynchronously initializes the authentication client by retrieving the public key from the server and creating a secure session.
/// This method must be called before any other operations.
/// </summary>
/// <param name="cancellationToken">The cancellation token to cancel the operation.</param>
/// <exception cref="InitializationException">Thrown when the initialization fails or the public key cannot be retrieved.</exception>
public async Task InitAsync(CancellationToken cancellationToken = default)
{
var req = new RestRequest("/api/v1/service/GetPublicKey", Method.Get);
req.AddParameter("ApplicationId", _appConfig.Id);
req.AddParameter("PublicSha", _appConfig.PublicKeySha256);
var response = await ExecuteRequestAsync(req, cancellationToken);
if (response.StatusCode == System.Net.HttpStatusCode.OK)
{
_appConfig.PublicKey = Convert.FromBase64String(response.Content);
_appConfig.SymmetricSecret = Encryption.CreateSymmetricKey();
http.AddDefaultHeader("ApplicationId", _appConfig.Id);
await CreateSessionAsync(cancellationToken);
}
else
{
var content = response.Content;
var message = string.Empty;
if (content.TryParseJObject(out var data))
{
message = " " + data.Value<string>("message");
}
throw new InitializationException($"Failed to initialize AuthClient.{message}");
}
}
private void CreateSession()
{
if (_appConfig.PublicKey == null || _appConfig.SymmetricSecret == null)
{
throw new InitializationException("AuthClient is not initialized. Call Init() before creating a session.");
}
var req = new RestRequest("/api/v1/service/CreateSession", Method.Post);
var data = JsonConvert.SerializeObject(_appConfig.SymmetricSecret);
var encryptedBody = Convert.ToBase64String(Encryption.RSA_Encrypt(data, _appConfig.PublicKey));
req.AddJsonBody(new { body = encryptedBody });
var response = ExecuteRequest(req);
if (response.StatusCode != System.Net.HttpStatusCode.OK)
{
var content = response.Content;
var message = string.Empty;
if (content.TryParseJObject(out var resData))
{
message = " " + resData.Value<string>("message");
}
throw new SessionCreationException($"Failed to create session.{message}");
}
var encResponseBody = new EncryptedBody(_appConfig.SymmetricSecret);
encResponseBody.LoadFromEncryptedBody(response.Content);
_sessionData = encResponseBody.ToObject<SessionData>();
http.Client.AddDefaultHeaders(new Dictionary<string, string>
{
{ "SessionId", _sessionData.SessionId },
{ "SessionToken", _sessionData.SessionToken }
});
}
private async Task CreateSessionAsync(CancellationToken cancellationToken = default)
{
if (_appConfig.PublicKey == null || _appConfig.SymmetricSecret == null)
{
throw new InitializationException("AuthClient is not initialized. Call Init() before creating a session.");
}
var req = new RestRequest("/api/v1/service/CreateSession", Method.Post);
var data = JsonConvert.SerializeObject(_appConfig.SymmetricSecret);
var encryptedBody = Convert.ToBase64String(Encryption.RSA_Encrypt(data, _appConfig.PublicKey));
req.AddJsonBody(new { body = encryptedBody });
var response = await ExecuteRequestAsync(req, cancellationToken);
if (response.StatusCode != System.Net.HttpStatusCode.OK)
{
var content = response.Content;
var message = string.Empty;
if (content.TryParseJObject(out var resData))
{
message = " " + resData.Value<string>("message");
}
throw new SessionCreationException($"Failed to create session.{message}");
}
var encResponseBody = new EncryptedBody(_appConfig.SymmetricSecret);
encResponseBody.LoadFromEncryptedBody(response.Content);
_sessionData = encResponseBody.ToObject<SessionData>();
http.Client.AddDefaultHeaders(new Dictionary<string, string>
{
{ "SessionId", _sessionData.SessionId },
{ "SessionToken", _sessionData.SessionToken }
});
}
/// <summary>
/// Registers a new user with the specified credentials.
/// </summary>
/// <param name="Username">The desired username for the new account.</param>
/// <param name="Password">The password for the new account.</param>
/// <param name="LicenseKey">Optional license key for registration. Required if the application has license requirements.</param>
/// <returns>A RegisterResult object containing the registration outcome and status message.</returns>
/// <exception cref="InvalidOperationException">Thrown when Init() has not been called.</exception>
/// <exception cref="ArgumentNullException">Thrown when Username or Password is null.</exception>
/// <exception cref="UserRegistrationException">Thrown when the server encounters an error during registration.</exception>
public RegisterResult Register(string Username, string Password, string LicenseKey = null)
{
if (_sessionData == null)
{
throw new InvalidOperationException("Session is not created. Call Init() before registering a user.");
}
if (Username == null)
{
throw new ArgumentNullException(nameof(Username));
}
if (Password == null)
{
throw new ArgumentNullException(nameof(Password));
}
var req = new RestRequest("/api/v1/service/Register", Method.Post);
var encBody = new EncryptedBody(_appConfig.SymmetricSecret);
encBody.Add("Username", Username);
encBody.Add("Password", Password);
encBody.Add("Fingerprint", Fingerprint.GetSystemFingerprint());
if (LicenseKey != null)
{
encBody.Add("LicenseKey", LicenseKey);
}
req.AddJsonBody(encBody.ToEncryptedBody());
var response = ExecuteRequest(req);
if ((int)response.StatusCode >= 500)
{
var content = response.Content;
var message = string.Empty;
if (content.TryParseJObject(out var resData))
{
message = " " + resData.Value<string>("message");
}
throw new UserRegistrationException($"Failed to register user.{message}");
}
if (response.StatusCode == System.Net.HttpStatusCode.OK)
{
return new RegisterResult
{
Result = RegisterResults.Success,
Message = "User registered successfully."
};
}
else
{
var resBody = new EncryptedBody(_appConfig.SymmetricSecret);
resBody.LoadFromEncryptedBody(response.Content);
var result = resBody.GetValue<int>("Result");
var message = resBody.GetValue<string>("Message");
var reason = resBody.GetValue<string>("Reason");
var expiresAt = resBody.GetValue<DateTime?>("ExpiresAt");
return new RegisterResult
{
Result = (RegisterResults)result,
Message = message,
BlacklistReason = reason,
BlacklistExpiry = expiresAt
};
}
}
/// <summary>
/// Asynchronously registers a new user with the specified credentials.
/// </summary>
/// <param name="Username">The desired username for the new account.</param>
/// <param name="Password">The password for the new account.</param>
/// <param name="LicenseKey">Optional license key for registration. Required if the application has license requirements.</param>
/// <param name="cancellationToken">The cancellation token to cancel the operation.</param>
/// <returns>A RegisterResult object containing the registration outcome and status message.</returns>
/// <exception cref="InvalidOperationException">Thrown when Init() has not been called.</exception>
/// <exception cref="ArgumentNullException">Thrown when Username or Password is null.</exception>
/// <exception cref="UserRegistrationException">Thrown when the server encounters an error during registration.</exception>
public async Task<RegisterResult> RegisterAsync(string Username, string Password, string LicenseKey = null, CancellationToken cancellationToken = default)
{
if (_sessionData == null)
{
throw new InvalidOperationException("Session is not created. Call Init() before registering a user.");
}
if (Username == null)
{
throw new ArgumentNullException(nameof(Username));
}
if (Password == null)
{
throw new ArgumentNullException(nameof(Password));
}
var req = new RestRequest("/api/v1/service/Register", Method.Post);
var encBody = new EncryptedBody(_appConfig.SymmetricSecret);
encBody.Add("Username", Username);
encBody.Add("Password", Password);
encBody.Add("Fingerprint", Fingerprint.GetSystemFingerprint());
if (LicenseKey != null)
{
encBody.Add("LicenseKey", LicenseKey);
}
req.AddJsonBody(encBody.ToEncryptedBody());
var response = await ExecuteRequestAsync(req, cancellationToken);
if ((int)response.StatusCode >= 500)
{
var content = response.Content;
var message = string.Empty;
if (content.TryParseJObject(out var resData))
{
message = " " + resData.Value<string>("message");
}
throw new UserRegistrationException($"Failed to register user.{message}");
}
if (response.StatusCode == System.Net.HttpStatusCode.OK)
{
return new RegisterResult
{
Result = RegisterResults.Success,
Message = "User registered successfully."
};
}
else
{
var resBody = new EncryptedBody(_appConfig.SymmetricSecret);
resBody.LoadFromEncryptedBody(response.Content);
var result = resBody.GetValue<int>("Result");
var message = resBody.GetValue<string>("Message");
var reason = resBody.GetValue<string>("Reason");
var expiresAt = resBody.GetValue<DateTime?>("ExpiresAt");
return new RegisterResult
{
Result = (RegisterResults)result,
Message = message,
BlacklistReason = reason,
BlacklistExpiry = expiresAt
};
}
}
/// <summary>
/// Authenticates a user with the provided credentials.
/// </summary>
/// <param name="Username">The username of the account to log in.</param>
/// <param name="Password">The password of the account.</param>
/// <returns>A LoginResult object containing the login status and user data if successful.</returns>
/// <exception cref="InvalidOperationException">Thrown when Init() has not been called.</exception>
/// <exception cref="ArgumentNullException">Thrown when Username or Password is null.</exception>
/// <exception cref="UserLoginException">Thrown when the server encounters an error during login.</exception>
public LoginResult Login(string Username, string Password)
{
if (_sessionData == null)
{
throw new InvalidOperationException("Session is not created. Call Init() before registering a user.");
}
if (Username == null)
{
throw new ArgumentNullException(nameof(Username));
}
if (Password == null)
{
throw new ArgumentNullException(nameof(Password));
}
var req = new RestRequest("/api/v1/service/Login", Method.Post);
var encBody = new EncryptedBody(_appConfig.SymmetricSecret);
encBody.Add("Username", Username);
encBody.Add("Password", Password);
encBody.Add("Fingerprint", Fingerprint.GetSystemFingerprint());
req.AddJsonBody(encBody.ToEncryptedBody());
var response = ExecuteRequest(req);
if ((int)response.StatusCode >= 500)
{
var content = response.Content;
var message = string.Empty;
if (content.TryParseJObject(out var resData))
{
message = " " + resData.Value<string>("message");
}
throw new UserLoginException($"Failed to login.{message}");
}
if (response.StatusCode == System.Net.HttpStatusCode.OK)
{
var resBody = new EncryptedBody(_appConfig.SymmetricSecret);
resBody.LoadFromEncryptedBody(response.Content);
var userData = resBody.GetValue("UserData").ToObject<User>();
userData.SetAuthClient(this);
return new LoginResult
{
Result = LoginResults.Success,
UserData = userData
};
}
else
{
var resBody = new EncryptedBody(_appConfig.SymmetricSecret);
resBody.LoadFromEncryptedBody(response.Content);
var result = resBody.GetValue<int>("Result");
var reason = resBody.GetValue<string>("Reason");
var expiresAt = resBody.GetValue<DateTime?>("ExpiresAt");
return new LoginResult
{
Result = (LoginResults)result,
BlacklistReason = reason,
BlacklistExpiry = expiresAt
};
}
}
/// <summary>
/// Asynchronously authenticates a user with the provided credentials.
/// </summary>
/// <param name="Username">The username of the account to log in.</param>
/// <param name="Password">The password of the account.</param>
/// <param name="cancellationToken">The cancellation token to cancel the operation.</param>
/// <returns>A LoginResult object containing the login status and user data if successful.</returns>
/// <exception cref="InvalidOperationException">Thrown when Init() has not been called.</exception>
/// <exception cref="ArgumentNullException">Thrown when Username or Password is null.</exception>
/// <exception cref="UserLoginException">Thrown when the server encounters an error during login.</exception>
public async Task<LoginResult> LoginAsync(string Username, string Password, CancellationToken cancellationToken = default)
{
if (_sessionData == null)
{
throw new InvalidOperationException("Session is not created. Call Init() before logging in.");
}
if (Username == null)
{
throw new ArgumentNullException(nameof(Username));
}
if (Password == null)
{
throw new ArgumentNullException(nameof(Password));
}
var req = new RestRequest("/api/v1/service/Login", Method.Post);
var encBody = new EncryptedBody(_appConfig.SymmetricSecret);
encBody.Add("Username", Username);
encBody.Add("Password", Password);
encBody.Add("Fingerprint", Fingerprint.GetSystemFingerprint());
req.AddJsonBody(encBody.ToEncryptedBody());
var response = await ExecuteRequestAsync(req, cancellationToken);
if ((int)response.StatusCode >= 500)
{
var content = response.Content;
var message = string.Empty;
if (content.TryParseJObject(out var resData))
{
message = " " + resData.Value<string>("message");
}
throw new UserLoginException($"Failed to login.{message}");
}
if (response.StatusCode == System.Net.HttpStatusCode.OK)
{
var resBody = new EncryptedBody(_appConfig.SymmetricSecret);
resBody.LoadFromEncryptedBody(response.Content);
var userData = resBody.GetValue("UserData").ToObject<User>();
userData.SetAuthClient(this);
return new LoginResult
{
Result = LoginResults.Success,
UserData = userData
};
}
else
{
var resBody = new EncryptedBody(_appConfig.SymmetricSecret);
resBody.LoadFromEncryptedBody(response.Content);
var result = resBody.GetValue<int>("Result");
var reason = resBody.GetValue<string>("Reason");
var expiresAt = resBody.GetValue<DateTime?>("ExpiresAt");
return new LoginResult
{
Result = (LoginResults)result,
BlacklistReason = reason,
BlacklistExpiry = expiresAt
};
}
}
/// <summary>
/// Retrieves a user-specific variable from the server.
/// </summary>
/// <typeparam name="T">The type of the variable value.</typeparam>
/// <param name="variableName">The name of the variable to retrieve.</param>
/// <returns>The value of the variable cast to type T.</returns>
/// <exception cref="InvalidOperationException">Thrown when Init() has not been called.</exception>
/// <exception cref="UserVariableFetchException">Thrown when the server encounters an error fetching the variable.</exception>
internal T GetUserVariable<T>(string variableName)
{
if (_sessionData == null)
{
throw new InvalidOperationException("Session is not created. Call Init() before registering a user.");
}
var req = new RestRequest("/api/v1/service/GetUserVariable", Method.Get);
req.AddQueryParameter("variableName", variableName);
var response = ExecuteRequest(req);
if ((int)response.StatusCode >= 500)
{
var content = response.Content;
var message = string.Empty;
if (content.TryParseJObject(out var resData))
{
message = " " + resData.Value<string>("message");
}
throw new UserVariableFetchException($"Failed to fetch user variable.{message}");
}
var resBody = new EncryptedBody(_appConfig.SymmetricSecret);
resBody.LoadFromEncryptedBody(response.Content);
return resBody.GetValue<T>("Value");
}
/// <summary>
/// Sets a user-specific variable on the server.
/// </summary>
/// <typeparam name="T">The type of the variable value.</typeparam>
/// <param name="variableName">The name of the variable to set.</param>
/// <param name="value">The value to store.</param>
/// <exception cref="InvalidOperationException">Thrown when Init() has not been called.</exception>
/// <exception cref="UserVariableSetException">Thrown when the server encounters an error setting the variable.</exception>
internal void SetUserVariable<T>(string variableName, T value)
{
if (_sessionData == null)
{
throw new InvalidOperationException("Session is not created. Call Init() before registering a user.");
}
var req = new RestRequest("/api/v1/service/SetUserVariable", Method.Post);
var encBody = new EncryptedBody(_appConfig.SymmetricSecret);
encBody.Add("VariableName", variableName);
encBody.AddToken("Value", value);
req.AddJsonBody(encBody.ToEncryptedBody());
var response = ExecuteRequest(req);
if ((int)response.StatusCode >= 500)
{
var content = response.Content;
var message = string.Empty;
if (content.TryParseJObject(out var resData))
{
message = " " + resData.Value<string>("message");
}
throw new UserVariableSetException($"Failed to set user variable.{message}");
}
var resBody = new EncryptedBody(_appConfig.SymmetricSecret);
resBody.LoadFromEncryptedBody(response.Content);
var result = resBody.GetValue<bool>("Success");
var msg = resBody.GetValue<string>("Message");
if (!result)
{
throw new UserVariableSetException("Failed to set user variable. Server returned an error." + (!string.IsNullOrEmpty(msg) ? $" message: {msg}" : ""));
}
}
/// <summary>
/// Deletes a user-specific variable from the server.
/// </summary>
/// <param name="variableName">The name of the variable to delete.</param>
/// <exception cref="InvalidOperationException">Thrown when Init() has not been called.</exception>
/// <exception cref="UserVariableDeleteException">Thrown when the server encounters an error deleting the variable.</exception>
internal void DeleteUserVariable(string variableName)
{
if (_sessionData == null)
{
throw new InvalidOperationException("Session is not created. Call Init() before registering a user.");
}
var req = new RestRequest("/api/v1/service/DeleteUserVariable", Method.Delete);
var encBody = new EncryptedBody(_appConfig.SymmetricSecret);
encBody.Add("VariableName", variableName);
req.AddJsonBody(encBody.ToEncryptedBody());
var response = ExecuteRequest(req);
if ((int)response.StatusCode >= 500)
{
var content = response.Content;
var message = string.Empty;
if (content.TryParseJObject(out var resData))
{
message = " " + resData.Value<string>("message");
}
throw new UserVariableDeleteException($"Failed to delete user variable.{message}");
}
var resBody = new EncryptedBody(_appConfig.SymmetricSecret);
resBody.LoadFromEncryptedBody(response.Content);
var result = resBody.GetValue<bool>("Success");
var msg = resBody.GetValue<string>("Message");
if (!result)
{
throw new UserVariableDeleteException("Failed to delete user variable. Server returned an error." + (!string.IsNullOrEmpty(msg) ? $" message: {msg}" : ""));
}
}
/// <summary>
/// Retrieves an application-level variable from the server.
/// Access may be restricted based on user permissions.
/// </summary>
/// <param name="variableName">The name of the application variable to retrieve.</param>
/// <returns>A GetVariableResult object containing the variable value and any permission-related information.</returns>
/// <exception cref="InvalidOperationException">Thrown when Init() has not been called.</exception>
/// <exception cref="ApplicationVariableFetchException">Thrown when the server encounters an error fetching the variable.</exception>
public GetVariableResult GetVariable(string variableName)
{
if (_sessionData == null)
{
throw new InvalidOperationException("Session is not created. Call Init() before registering a user.");
}
var req = new RestRequest("/api/v1/service/GetVariable", Method.Get);
req.AddQueryParameter("variableName", variableName);
var response = ExecuteRequest(req);
if ((int)response.StatusCode >= 500)
{
var content = response.Content;
var message = string.Empty;
if (content.TryParseJObject(out var resData))
{
message = " " + resData.Value<string>("message");
}
throw new ApplicationVariableFetchException($"Failed to fetch application variable.{message}");
}
var resBody = new EncryptedBody(_appConfig.SymmetricSecret);
resBody.LoadFromEncryptedBody(response.Content);
if (!resBody.GetValue<bool>("Success"))
{
return new GetVariableResult
{
Success = false,
Message = resBody.GetValue<string>("Message"),
MissingPermissions = resBody.GetValue("MissingPermissions")?.ToObject<List<string>>(),
Value = null
};
}
return new GetVariableResult
{
Success = true,
Value = resBody.GetValue<string>("Value")
};
}
/// <summary>
/// Activates and redeems a license key for the current user.
/// </summary>
/// <param name="license">The license key to activate.</param>
/// <returns>A RedeemLicenseResults value indicating the outcome of the license activation.</returns>
/// <exception cref="InvalidOperationException">Thrown when Init() has not been called.</exception>
/// <exception cref="LicenseRedemptionException">Thrown when the server encounters an error redeeming the license.</exception>
public RedeemLicenseResults UseLicense(string license)
{
if (_sessionData == null)
{
throw new InvalidOperationException("Session is not created. Call Init() before registering a user.");
}
var req = new RestRequest("/api/v1/service/ActivateLicense", Method.Post);
var encBody = new EncryptedBody(_appConfig.SymmetricSecret);
encBody.Add("LicenseKey", license);
req.AddJsonBody(encBody.ToEncryptedBody());
var response = ExecuteRequest(req);
if ((int)response.StatusCode >= 500)
{
var content = response.Content;
var message = string.Empty;
if (content.TryParseJObject(out var resData))
{
message = " " + resData.Value<string>("message");
}
throw new LicenseRedemptionException($"Failed to redeem license.{message}");
}
var resBody = new EncryptedBody(_appConfig.SymmetricSecret);
resBody.LoadFromEncryptedBody(response.Content);
var result = resBody.GetValue<int>("Result");
return (RedeemLicenseResults)result;
}
/// <summary>
/// Retrieves all licenses associated with the current user.
/// </summary>
/// <returns>An array of License objects representing the user's licenses.</returns>
/// <exception cref="InvalidOperationException">Thrown when Init() has not been called.</exception>
/// <exception cref="LicenseFetchException">Thrown when the server encounters an error fetching licenses.</exception>
public License[] GetLicenses()
{
if (_sessionData == null)
{
throw new InvalidOperationException("Session is not created. Call Init() before registering a user.");
}
var req = new RestRequest("/api/v1/service/GetLicenses", Method.Get);
var response = ExecuteRequest(req);
if ((int)response.StatusCode >= 500)
{
var content = response.Content;
var message = string.Empty;
if (content.TryParseJObject(out var resData))
{
message = " " + resData.Value<string>("message");
}
throw new LicenseFetchException($"Failed to fetch licenses.{message}");
}
var resBody = new EncryptedBody(_appConfig.SymmetricSecret);
resBody.LoadFromEncryptedBody(response.Content);
return resBody.GetValue("Licenses").ToObject<License[]>();
}
/// <summary>
/// Changes the password for the currently authenticated user.
/// </summary>
/// <param name="oldPassword">The current password.</param>
/// <param name="newPassword">The new password to set.</param>
/// <exception cref="InvalidOperationException">Thrown when Init() has not been called or user is not authenticated.</exception>
/// <exception cref="ArgumentNullException">Thrown when oldPassword or newPassword is null.</exception>
/// <exception cref="PasswordChangeException">Thrown when the password change fails.</exception>
public void ChangePassword(string oldPassword, string newPassword)
{
if (_sessionData == null)
{
throw new InvalidOperationException("Session is not created. Call Init() before changing password.");
}
if (oldPassword == null)
{
throw new ArgumentNullException(nameof(oldPassword));
}
if (newPassword == null)
{
throw new ArgumentNullException(nameof(newPassword));
}
var req = new RestRequest("/api/v1/service/ChangePassword", Method.Post);
var encBody = new EncryptedBody(_appConfig.SymmetricSecret);
encBody.Add("OldPassword", oldPassword);
encBody.Add("NewPassword", newPassword);
req.AddJsonBody(encBody.ToEncryptedBody());
var response = ExecuteRequest(req);
if ((int)response.StatusCode >= 500)
{
var content = response.Content;
var message = string.Empty;
if (content.TryParseJObject(out var resData))
{
message = " " + resData.Value<string>("message");
}
throw new PasswordChangeException($"Failed to change password.{message}");
}
var resBody = new EncryptedBody(_appConfig.SymmetricSecret);
resBody.LoadFromEncryptedBody(response.Content);
var success = resBody.GetValue<bool>("Success");
if (!success)
{
var msg = resBody.GetValue<string>("Message");
throw new PasswordChangeException(!string.IsNullOrEmpty(msg) ? msg : "Failed to change password.");
}
}
/// <summary>
/// Asynchronously changes the password for the currently authenticated user.
/// </summary>
/// <param name="oldPassword">The current password.</param>
/// <param name="newPassword">The new password to set.</param>
/// <param name="cancellationToken">The cancellation token to cancel the operation.</param>
/// <exception cref="InvalidOperationException">Thrown when Init() has not been called or user is not authenticated.</exception>
/// <exception cref="ArgumentNullException">Thrown when oldPassword or newPassword is null.</exception>
/// <exception cref="PasswordChangeException">Thrown when the password change fails.</exception>
public async Task ChangePasswordAsync(string oldPassword, string newPassword, CancellationToken cancellationToken = default)
{
if (_sessionData == null)
{
throw new InvalidOperationException("Session is not created. Call InitAsync() before changing password.");
}
if (oldPassword == null)
{
throw new ArgumentNullException(nameof(oldPassword));
}
if (newPassword == null)
{
throw new ArgumentNullException(nameof(newPassword));
}
var req = new RestRequest("/api/v1/service/ChangePassword", Method.Post);
var encBody = new EncryptedBody(_appConfig.SymmetricSecret);
encBody.Add("OldPassword", oldPassword);
encBody.Add("NewPassword", newPassword);
req.AddJsonBody(encBody.ToEncryptedBody());
var response = await ExecuteRequestAsync(req, cancellationToken);
if ((int)response.StatusCode >= 500)
{
var content = response.Content;
var message = string.Empty;
if (content.TryParseJObject(out var resData))
{
message = " " + resData.Value<string>("message");
}
throw new PasswordChangeException($"Failed to change password.{message}");
}
var resBody = new EncryptedBody(_appConfig.SymmetricSecret);
resBody.LoadFromEncryptedBody(response.Content);
var success = resBody.GetValue<bool>("Success");
if (!success)
{
var msg = resBody.GetValue<string>("Message");
throw new PasswordChangeException(!string.IsNullOrEmpty(msg) ? msg : "Failed to change password.");
}
}
/// <summary>
/// Logs out the current user and invalidates their session on the server.
/// </summary>
/// <exception cref="InvalidOperationException">Thrown when Init() has not been called.</exception>
/// <exception cref="LogoutException">Thrown when the server encounters an error during logout.</exception>
public void LogOut()
{
if (_sessionData == null)
{
throw new InvalidOperationException("Session is not created. Call Init() before logging out.");
}
var req = new RestRequest("/api/v1/service/Logout", Method.Post);
var response = ExecuteRequest(req);
if (string.IsNullOrEmpty(response.Content))
{
throw new LogoutException("Server returned empty response.");
}
var resBody = new EncryptedBody(_appConfig.SymmetricSecret);
resBody.LoadFromEncryptedBody(response.Content);
var success = resBody.GetValue<bool>("Success");
if (!success)
{
var msg = resBody.GetValue<string>("Message");
throw new LogoutException("Failed to log out. Server returned an error." + (!string.IsNullOrEmpty(msg) ? $" message: {msg}" : ""));
}
}
/// <summary>
/// Asynchronously logs out the current user and invalidates their session on the server.
/// </summary>
/// <param name="cancellationToken">The cancellation token to cancel the operation.</param>
/// <exception cref="InvalidOperationException">Thrown when Init() has not been called.</exception>
/// <exception cref="LogoutException">Thrown when the server encounters an error during logout.</exception>
public async Task LogOutAsync(CancellationToken cancellationToken = default)
{
if (_sessionData == null)
{
throw new InvalidOperationException("Session is not created. Call Init() before logging out.");
}
var req = new RestRequest("/api/v1/service/Logout", Method.Post);
var response = await ExecuteRequestAsync(req, cancellationToken);
if (string.IsNullOrEmpty(response.Content))
{
throw new LogoutException("Server returned empty response.");
}
var resBody = new EncryptedBody(_appConfig.SymmetricSecret);
resBody.LoadFromEncryptedBody(response.Content);
var success = resBody.GetValue<bool>("Success");
if (!success)
{
var msg = resBody.GetValue<string>("Message");
throw new LogoutException("Failed to log out. Server returned an error." + (!string.IsNullOrEmpty(msg) ? $" message: {msg}" : ""));
}
}
/// <summary>
/// Disposes of the AuthClient and terminates the active session with the server.
/// </summary>
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
/// <summary>
/// Protected implementation of Dispose pattern.
/// </summary>
/// <param name="disposing">Whether to dispose managed resources.</param>
protected virtual void Dispose(bool disposing)
{
if (disposing)
{
// Terminate session on the server
if (_sessionData != null)
{
var req = new RestRequest("/api/v1/service/TerminateSession", Method.Post);
try
{
ExecuteRequest(req);
}
catch
{
// ignore errors during dispose
}
}
// Dispose of managed resources
http?.Dispose();
_sessionData = null;
_appConfig = null;
}
}
// Centralized execution + middleware checks for every request
private RestResponse ExecuteRequest(RestRequest req)
{
var response = http.Client.Execute(req);
if (response == null)
{
throw new UnableToConnectException("Unable to connect to AuthSharp server.");
}
// network-level failure
if (response.StatusCode == 0)
{
throw new UnableToConnectException("Unable to connect to AuthSharp server.");
}
// unauthorized session handling - prefer explicit HTTP 401 but also attempt to parse body message
if (response.StatusCode == HttpStatusCode.Unauthorized)
{
var message = string.Empty;
if (!string.IsNullOrEmpty(response.Content) && response.Content.TryParseJObject(out var resData))
{
message = " " + resData.Value<string>("message");
}
throw new UnauthorizedSessionException($"Server responded with unauthorized session.{message}");
}
// In some setups server might return 200 with an encrypted payload that signals invalid session.
// Try to detect that pattern: attempt to decrypt and check for a keyed "Unauthorized" flag or message.
if (!string.IsNullOrEmpty(response.Content))
{
try
{
var probe = new EncryptedBody(_appConfig.SymmetricSecret);
probe.LoadFromEncryptedBody(response.Content);
var maybeMsg = probe.GetValue<string>("Message");
if (!string.IsNullOrEmpty(maybeMsg) &&
(maybeMsg.IndexOf("unauthorized", StringComparison.OrdinalIgnoreCase) >= 0 ||
maybeMsg.IndexOf("invalid session", StringComparison.OrdinalIgnoreCase) >= 0 ||
maybeMsg.IndexOf("session expired", StringComparison.OrdinalIgnoreCase) >= 0))
{
throw new UnauthorizedSessionException($"Server responded with unauthorized session. message: {maybeMsg}");
}
}
catch
{
// ignore failures here - parsing errors should not block normal flow
}
}
return response;
}
// Centralized async execution + middleware checks for every request
private async Task<RestResponse> ExecuteRequestAsync(RestRequest req, CancellationToken cancellationToken = default)
{
var response = await http.Client.ExecuteAsync(req, cancellationToken);
if (response == null)
{
throw new UnableToConnectException("Unable to connect to AuthSharp server.");
}
// network-level failure
if (response.StatusCode == 0)
{
throw new UnableToConnectException("Unable to connect to AuthSharp server.");
}
// unauthorized session handling - prefer explicit HTTP 401 but also attempt to parse body message
if (response.StatusCode == HttpStatusCode.Unauthorized)
{
var message = string.Empty;
if (!string.IsNullOrEmpty(response.Content) && response.Content.TryParseJObject(out var resData))
{
message = " " + resData.Value<string>("message");
}
throw new UnauthorizedSessionException($"Server responded with unauthorized session.{message}");
}
// In some setups server might return 200 with an encrypted payload that signals invalid session.
// Try to detect that pattern: attempt to decrypt and check for a keyed "Unauthorized" flag or message.
if (!string.IsNullOrEmpty(response.Content))
{
try
{