UserUtility.cs 17.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
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 System.Net.Mail;
using AIAHTML5.API.Utility;
using System.Text;
using System.IO;
using System.Net.Mime;
using System.Configuration;
using System.Collections;
using System.Data;
using System.Reflection;
using Newtonsoft.Json.Linq;

namespace AIAHTML5.API.Models
{
    public class UserUtility
    {

        public static bool SendEmail(dynamic UserDetails, bool isMailForForgotPassword, bool unblockUser = false)
        {
             ILog logger = log4net.LogManager.GetLogger((System.Reflection.MethodBase.GetCurrentMethod().DeclaringType));
                logger.Debug("inside SendEmail in  for isMailForForgotPassword =" + isMailForForgotPassword);

             string mailSubject = string.Empty;
             string userEmailId = string.Empty;
            try
            {
                List<LinkedResource> lstLinkedResource = new List<LinkedResource>();
                EmailUtility emailUtility = new EmailUtility();
                List<string> lstToAddress = new List<string>();
                List<string> lstBccAddress = new List<string>();

                string emailText = string.Empty;
                string userId = string.Empty;
               
                string userName = string.Empty;
                string fName = string.Empty;
                string lName = string.Empty;
                string site_url = Convert.ToString(ConfigurationManager.AppSettings["Site_URL"]);


                if (UserDetails.LoginId != "")
                    userId = UserDetails.LoginId.ToString();
                if (UserDetails.EmailId != "")
                    userEmailId = UserDetails.EmailId.ToString();
                if (UserDetails.FirstName != "")
                    fName = UserDetails.FirstName.ToString();
                if (UserDetails.LastName != "")
                    lName = UserDetails.LastName.ToString();

                string fullName = fName + " " + lName;

                string logoPath = HttpContext.Current.Server.MapPath(Convert.ToString(ConfigurationManager.AppSettings["LogoPath"]));

                string templatePath = string.Empty;
                string resetPasswordLink = string.Empty;

                if (isMailForForgotPassword)
                {
                    if (unblockUser)
                    {
                        templatePath = Convert.ToString(ConfigurationManager.AppSettings["UnblockUserEmailTemplate"]);
                        resetPasswordLink = site_url + "?unb:" + HttpUtility.UrlEncode(userEmailId);
                    }
                    else
                    {
                        templatePath = Convert.ToString(ConfigurationManager.AppSettings["ForgotPasswordEmailTemplate"]);
                        resetPasswordLink = site_url + "?em:" + HttpUtility.UrlEncode(userEmailId);
                    }
                }
                else
                    templatePath = Convert.ToString(ConfigurationManager.AppSettings["ForgotUserIdEmailTemplate"]);

                logger.Debug("inside SendEmail for templatePath= " + templatePath + ", userId= " + userId + ", userEmailId= " + userEmailId + ",fullName= " + fullName + ",resetPasswordLink= " + resetPasswordLink);
                string mailBody = UserUtility.GetMailBodyTextFromTemplate(templatePath, userId, userEmailId, fullName, resetPasswordLink);

                lstToAddress.Add(userEmailId);

                emailText = mailBody;

                logger.Debug("emailText= " + emailText);
                // for embedding images in email
                if (emailText.Contains("<img"))
                {
                    LinkedResource linkedLogo = new LinkedResource(logoPath, MediaTypeNames.Image.Jpeg);
                    linkedLogo.ContentId = "AIA_Logo_Image";
                    linkedLogo.TransferEncoding = TransferEncoding.Base64;
                    emailText = emailText.Replace("{logoPath}", "cid:" + linkedLogo.ContentId);
                    lstLinkedResource.Add(linkedLogo);
                }

                emailUtility.sAlternateView = AlternateView.CreateAlternateViewFromString(emailText, null, "text/html");
                foreach (var sItem in lstLinkedResource)
                {
                    emailUtility.sAlternateView.LinkedResources.Add(sItem);
                }

               
                if (!isMailForForgotPassword)
                    mailSubject = AIAConstants.FORGOT_USERID_EMAIL_SUBJECT;
                else
                {
                    if (unblockUser)
                        mailSubject = AIAConstants.UNBLOCK_USER_EMAIL_SUBJECT;
                    else
                        mailSubject = AIAConstants.FORGOT_PASSWORD_EMAIL_SUBJECT;
                }

                emailUtility.sHostName = Convert.ToString(ConfigurationManager.AppSettings["HostAddress"]);
                emailUtility.sFromAddress = Convert.ToString(ConfigurationManager.AppSettings["SenderEmailAddress"]);
                emailUtility.bIsBodyHtml = true;
                emailUtility.bEnableSsl = false;
                emailUtility.sSubject = mailSubject + userEmailId;
                emailUtility.iPort = 25;
                emailUtility.sToAddresses = lstToAddress;
                emailUtility.sBccAddresses = lstBccAddress;

                emailUtility.SendSmtpEmail();
                return true;
            }
            catch (Exception e)
            {
                logger.Fatal("Exception in SendEmail for mailSubject + userEmailId= " + mailSubject + userEmailId + "..MSG= " + e.Message + "STACKTRACE= " + e.StackTrace);

                return false;
            }
            
        }

