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; namespace AIAHTML5.API.Models { public class Users { internal static dynamic GetUserDetailsForAuthenticatedUser(Newtonsoft.Json.Linq.JObject credentials) { ILog logger = log4net.LogManager.GetLogger((System.Reflection.MethodBase.GetCurrentMethod().DeclaringType)); logger.Debug("inside AuthenticateUser for loginId =" + credentials["username"].ToString() + " and password= " + credentials["password"].ToString()); dynamic userDetails = null; try { User user = DBModel.GetUserDetailsByLoginIdAndPassword(credentials["username"].ToString(), credentials["password"].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; } } catch (Exception e) { logger.Fatal("Exception in AuthenticateUser for loginId =" + credentials["username"].ToString() + " and password= " + credentials["password"].ToString() + "Exception= " + e.Message + ", STACKTRACE: " + e.StackTrace); //string errorMessage = AIAConstants.ERROR_IN_FECTHING_DETAILS; //string error = "Message: " + e.Message + ", STACKTRACE: " + e.StackTrace; //userDetails = errorMessage; ArrayList supportMailList = UserUtility.GetSupportMailList(); string mailSubject = "SQL Exception intimation mail"; string mailBody = "MESSAGE: " + e.Message + ", STACKTRACE: " + e.StackTrace; UserUtility.SendEmail(credentials, supportMailList, "", mailSubject, mailBody); userDetails = AIAConstants.SQL_CONNECTION_ERROR; } return userDetails; } internal static dynamic GetUserByEmail(Newtonsoft.Json.Linq.JObject userInfo) { ILog logger = log4net.LogManager.GetLogger((System.Reflection.MethodBase.GetCurrentMethod().DeclaringType)); logger.Debug(" inside GetUserByEmail for emailId = " + userInfo["emailId"]); //var client = new MongoClient(); //try //{ // var db = client.GetDatabase(Settings.Default.database); // var collection = db.GetCollection("Users"); // FilterDefinition filterCondition = Builders.Filter.Eq("emailId", userInfo["emailId"].ToString().ToLower()); // dynamic userDetails = collection.Find(Builders.Filter.And(filterCondition)).SingleOrDefault(); // if (userDetails != null) // { // logger.Debug("userDetails= " + userDetails.loginId); // return userDetails; // } // else // { // logger.Debug("user not found"); // return AIAConstants.USER_NOT_FOUND; // } //} //catch (Exception e) //{ // logger.Fatal("Exception= " + e.Message+", stacktrace = "+e.StackTrace); // return AIAConstants.ERROR_IN_FECTHING_DETAILS; //} try { 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; } } catch (Exception ex) { logger.Fatal("Exception in Gettting UserDetailsByEmailId for EmailId =" + userInfo["emailId"].ToString() + " Exception= " + ex.Message + ", STACKTRACE: " + ex.StackTrace); //string errorMessage = AIAConstants.ERROR_IN_FECTHING_DETAILS; //return errorMessage; ArrayList supportMailList = UserUtility.GetSupportMailList(); string mailSubject = "SQL Exception intimation mail"; string mailBody = "MESSAGE: " + ex.Message + ", STACKTRACE: " + ex.StackTrace; UserUtility.SendEmail(userInfo, supportMailList, "", mailSubject, mailBody); return AIAConstants.SQL_CONNECTION_ERROR; } } internal static dynamic UpdatePassword(Newtonsoft.Json.Linq.JObject userInfo, string sLoginId, string sEmailId) { ILog logger = log4net.LogManager.GetLogger((System.Reflection.MethodBase.GetCurrentMethod().DeclaringType)); //var client = new MongoClient(); try { //var db = client.GetDatabase(Settings.Default.database); //var collection = db.GetCollection("Users"); //var filter = Builders.Filter.Eq("emailId", userInfo["emailId"].ToString()); //var update = Builders.Update.Set("password", userInfo["newPassword"].ToString()).CurrentDate("modifiedDate"); //var result = collection.UpdateOne(filter, update); int result = DBModel.UpdateUserPassword(userInfo, sLoginId, sEmailId); if (result > 0) return result; else return AIAConstants.USER_NOT_FOUND; } catch (Exception e) { logger.Fatal("Exception in UdatePassword with user details = " + userInfo + ", LoginId:" + sLoginId + ", EmailId: "+ sEmailId + "
MESSAGE: " + e.Message + ", STACKTRACE: " + e.StackTrace); //return AIAConstants.ERROR_IN_FECTHING_DETAILS; ArrayList supportMailList = UserUtility.GetSupportMailList(); string mailSubject = "SQL Exception intimation mail"; string mailBody = "MESSAGE: " + e.Message + ", STACKTRACE: " + e.StackTrace; UserUtility.SendEmail(userInfo, supportMailList, "", mailSubject, mailBody); return AIAConstants.SQL_CONNECTION_ERROR; } } internal static dynamic UpdateLicenseTerm(string accNumber) { ILog logger = log4net.LogManager.GetLogger((System.Reflection.MethodBase.GetCurrentMethod().DeclaringType)); logger.Debug(" inside UpdateLicenseTerm for AccountNumber = " + accNumber); Newtonsoft.Json.Linq.JObject userInfo = new Newtonsoft.Json.Linq.JObject(); userInfo.Add("accountNumber", accNumber); dynamic result; try { result = DBModel.UpdateLicenseTermStatus(accNumber); } catch (Exception ex) { logger.Fatal("Exception in UpdateLicenseTerm for AccountNumber =" + accNumber + " Exception= " + ex.Message + ", STACKTRACE: " + ex.StackTrace); ArrayList supportMailList = UserUtility.GetSupportMailList(); string mailSubject = "SQL Exception intimation mail"; string mailBody = "MESSAGE: " + ex.Message + ", STACKTRACE: " + ex.StackTrace; UserUtility.SendEmail(userInfo, supportMailList, "", mailSubject, mailBody); result = AIAConstants.SQL_CONNECTION_ERROR; } return result; } internal static bool IsUserAuthenticated(Newtonsoft.Json.Linq.JObject credentials) { bool isAuthenticatedUser = DBModel.ValidateUserAuthenticity(credentials["username"].ToString(), credentials["password"].ToString()); return isAuthenticatedUser; } internal static User getLoggedinUserDetail(Newtonsoft.Json.Linq.JObject credentials) { User user = DBModel.GetUserDetailsByLoginIdAndPassword(credentials["username"].ToString(), credentials["password"].ToString()); return user; } internal static User getUserDetails(Newtonsoft.Json.Linq.JObject credentials) { User user = DBModel.GetUserDetailsByLoginIdAndPassword(credentials["username"].ToString(), credentials["password"].ToString()); return user; } internal static int getLicenseIdForThisUser(int userId, string key) { ArrayList arrLicense = new ArrayList(); DBModel objModel = new DBModel(); int licenseId = 0 , editionId = 0, result = 0; Hashtable licenseEditionHash = objModel.GetUserLicenseDetailByUserId(userId); foreach (DictionaryEntry de in licenseEditionHash) { if (de.Key.ToString() == AIAConstants.LICENSE_KEY_ID) licenseId = Convert.ToInt32(de.Value); if (de.Key.ToString() == AIAConstants.EDITION_KEY_ID) editionId = Convert.ToInt32(de.Value); } if (string.Equals(key.ToUpper(), AIAConstants.KEY_LICENSE)) result = licenseId; if (string.Equals(key.ToUpper(), AIAConstants.KEY_EDITION)) result = editionId; return result; } internal static int insertLoginDetails(int 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 string SubscriptionExpirationDateString(int licenseId) { DBModel objModel = new DBModel(); LicenseSubscriptionDetails licenseSubscription = objModel.GetLicenseSubscriptionDetailsByLicenseId(licenseId); string subscritptionExpirationDateString = null; if (licenseSubscription != null) { DateTime? subscriptionValidThrough = licenseSubscription.SubscriptionValidThrough; if (subscriptionValidThrough != null && subscriptionValidThrough.Value.Date >= DateTime.Now.Date) { subscritptionExpirationDateString = null; } else { subscritptionExpirationDateString = licenseSubscription.SubscriptionValidThrough.Value.Date.ToString("MM/dd/yyyy").ToString(); } } return subscritptionExpirationDateString; } internal static ArrayList getModuleListByLicenseId(int licenseId) { DBModel objModel = new DBModel(); ArrayList licensedModulesList = objModel.GetUserModulesByLicenseId(licenseId); return licensedModulesList; } internal static int deletePastWrongAttempts(int userId) { int result = 0; DBModel objModel = new DBModel(); result = objModel.DeleteIncorrectLoginAttempts(userId); return result; } internal static int insertWrongAttemptofUser(int userId) { int result = 0; DBModel objModel = new DBModel(); result = objModel.InsertIncorrectLoginAttempts(userId); return result; } internal static int checkNoOfWrongAttempts(int userId) { int result = 0; DBModel objModel = new DBModel(); result = objModel.GetIncorrectLoginAttempts(userId); return result; } internal static int saveWrongAttemptofUser(int userId) { int result = 0; DBModel objModel = new DBModel(); result = objModel.UpdateIncorrectLoginAttempts(userId); return result; } internal static bool isLicenseActive(int licenseId) { DBModel objModel = new DBModel(); License userLicense = objModel.GetLicenseDetailsByLicenseId(licenseId); if (userLicense.IsActive) return true; else return false; } internal static License getLicenseDetails(int licenseId) { DBModel objModel = new DBModel(); License userLicense = objModel.GetLicenseDetailsByLicenseId(licenseId); return userLicense; } internal static LicenseSubscriptionDetails getLicenseSubscriptionDetails(int licenseId) { DBModel objModel = new DBModel(); LicenseSubscriptionDetails userSubscriptionDetail = objModel.GetLicenseSubscriptionDetailsByLicenseId(licenseId); return userSubscriptionDetail; } internal static bool isCredentialCorrect(Newtonsoft.Json.Linq.JObject credentials, User user, string key) { bool result = false; if (user != null) { if (string.Equals(key.ToUpper(), AIAConstants.KEY_LOGINID)) { if (string.Equals(credentials["username"].ToString().ToUpper(), user.LoginId.ToUpper())) result = true; else result = false; } if (string.Equals(key.ToUpper(), AIAConstants.KEY_PASSWORD)) { if (string.Equals(credentials["password"].ToString(), user.Password)) result = true; else result = false; } } return result; } internal static int insertUserLoginLog(string accountNumber, Int16 failureId, string referalUrl, string edition, string httpReferer) { int result = 0; DBModel objModel = new DBModel(); result = objModel.InsertUserLoginLog(accountNumber, failureId, null, edition, null); return result; } internal static ArrayList getTermsOfServiceText() { ArrayList arrTermsOfService = new ArrayList(); DBModel objModel = new DBModel(); arrTermsOfService = DBModel.GetTermsOfServiceText(); return arrTermsOfService; } internal static ArrayList getAllModulesList() { DBModel objModel = new DBModel(); ArrayList modulesList = objModel.GetUserModules(); return modulesList; } } }