Users.cs
32.2 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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using MongoDB.Driver;
using MongoDB.Bson;
using AIAHTML5.API.Properties;
using AIAHTML5.API.Constants;
using log4net;
using AIAHTML5.API.Models;
using Newtonsoft.Json;
using System.Collections;
using System.Data.SqlClient;
using System.Net;
using System.Data;
using AIAHTML5.API.Constants;
namespace AIAHTML5.API.Models
{
public class Users
{
private static readonly ILog logger = LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
internal static dynamic GetUserDetailsForAuthenticatedUser(Newtonsoft.Json.Linq.JObject credentials)
{
logger.Debug("inside AuthenticateUser for loginId =" + credentials["username"].ToString() + " and password= " + credentials["password"].ToString());
dynamic userDetails = null;
User user = DBModel.GetUserDetailsByLoginId(credentials["username"].ToString());
//string userDetails = DBModel.GetUserDetailsByLoginId2(credentials["username"].ToString());
if (user != null)
{
logger.Debug("userDetails.loginId= " + user.LoginId); // .loginId);
userDetails = JsonConvert.SerializeObject(user);
}
else
{
userDetails = AIAConstants.USER_NOT_FOUND;
}
return userDetails;
}
internal static dynamic GetUserByEmail(Newtonsoft.Json.Linq.JObject userInfo)
{
logger.Debug(" inside GetUserByEmail for emailId = " + userInfo["emailId"]);
User objUser = DBModel.GetUserDetailsByEmailId(userInfo["emailId"].ToString());
//dynamic userDetails;
if (objUser != null)
{
logger.Debug("userDetails.loginId= " + objUser.LoginId);
//return userDetails = JsonConvert.SerializeObject(objUser);
return objUser;
}
else
{
return AIAConstants.USER_NOT_FOUND;
}
}
internal static dynamic UpdatePassword(Newtonsoft.Json.Linq.JObject userInfo, string sLoginId, string sEmailId)
{
int result = DBModel.UpdateUserPassword(userInfo, sLoginId, sEmailId);
return result;
}
internal static dynamic UpdateLicenseTerm(Newtonsoft.Json.Linq.JObject userLicenseInfo)
{
logger.Debug(" inside UpdateLicenseTerm for AccountNumber = " + userLicenseInfo["licenseeAccountNumber"].ToString() + ", LicenseId: " + userLicenseInfo["userLicenseId"].ToString());
Newtonsoft.Json.Linq.JObject userInfo = new Newtonsoft.Json.Linq.JObject();
dynamic result;
string accountNumber = userLicenseInfo["licenseeAccountNumber"].ToString();
userInfo.Add("accountNumber", accountNumber);
result = DBModel.UpdateLicenseTermStatus(accountNumber);
if (result < 0)
{
logger.Fatal("Unable to update LicenseTermAccepted status for AccountNumber =" + accountNumber);
}
return result;
}
internal static bool checkUserAuthenticity(Newtonsoft.Json.Linq.JObject credentials, User user)
{
bool isAuthenticatedUser = DBModel.ValidateUserAuthenticity(credentials["username"].ToString(), credentials["password"].ToString(), user);
return isAuthenticatedUser;
}
internal static User getUserDetails(Newtonsoft.Json.Linq.JObject credentials)
{
logger.Debug("inside getUserDetails for loginId =" + credentials["username"].ToString() + " and password= " + credentials["password"].ToString());
User userDetails = null;
userDetails = DBModel.GetUserDetailsByLoginId(credentials["username"].ToString());
return userDetails;
}
internal static void getLicenseIdForThisUser(int userId, out int licenseId, out int editionId, out int LicenseEditionId)
{
logger.Debug("inside getLicenseIdForThisUser for UserId =" + userId);
//assigning below variable to avoid compiler error for unassignd out params
licenseId = 0;
editionId = 0;
LicenseEditionId = 0;
DBModel objModel = new DBModel();
Hashtable licenseEditionHash = objModel.GetLicenseDetailByUserId(userId);
if (licenseEditionHash.ContainsKey(AIAConstants.LICENSE_KEY_ID))
licenseId = Convert.ToInt32(licenseEditionHash[AIAConstants.LICENSE_KEY_ID]);
if (licenseEditionHash.ContainsKey(AIAConstants.EDITION_KEY_ID))
editionId = Convert.ToInt32(licenseEditionHash[AIAConstants.EDITION_KEY_ID]);
if (licenseEditionHash.ContainsKey("LicenseEditionId"))
LicenseEditionId = Convert.ToInt32(licenseEditionHash["LicenseEditionId"]);
}
internal static int insertLoginDetails(int userId)
{
logger.Debug("inside insertLoginDetails for UserId =" + userId);
int result = 0;
DBModel objModel = new DBModel();
result = objModel.InsertLoginDetails(userId);
return result;
}
internal static bool isUSerActive(User user)
{
if (user.IsActive)
return true;
else
return false;
}
internal static bool checkIfLicenseNotStarted(LicenseSubscriptionDetails subscriptionDetail, out string startDate)
{
startDate = string.Empty;
bool IsSubscriptionNotStart = false;
// validate stat date for new license
if (subscriptionDetail != null && subscriptionDetail.RenewalDate==null)
{
DateTime? SubscriptionValidFrom = subscriptionDetail.SubscriptionValidFrom;
if (SubscriptionValidFrom != null && SubscriptionValidFrom.Value.Date <= DateTime.Now.Date)
{
IsSubscriptionNotStart = false;
}
else
{
IsSubscriptionNotStart = true;
startDate = subscriptionDetail.SubscriptionValidFrom.Value.Date.ToString("MM/dd/yyyy").ToString();
}
}
return IsSubscriptionNotStart;
}
internal static bool checkIfLicenseExpired(LicenseSubscriptionDetails subscriptionDetail, out string expirationDate)
{
expirationDate = string.Empty;
bool isLicenseExpired = false;
if (subscriptionDetail != null)
{
DateTime? subscriptionValidThrough = subscriptionDetail.SubscriptionValidThrough;
if (subscriptionValidThrough != null && subscriptionValidThrough.Value.Date >= DateTime.Now.Date)
{
isLicenseExpired = false;
}
else
{
isLicenseExpired = true;
expirationDate = subscriptionDetail.SubscriptionValidThrough.Value.Date.ToString("MM/dd/yyyy").ToString();
}
}
return isLicenseExpired;
}
internal static ArrayList getModuleListBySlug(int licenseId,string slug)
{
logger.Debug("inside getModuleListByLicenseId for LicenseId =" + licenseId);
ArrayList licensedModulesList = new ArrayList();
DBModel objModel = new DBModel();
licensedModulesList = objModel.GetUserModulesBySlug(licenseId,slug);
return licensedModulesList;
}
internal static ArrayList getModuleListByLicenseId(int licenseId)
{
logger.Debug("inside getModuleListByLicenseId for LicenseId =" + licenseId);
ArrayList licensedModulesList = new ArrayList();
DBModel objModel = new DBModel();
licensedModulesList = objModel.GetUserModulesByLicenseId(licenseId);
return licensedModulesList;
}
internal static int deletePastWrongAttempts(int userId)
{
logger.Debug("inside deletePastWrongAttempts for UserId =" + userId);
int result = 0;
DBModel objModel = new DBModel();
result = objModel.DeleteIncorrectLoginAttempts(userId);
return result;
}
internal static int checkNoOfWrongAttempts(int userId)
{
logger.Debug("inside checkNoOfWrongAttempts for UserId =" + userId);
int incorrectLoginAttemptCount = 0;
DBModel objModel = new DBModel();
incorrectLoginAttemptCount = objModel.GetIncorrectLoginAttempts(userId);
return incorrectLoginAttemptCount;
}
internal static int saveWrongAttemptOfUser(int userId, int previousIncorrectLoginAttempts)
{
logger.Debug("inside saveWrongAttemptofUser for UserId =" + userId);
int result = 0;
DBModel objModel = new DBModel();
if (previousIncorrectLoginAttempts < 1)
{
result = objModel.InsertIncorrectLoginAttempts(userId);
}
else
{
result = objModel.UpdateIncorrectLoginAttempts(userId);
}
return result;
}
internal static bool isLicenseActive(int licenseId)
{
logger.Debug("inside isLicenseActive for LicenseId =" + licenseId);
bool result = false;
DBModel objModel = new DBModel();
License userLicense = objModel.GetLicenseDetailsByLicenseId(licenseId);
if (userLicense.IsActive)
result = true;
else
result = false;
return result;
}
internal static License getLicenseDetails(int licenseId)
{
logger.Debug("inside getLicenseDetails for LicenseId =" + licenseId);
License userLicense = null;
DBModel objModel = new DBModel();
userLicense = objModel.GetLicenseDetailsByLicenseId(licenseId);
return userLicense;
}
internal static LicenseSubscriptionDetails getLicenseSubscriptionDetails(int licenseId)
{
logger.Debug("inside getLicenseSubscriptionDetails for LicenseId =" + licenseId);
LicenseSubscriptionDetails userSubscriptionDetail = null;
DBModel objModel = new DBModel();
userSubscriptionDetail = objModel.GetLicenseSubscriptionDetailsByLicenseId(licenseId);
return userSubscriptionDetail;
}
internal static LicenseUserExportedImageDetail getExportedImageDetail(int licenseId)
{
logger.Debug("inside getLicenseDetails for LicenseId =" + licenseId);
LicenseUserExportedImageDetail imageDetail = null;
DBModel objModel = new DBModel();
imageDetail = objModel.GetLicenseUserExportImageDetail(licenseId);
return imageDetail;
}
internal static int InsertExportedImageDetail(LicenseUserInsertImageDetail imageDetail)
{
logger.Debug("inside InsertExportedImageDetail for Image =" + imageDetail.ImageName);
int result = 0;
DBModel objModel = new DBModel();
result = objModel.LicenseUserInsertExportedImageDetail(imageDetail);
return result;
}
internal static BypassLogin ByPassLoginDetail(string loginId, string accountNumber)
{
BypassLogin objUser = null;
objUser = DBModel.ByPassLoginDetail(loginId, accountNumber);
return objUser;
}
internal static string GetUserLoginStatus(int userId, string tagName, long SessionId, bool isSiteUser,bool isAdmin)
{
string status = null;
status = DBModel.GetUserLoginStatus(userId, tagName, SessionId, isSiteUser, isAdmin);
return status;
}
internal static int ValidateAodAthenticationStatus(long SessionId, string aiaConfigKey, string aodpasskey, string CourseId)
{
int status = 0;
status = DBModel.ValidateAodAthenticationStatus(SessionId, aiaConfigKey, aodpasskey, CourseId);
return status;
}
internal static int SaveUserSelectedSettings(User selectedSettings)
{
logger.Debug("inside SaveUserSelectedSettings for Image =" + selectedSettings.Id);
int result = 0;
DBModel objModel = new DBModel();
result = objModel.SaveSettings(selectedSettings);
return result;
}
internal static User GetUserSelectedSettings(int userId,bool isSiteUser, out string skintone, out string modesty)
{
logger.Debug("inside GetUserSelectedSettings for userid =" + userId);
skintone = null;
modesty = null;
DBModel objModel = new DBModel();
User result = objModel.GetSelectedSettings(userId, isSiteUser);
if (result != null)
{
skintone = result.userSelectedSkintone;
modesty = result.userselectedModesty;
}
return result;
}
internal static void isCredentialCorrect(Newtonsoft.Json.Linq.JObject credentials, User userInfo, out bool isCorrectLoginId, out bool isCorrectPassword)
{
isCorrectLoginId = false;
isCorrectPassword = false;
if (userInfo.Id > 0)
{
if (string.Equals(credentials["username"].ToString().ToUpper(), userInfo.LoginId.ToUpper()))
isCorrectLoginId = true;
if (string.Equals(credentials["password"].ToString(), userInfo.Password))
{
isCorrectPassword = true;
}
}
}
internal static int insertUserLoginLog(string accountNumber, Int16 failureId, string referalUrl, string edition, string httpReferer)
{
logger.Debug("inside insertUserLoginLog for accountNumber =" + accountNumber);
int result = 0;
DBModel objModel = new DBModel();
result = objModel.InsertUserLoginLog(accountNumber, failureId, null, edition, null);
return result;
}
internal static ArrayList getTermsAndConditions()
{
logger.Debug("inside getTermsOfServiceText");
ArrayList arrTermsOfService = new ArrayList();
DBModel objModel = new DBModel();
arrTermsOfService = DBModel.GetTermsAndConditions();
return arrTermsOfService;
}
internal static ArrayList getAllModulesList()
{
logger.Debug("inside getAllModulesList");
ArrayList modulesList = new ArrayList();
DBModel objModel = new DBModel();
modulesList = objModel.GetAllModules();
return modulesList;
}
internal static bool checkUserBlockStatus(int userId, out DateTime blockTime)
{
logger.Debug("inside isUserBlocked for UserId =" + userId);
bool isUserBlocked = false;
blockTime = new DateTime();
DBModel objModel = new DBModel();
BlockedUser blockedUser = objModel.GetUserBlockedStatusByUserId(userId);
if (blockedUser != null)
{
blockTime = blockedUser.LoginTime;
isUserBlocked = true;
}
else
isUserBlocked = false;
return isUserBlocked;
}
public static int ValidateLicenseSiteIP(string strLicenseSiteIP, string remoteIpAddress, string strAccountNumber, byte editionId)
{
if (strLicenseSiteIP == null)
strLicenseSiteIP = remoteIpAddress;
int intReturn = 0;
DBModel objDBModel = new DBModel();
DataTable dtLicense = objDBModel.GetLicenseInfoBySiteUrl(strAccountNumber, (byte)editionId);
if (dtLicense.Rows.Count > 0)
{
//strLicenseSiteIP
String strSiteIP = "";
String strSiteIPTo = "";
String strSiteMIPTo = "";
IPAddress[] arrHostIP = new IPAddress[2];
try
{
arrHostIP.SetValue(IPAddress.Parse(remoteIpAddress), 0);
arrHostIP.SetValue(IPAddress.Parse(strLicenseSiteIP), 1);
}
catch (Exception e)
{
//NOTE: if no domain name found we try to resolve by IP.
//arrHostIP.SetValue(Dns.GetHostAddresses(strLicenseSiteIP),1); //I SHould remove this feature it is useless
};
// foreach (IPAddress address in arrHostIP)
foreach (IPAddress address in arrHostIP)
{
if (address == null)
continue;
String ipStr = address.ToString();
if (ipStr == "::1" || ipStr == "") continue;
foreach (DataRow objLicenseRow in dtLicense.Rows)
{
strSiteIP = (String.IsNullOrEmpty(objLicenseRow["SiteIp"].ToString()) ? "" : objLicenseRow["SiteIp"].ToString());
strSiteIPTo = (String.IsNullOrEmpty(objLicenseRow["SiteIPTo"].ToString()) ? "" : objLicenseRow["SiteIPTo"].ToString());
//if (String.IsNullOrEmpty(objLicenseRow.SiteIPTo) == false)
//strSiteIPTo = objLicenseRow.SiteIPTo;
strSiteMIPTo = (String.IsNullOrEmpty(objLicenseRow["SiteMasterIPTo"].ToString()) ? "" : objLicenseRow["SiteMasterIPTo"].ToString());
if (IPValidator.ValidateIP(strSiteIP.ToLower(), strSiteIPTo.ToLower(), strSiteMIPTo.ToLower(), ipStr.ToLower(), Convert.ToInt16(objLicenseRow["IsMaster"])) == true)
{
intReturn = Convert.ToInt32(objLicenseRow["Id"]);
return intReturn;
}
}
}
if (IPValidator.IsNumericIP(strLicenseSiteIP) == false)
{
foreach (DataRow objLicenseRow in dtLicense.Rows)
{
strSiteIP = (String.IsNullOrEmpty(objLicenseRow["SiteIp"].ToString()) ? "" : objLicenseRow["SiteIp"].ToString());
// strSiteIPTo = (String.IsNullOrEmpty(objLicenseRow.SiteIPTo) ? "" : objLicenseRow.SiteIPTo);
if (String.IsNullOrEmpty(objLicenseRow["SiteIPTo"].ToString()) == false)
strSiteIPTo = objLicenseRow["SiteIPTo"].ToString();
strSiteMIPTo = (String.IsNullOrEmpty(objLicenseRow["SiteMasterIPTo"].ToString()) ? "" : objLicenseRow["SiteMasterIPTo"].ToString());
// if provided ip is not numeric, then compare directly with all the fields
if ((strLicenseSiteIP.ToLower() == strSiteIP.ToLower()) ||
(strLicenseSiteIP.ToLower() == IPValidator.FormatURLToIP(strSiteIP).ToLower()) ||
(strLicenseSiteIP.ToLower() == strSiteIPTo.ToLower()) ||
(strLicenseSiteIP.ToLower() == IPValidator.FormatURLToIP(strSiteIPTo).ToLower()) ||
(strLicenseSiteIP.ToLower() == strSiteMIPTo.ToLower()) ||
(strLicenseSiteIP.ToLower() == IPValidator.FormatURLToIP(strSiteMIPTo).ToLower()))
{
intReturn = Convert.ToInt32(objLicenseRow["Id"]);
return intReturn;
}
}
}
}
return intReturn;
}
public static User ValidateSiteLogin(String strSiteIP, String strAcccountNumber, String strUrlReferer, string strEdition, int intSiteId)
{
User userInfo = null;
string expirationDate = null;
bool isLicenseExpired = false;
// validate license start date
string startDate = null;
bool isSubscriptionNotStart = false;
int intLicenseId = 0;
DateTime dtLogDate = DateTime.Now;
if (string.IsNullOrEmpty(strAcccountNumber))
{
userInfo.LoginFailureCauseId = ErrorHelper.E_ACCOUNT_NUMBER_NOT_NULL;
}
else if (string.IsNullOrEmpty(strEdition))
{
strEdition = "0";
userInfo.LoginFailureCauseId = ErrorHelper.E_EDITION_ID_NOT_NULL;
}
else
{
int intEditionId = Convert.ToInt16(strEdition);
DBModel objDBModel = new DBModel();
DataTable dtLicense = objDBModel.GetLicenseBySiteId(intSiteId, intEditionId);
if (dtLicense.Rows.Count > 0)
{
DataRow licRow = dtLicense.Rows[0];
userInfo = new User();
userInfo.LicenseInfo = AIAHTML5.API.Models.Users.getLicenseDetails(Convert.ToInt32(licRow["Id"]));
if (userInfo.LicenseInfo != null)
{
//05.3 get licenseSubscription details
userInfo.LicenseSubscriptions = AIAHTML5.API.Models.Users.getLicenseSubscriptionDetails( userInfo.LicenseInfo.Id);
//05.4 check the License expiration irespective of either user is active or not because on AIA
//we shows the License expiration message for inactive users too
if (userInfo.LicenseSubscriptions != null)
{
isSubscriptionNotStart = AIAHTML5.API.Models.Users.checkIfLicenseNotStarted(userInfo.LicenseSubscriptions, out startDate);
isLicenseExpired = AIAHTML5.API.Models.Users.checkIfLicenseExpired(userInfo.LicenseSubscriptions, out expirationDate);
}
if (Convert.ToBoolean(licRow["IsActive"]) != true)
{
userInfo.LoginFailureCauseId = ErrorHelper.LICENSE_INACTIVE;
}
else if(isLicenseExpired)
{
userInfo.LoginFailureCauseId = ErrorHelper.LICENSE_EXPIRED;
userInfo.SubscriptionExpirationDate = expirationDate;
}
else if (isSubscriptionNotStart)
{
userInfo.LoginFailureCauseId = ErrorHelper.LICENSE_NOTSTARTED;
userInfo.SubscriptionStartDate = startDate;
}
else
{
//User objUserContext = new User();
userInfo.Id = 0;
userInfo.siteId = intSiteId;
userInfo.isSiteUser = true;
userInfo.FirstName = licRow["LicenseeFirstName"].ToString();
userInfo.LastName = licRow["LicenseeLastName"].ToString();
userInfo.UserTypeId = AIAConstants.SITE_USER;
if (licRow["EmailId"].ToString() != null)
{
userInfo.EmailId = licRow["EmailId"].ToString();
}
else
{
userInfo.EmailId = null;
}
userInfo.AccountNumber = strAcccountNumber;
userInfo.EditionId = (Byte)intEditionId;
userInfo.LicenseTypeId = (byte)licRow["LicenseTypeId"];
userInfo.LicenseId = Convert.ToInt32(licRow["Id"]);
userInfo.LicenseEditionId = Convert.ToInt32(licRow["LicenseEditionId"]);
userInfo.LoginId = "";
userInfo.Modesty = (bool)licRow["IsModesty"];
//Retreive ModestyMode
userInfo.ModestyMode = false;
intLicenseId = Convert.ToInt32(licRow["Id"]);
DataTable dtblEditionForModesty = new DBModel().GetEditionsForModesty(userInfo.LicenseId, 0);
//This table result set should return always have 0 or 1 record if modesty mode is present.
foreach (DataRow drEditionForModesty in dtblEditionForModesty.Rows)
{
if ((bool)drEditionForModesty["IsModesty"])
{
userInfo.Modesty = true;
userInfo.ModestyMode = true;
}
}
string skintone;
string modesty;
User us =GetUserSelectedSettings(userInfo.siteId,true, out skintone, out modesty);
if (us != null)
{
userInfo.userselectedModesty = modesty;
userInfo.userSelectedSkintone = skintone;
userInfo.userLexicon = us.userLexicon;
}
else
{
userInfo.userselectedModesty = null;
userInfo.userSelectedSkintone = null;
userInfo.userLexicon = null;
}
// get edition features details
userInfo.objEditionFeatures = objDBModel.GetEditionFeatures((Byte)intEditionId);
if (intLicenseId > 0)
userInfo.Modules = getModuleListByLicenseId(intLicenseId);
else
userInfo.Modules = getAllModulesList();
// get exported image detail
userInfo.UserExportImageDetail = getExportedImageDetail(userInfo.LicenseId);
// insert login details
objDBModel.InsertSiteLoginDetails(strAcccountNumber, strSiteIP, strEdition);
}
}
else
{
userInfo.LoginFailureCauseId = ErrorHelper.E_EDITION_NOT_LINKED_WITH_SITE;
}
}
}
return userInfo;
}
internal static Boolean IsModestyActiveForThisLicense(int LicenseId, Int16 editionId)
{
DBModel objModel = new DBModel();
bool IsModestyOn = objModel.GetModestyInfo(LicenseId,editionId);
return IsModestyOn;
}
internal static List<string> GetStudentEdition(int LicenseId)
{
DBModel objModel = new DBModel();
List<string> arrayEditionList = objModel.GetStudentEditionByLicenseId(LicenseId);
return arrayEditionList;
}
public static int ValidateLicenseByLoginUrl(string strAccountNumber, int editionId)
{
int intReturn = 0;
DBModel objDBModel = new DBModel();
DataTable dtLicense = objDBModel.GetLoginbyUrl(strAccountNumber, editionId);
if (dtLicense.Rows.Count > 0)
{
foreach (DataRow objLicenseRow in dtLicense.Rows)
{
intReturn = Convert.ToInt32(objLicenseRow["Id"]);
}
}
return intReturn;
}
public static User ValidateLoginByUrl(String strAcccountNumber, int intEditionId, int licId, string slug)
{
User userInfo = null;
string expirationDate = null;
bool isLicenseExpired = false;
// validate license start date
string startDate = null;
bool isSubscriptionNotStart = false;
DateTime dtLogDate = DateTime.Now;
if (string.IsNullOrEmpty(strAcccountNumber))
{
userInfo.LoginFailureCauseId = ErrorHelper.E_ACCOUNT_NUMBER_NOT_NULL;
}
else if (intEditionId == 0)
{
userInfo.LoginFailureCauseId = ErrorHelper.E_EDITION_ID_NOT_NULL;
}
else
{
userInfo = new User();
userInfo.LicenseInfo = AIAHTML5.API.Models.Users.getLicenseDetails(licId);
if (userInfo.LicenseInfo != null)
{
//05.3 get licenseSubscription details
userInfo.LicenseSubscriptions = AIAHTML5.API.Models.Users.getLicenseSubscriptionDetails(userInfo.LicenseInfo.Id);
//05.4 check the License expiration irespective of either user is active or not because on AIA
//we shows the License expiration message for inactive users too
if (userInfo.LicenseSubscriptions != null)
{
isSubscriptionNotStart = AIAHTML5.API.Models.Users.checkIfLicenseNotStarted(userInfo.LicenseSubscriptions, out startDate);
isLicenseExpired = AIAHTML5.API.Models.Users.checkIfLicenseExpired(userInfo.LicenseSubscriptions, out expirationDate);
}
if (userInfo.LicenseInfo.IsActive != true)
{
userInfo.LoginFailureCauseId = ErrorHelper.LICENSE_INACTIVE;
}
else if (isLicenseExpired)
{
userInfo.LoginFailureCauseId = ErrorHelper.LICENSE_EXPIRED;
userInfo.SubscriptionExpirationDate = expirationDate;
}
else if (isSubscriptionNotStart)
{
userInfo.LoginFailureCauseId = ErrorHelper.LICENSE_NOTSTARTED;
userInfo.SubscriptionStartDate = startDate;
}
else
{
//User objUserContext = new User();
userInfo.Id = 0;
userInfo.siteId = 0;
userInfo.isSiteUser = true; //using as site user
userInfo.FirstName = userInfo.LicenseInfo.LicenseeFirstName;
userInfo.LastName = userInfo.LicenseInfo.LicenseeLastName;
userInfo.LicenseId = licId;
userInfo.UserTypeId = AIAConstants.SITE_USER;
userInfo.AccountNumber = strAcccountNumber;
userInfo.EditionId = (Byte)intEditionId;
userInfo.LicenseTypeId = (Byte)userInfo.LicenseInfo.LicenseTypeId;
// below detail not using
userInfo.LicenseEditionId = 0;
userInfo.LoginId = "";
userInfo.Modesty = true;
userInfo.ModestyMode = true;
userInfo.userselectedModesty = null;
userInfo.userSelectedSkintone = null;
userInfo.userLexicon = null;
// get only CA module
userInfo.Modules = getModuleListBySlug(licId,slug);
}
}
else
{
userInfo.LoginFailureCauseId = ErrorHelper.E_EDITION_NOT_LINKED_WITH_SITE;
}
}
return userInfo;
}
}
}