        protected static string GetMailBodyTextFromTemplate(string templatePath, string userId, string userEmailId, string fullName, string resetPasswordUrl)
        {
            ILog logger = log4net.LogManager.GetLogger((System.Reflection.MethodBase.GetCurrentMethod().DeclaringType));
            logger.Debug("Inside GetMailBodyTextFromTemplate for templatePath= " + templatePath + ", userId= " + userId + ", userEmailId= " + userEmailId + ",fullName= " + fullName + ",resetPasswordLink= " + resetPasswordUrl);

            string fileToRead = string.Empty;
            string emailBody = string.Empty;
          
                fileToRead = HttpContext.Current.Server.MapPath(templatePath);

                using (StreamReader reader = new StreamReader(fileToRead))
                {
                    emailBody = reader.ReadToEnd();
                }

                if (!string.IsNullOrEmpty(userId))
                    emailBody = emailBody.Replace("{loginId}", userId);
                if (!string.IsNullOrEmpty(userEmailId))
                    emailBody = emailBody.Replace("{emailId}", userEmailId);
                if (!string.IsNullOrEmpty(fullName))
                    emailBody = emailBody.Replace("{userFullName}", fullName);
                if (!string.IsNullOrEmpty(resetPasswordUrl))
                    emailBody = emailBody.Replace("{resetPasswordLink}", resetPasswordUrl);
           
            return emailBody;
        }

        public static bool SendAdminRequestEmail(Newtonsoft.Json.Linq.JObject userInfo)
        {
            ILog logger = log4net.LogManager.GetLogger((System.Reflection.MethodBase.GetCurrentMethod().DeclaringType));
            logger.Debug("Inside SendAdminRequestEmail for email =" + userInfo["emailId"]);

            try
            {
                EmailUtility emailUtility = new EmailUtility();
                List<string> lstToAddress = new List<string>();
                List<string> lstBccAddress = new List<string>();

                string userEmailId = string.Empty;
                string fullName = string.Empty;
                string emailMessage = string.Empty;

                string[] mailToArr = (ConfigurationManager.AppSettings["AdminSupport"]).Split(',');
                if (mailToArr.Length > 0)
                {
                    for (int i = 0; i < mailToArr.Length; i++)
                    {
                        lstToAddress.Add(mailToArr[i].ToString());
                    }
                }

                fullName = userInfo["firstName"].ToString() + " " + userInfo["lastName"].ToString();
                userEmailId = userInfo["emailId"].ToString();
                emailMessage = userInfo["userMessage"].ToString();

                lstToAddress.Add(userEmailId);

                emailMessage = emailMessage.Replace("\n", "<br/>");

                emailMessage += "<br/><br/>";

                string mailSubject = "Admin Support request initiated for:";

                emailUtility.sHostName = Convert.ToString(ConfigurationManager.AppSettings["HostAddress"]);
                emailUtility.sFromAddress = Convert.ToString(ConfigurationManager.AppSettings["SenderEmailAddress"]);
                emailUtility.bIsBodyHtml = true;
                emailUtility.bEnableSsl = false;
                emailUtility.sSubject = mailSubject + " " + userEmailId;
                emailUtility.sBodyText = emailMessage;
                emailUtility.iPort = 25;
                emailUtility.sToAddresses = lstToAddress;
                emailUtility.sBccAddresses = lstBccAddress;

                emailUtility.SendSmtpEmail();
                return true;
            }
            catch (Exception ex)
            {
                logger.Fatal("exception in SendAdminRequestEmail for email =" + userInfo["emailId"] + ". msg= " + ex.Message + ", stacktrace= " + ex.StackTrace);
                return false;
            }
        }

        public static bool SendEmailForException(int userid, ArrayList mailToList, string sender, string mailSubject = "", string mailBody = "", bool isMailForClentSite=false, JObject info=null)
        {
            ILog logger = log4net.LogManager.GetLogger((System.Reflection.MethodBase.GetCurrentMethod().DeclaringType));
           // logger.Debug("Inside SendEmail with userid =" + userid);

            try
            {
                EmailUtility emailUtility = new EmailUtility();
                List<string> lstToAddress = new List<string>();
                List<string> lstBccAddress = new List<string>();

                string emailMessage = string.Empty;
                string senderEmailId = string.Empty;

                foreach (string email in mailToList)
                {
                    lstToAddress.Add(email);
                }

                if (isMailForClentSite && info!=null)
                {
                    emailMessage = "Unable to process request for siteUrl =" + info["siteIP"].ToString() + " and siteIP= " + info["siteIP"].ToString() + " & accountNumber = " + info["accountNumber"].ToString() + " &edition = " + info["edition"].ToString() ;
                }
                else
                {
                    emailMessage = "Unable to process request for userid: " + userid;
                }
               

                if (string.IsNullOrEmpty(sender))
                    senderEmailId = Convert.ToString(ConfigurationManager.AppSettings["SenderEmailAddress"]);
                else
                    senderEmailId = sender;

                emailMessage += mailBody;

                emailMessage = emailMessage.Replace("\n", "<br/>");

                emailMessage += "<br/><br/>";

                emailUtility.sHostName = Convert.ToString(ConfigurationManager.AppSettings["HostAddress"]);
                emailUtility.sFromAddress = senderEmailId;
                emailUtility.bIsBodyHtml = true;
                emailUtility.bEnableSsl = false;
                emailUtility.sSubject = mailSubject;
                emailUtility.sBodyText = emailMessage;
                emailUtility.iPort = 25;
                emailUtility.sToAddresses = lstToAddress;
                emailUtility.sBccAddresses = lstBccAddress;

                emailUtility.SendSmtpEmail();
                return true;
            }
            catch (Exception ex)
            { 
                if (isMailForClentSite){
                                logger.Fatal("exception in SendEmail for siteUrl =" + info["siteIP"].ToString()+ ". msg= " + ex.Message + ", stacktrace= " + ex.StackTrace);

                }
            
            else
                logger.Fatal("exception in SendEmail for userid"+userid+ ". msg= " + ex.Message + ", stacktrace= " + ex.StackTrace);
                return false;
            }
        }

        public static bool SendEmail(Newtonsoft.Json.Linq.JObject userInfo, ArrayList mailToList, string sender, string mailSubject = "", string mailBody = "")
        {
            ILog logger = log4net.LogManager.GetLogger((System.Reflection.MethodBase.GetCurrentMethod().DeclaringType));
            logger.Debug("Inside SendEmail with UserInfo =" + userInfo);

            try
            {
                EmailUtility emailUtility = new EmailUtility();
                List<string> lstToAddress = new List<string>();
                List<string> lstBccAddress = new List<string>();

                string emailMessage = string.Empty;
                string senderEmailId = string.Empty;

                foreach (string email in mailToList)
                {
                    lstToAddress.Add(email);
                }

                emailMessage = "Unable to process request for ";

                if (UserUtility.CheckIfPropertyExists(userInfo, "username") && !string.IsNullOrEmpty(userInfo["username"].ToString()))
                    emailMessage += "username: <b>" + userInfo["username"].ToString() + "</b>";
                if (UserUtility.CheckIfPropertyExists(userInfo, "password") && !string.IsNullOrEmpty(userInfo["password"].ToString()))
                    emailMessage += "& password: <b>" + userInfo["password"].ToString() + "</b><br/><br/>";
                if (UserUtility.CheckIfPropertyExists(userInfo, "emailId") && !string.IsNullOrEmpty(userInfo["emailId"].ToString()))
                    emailMessage += "emailId: <b>" + userInfo["emailId"].ToString() + "</b><br/><br/>";
                if (UserUtility.CheckIfPropertyExists(userInfo, "accountNumber") && !string.IsNullOrEmpty(userInfo["accountNumber"].ToString()))
                    emailMessage += "accountNumber: <b>" + userInfo["accountNumber"].ToString() + "</b><br/><br/>";

                if (string.IsNullOrEmpty(sender))
                    senderEmailId = Convert.ToString(ConfigurationManager.AppSettings["SenderEmailAddress"]);
                else
                    senderEmailId = sender;

                emailMessage += mailBody;

                emailMessage = emailMessage.Replace("\n", "<br/>");

                emailMessage += "<br/><br/>";

                emailUtility.sHostName = Convert.ToString(ConfigurationManager.AppSettings["HostAddress"]);
                emailUtility.sFromAddress = senderEmailId;
                emailUtility.bIsBodyHtml = true;
                emailUtility.bEnableSsl = false;
                emailUtility.sSubject = mailSubject;
                emailUtility.sBodyText = emailMessage;
                emailUtility.iPort = 25;
                emailUtility.sToAddresses = lstToAddress;
                emailUtility.sBccAddresses = lstBccAddress;

                emailUtility.SendSmtpEmail();
                return true;
            }
            catch (Exception ex)
            {
                logger.Fatal("exception in SendEmail for username: " + userInfo["username"].ToString() + " & password: " + userInfo["password"].ToString() + " email =" + userInfo["emailId"] + ". msg= " + ex.Message + ", stacktrace= " + ex.StackTrace);
                return false;
            }
        }

        public static ArrayList GetSupportMailList()
        {
            ArrayList supoortMailList = new ArrayList();
            string[] mailToArr = (ConfigurationManager.AppSettings["AdminSupport"]).Split(',');
            if (mailToArr.Length > 0)
            {
                for (int i = 0; i < mailToArr.Length; i++)
                {
                    supoortMailList.Add(mailToArr[i].ToString());
                }
            }
            return supoortMailList;
        }

        protected static bool CheckIfPropertyExists(dynamic dynamicObject, string propertyName)
        {
            var res = dynamicObject[propertyName];
            if (res != null)
                return true;
            else
                return false;
        }

        public DataTable ToDataTable<T>(List<T> items)
        {

            DataTable dataTable = new DataTable(typeof(T).Name);

            //Get all the properties

            PropertyInfo[] Props = typeof(T).GetProperties(BindingFlags.Public | BindingFlags.Instance);

            foreach (PropertyInfo prop in Props)
            {

                //Setting column names as Property names

                dataTable.Columns.Add(prop.Name);

            }

            foreach (T item in items)
            {

                var values = new object[Props.Length];

                for (int i = 0; i < Props.Length; i++)
                {

                    //inserting property values to datatable rows

                    values[i] = Props[i].GetValue(item, null);

                }

                dataTable.Rows.Add(values);

            }

            //put a breakpoint here and check datatable

            return dataTable;

        }
    }
}