-
Notifications
You must be signed in to change notification settings - Fork 0
/
Service1.cs
562 lines (360 loc) · 20.7 KB
/
Service1.cs
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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Linq;
using System.ServiceProcess;
using System.Text;
using System.Threading.Tasks;
using System.IO;
using System.Timers;
using System.Drawing;
using ActiveUp.Net.Mail;
//using GmailReadImapEmail;
using Message = ActiveUp.Net.Mail.Message;
using System.Data.SqlClient;
using System.Configuration;
using System.Text.RegularExpressions;
using System.Net.Mail;
using AKIMAPService;
namespace AKImapService
{
public partial class Service1 : ServiceBase
{
Timer timer = new Timer();
public Service1()
{
InitializeComponent();
}
string strSubjectFirstPart, strSubjectSecondPart;
public string Between(string STR, string FirstString, string LastString)
{
string FinalString;
try
{
int Pos1 = STR.IndexOf(FirstString) + FirstString.Length - 1;
int Pos2 = STR.IndexOf(LastString);
FinalString = STR.Substring(Pos1, Pos2 - Pos1);
}
catch (Exception ee)
{
string strerr = ee.Message.ToString();
FinalString = "NoMatchFound";
}
return FinalString;
}
string strResult, strError;
public void readIMAPEmail()
{
string strAttchmentPath = ConfigurationManager.AppSettings["IncomingAttachmentPath"];
strSubjectFirstPart = ConfigurationManager.AppSettings["SubjectFirstPart"];
strSubjectSecondPart = ConfigurationManager.AppSettings["SubjectSecondPart"];
string strServerAddress, strIncomingUsername, strIncomingEmailPassword, strMailBoxID;
int strPort = 993;
string connectionString = ConfigurationManager.AppSettings["ConnectionString"];
string strQuery = "select mbid, mbEmailAddress , mbIncomingServerAddress , mbIncomingUsername , mbIncomingPassword ";
strQuery = strQuery + " from MainBoxTable where mbIncomingEnabled =1 and mbIsDeleted=0";
SqlConnection sqlConnection = new SqlConnection(connectionString);
SqlCommand sqlCommand = new SqlCommand();
sqlConnection.Open();
sqlCommand = new SqlCommand(strQuery, sqlConnection);
SqlDataReader reader = sqlCommand.ExecuteReader();
while (reader.Read())
{
strServerAddress = reader["mbIncomingServerAddress"].ToString();
strMailBoxID = reader["mbid"].ToString();
strIncomingUsername = reader["mbIncomingUsername"].ToString();
strIncomingEmailPassword = reader["mbIncomingPassword"].ToString();
//strIncomingUsername = "[email protected]";
//strIncomingEmailPassword = "nzdmdrnpcgsycwcv";
//strIncomingUsername = "[email protected]";
//strIncomingEmailPassword = "gswcirtxeulwcjyj";
//strServerAddress = "imap.gmail.com";
var mailRepository = new MailRepository(
strServerAddress,
strPort,
true,
strIncomingUsername,
strIncomingEmailPassword
);
var flags = new FlagCollection { "Seen" };
var emailList = mailRepository.GetUnreadMails("inbox");
string content = "";
string strFrom, strCC, strSubject, strBody, strHTMLBody, strAttachments, strMessageID, strSentDate, strReceivedDate, strDisplayName;
//@incID uniqueidentifier,
//@inemlID uniqueidentifier,
Guid strIncID;
Guid strIncidentEmailID;
Guid inEmailID;
string strDateString, strDate, strYear, strMonth, strDay, strAttachmentName = "";
try // FIRST TRY BEGINS
{
foreach (Message email in emailList) // EMAIL LIST FOR LOOP
{
content += " " + " " + email.From + " " + email.Subject + " " + " " + email.BodyText.Text + " " + Environment.NewLine + Environment.NewLine;
//if (email.Attachments.Count<1)
//{
// continue;
//}
strFrom = ExtractEmails(email.From.ToString());
strCC = email.Cc.ToString();
strSubject = email.Subject.ToString();
strHTMLBody = email.BodyHtml.Text.ToString();
strBody = email.BodyText.Text.ToString();
//strBody = email.BodyHtml.Text.ToString(); // Added for testing.. to be removed
strAttachments = email.Attachments.ToString();
strMessageID = email.MessageId.ToString();
strSentDate = email.Date.ToString();
strReceivedDate = email.ReceivedDate.ToString();
strDisplayName = email.From.Name.ToString();
strDate = email.Date.ToString("yyyy'-'MM'-'dd'T'HH':'mm':'ss'.'fff'Z'");
strIncID = Guid.NewGuid();
strIncidentEmailID = Guid.NewGuid();
inEmailID = new Guid(strMailBoxID);
string strFilePath = strAttchmentPath + "\\" + strMessageID; // Your code goes here
try
{
System.IO.Directory.CreateDirectory(strFilePath);
}
catch (Exception ex)
{
strError = ex.Message.ToString();
}
strResult = Between(strSubject, strSubjectFirstPart, strSubjectSecondPart);
string var = strResult;
string mystr = Regex.Replace(var, @"\d", "");
string mynumber = Regex.Replace(var, @"\D", "");
strResult = mynumber;
string strIncidentNumber = "INCNUMBER";
if (strResult != "NoMatchFound")
{
try
{
SqlConnection sqlConnectionChkInc = new SqlConnection(connectionString);
SqlCommand sqlCommandChkInc = new SqlCommand();
sqlConnectionChkInc.Open();
string strQueryChkIncident = "select col1, col2 from ** where col='" + strResult + "'";
sqlCommandChkInc = new SqlCommand(strQueryChkIncident, sqlConnectionChkInc);
SqlDataReader readerChkInc = sqlCommandChkInc.ExecuteReader();
while (readerChkInc.Read())
{
strIncID = Guid.Parse(readerChkInc["incID"].ToString());
strIncidentNumber = readerChkInc["IncNumber"].ToString();
}
readerChkInc.Close();
sqlConnectionChkInc.Close();
}
catch (Exception exc)
{
string err = exc.Message.ToString();
}
}
string strSQLProcedure = "";
if (strIncidentNumber == strResult)
{
strSQLProcedure = "SPUpdate"; // "SPUpdateIncFrmEmail";
}
else
{
strSQLProcedure = "SPInsertTo";
}
connectionString = ConfigurationManager.AppSettings["ConnectionString"];
using (SqlConnection con = new SqlConnection(connectionString))
{
using (SqlCommand cmd = new SqlCommand(strSQLProcedure, con))
{
cmd.CommandType = CommandType.StoredProcedure;
cmd.Parameters.AddWithValue("@**", strIncID);
cmd.Parameters.AddWithValue("@**", strIncidentEmailID);
cmd.Parameters.AddWithValue("@**", inEmailID);
cmd.Parameters.AddWithValue("@**", strSubject);
cmd.Parameters.AddWithValue("@**", 1); //@inemlIsBodyHTML bit,
cmd.Parameters.AddWithValue("@**", strHTMLBody); //@inemlHTMLBody nvarchar(max),
cmd.Parameters.AddWithValue("@**", strBody);//@inemlTextBody nvarchar(max),
strDateString = strSentDate;
cmd.Parameters.AddWithValue("@**", strDate); //@inemlDateAdded datetime,
cmd.Parameters.AddWithValue("@**", "Normal");//@inemlImportance nvarchar(50),
cmd.Parameters.AddWithValue("@**", strMessageID); //@inemlMessageID nvarchar(250),
cmd.Parameters.AddWithValue("@**", strFrom);//@inemlFromAddress nvarchar(320),
cmd.Parameters.AddWithValue("@**", strDisplayName); //@inemlFromDisplayName nvarchar(260),
cmd.Parameters.AddWithValue("@**", 0); //@inemlBlockedBySizeLimit bit,
cmd.Parameters.AddWithValue("@**", 0);//@inemlBlockedByBlacklist bit,
cmd.Parameters.AddWithValue("@**", 0); //@inemlBlockedBySpam bit,
cmd.Parameters.AddWithValue("@**", 0);//@inemlFailedDueToError bit,
cmd.Parameters.AddWithValue("@**", 0);//@inemlFailedDueToErrorBeforeDeletion bit,
cmd.Parameters.AddWithValue("@**", 0);//@inemlIsDeleted bit
cmd.Parameters.AddWithValue("@**", strFilePath + "\\email.eml");
con.Open();
cmd.ExecuteNonQuery();
// con.Close();
}
}
string strfile = "";
string strEmbeddedFilename, strEmbeddedContentID, strEmbeddedFileFullPath = "";
//create a folder inside the path with messageid
//NORMAL ATTACHMENTS
if (email.Attachments.Count > 0)
{
email.Attachments.StoreToFolder(strFilePath);
for (int i = 0; i < email.Attachments.Count; i++)
{
// strEmbeddedContentID = email.Attachments[i].ContentId.ToString();
using (SqlConnection con = new SqlConnection(connectionString))
{
using (SqlCommand cmd = new SqlCommand("SPInsertInToAttachments", con))
{
cmd.CommandType = CommandType.StoredProcedure;
cmd.Parameters.AddWithValue("@**", strIncID); ////// @incID uniqueidentifier,
cmd.Parameters.AddWithValue("@**", strIncidentEmailID);
cmd.Parameters.AddWithValue("@**", strFilePath + "\\" + email.Attachments[i].Filename.ToString()); //////@attDiskPath varchar(500),
cmd.Parameters.AddWithValue("@**", email.Attachments[i].Filename.ToString()); //////@attFileName varchar(150),
cmd.Parameters.AddWithValue("@**", "");
cmd.Parameters.AddWithValue("@**", "File added by incoming email from " + strFrom); //////@attNotes varchar(250),
cmd.Parameters.AddWithValue("@**", email.Attachments[i].Size); //////@attSize bigint
cmd.Parameters.AddWithValue("@**", 0);
con.Open();
cmd.ExecuteNonQuery();
}
}
}
}
string strTrimmedContentID;
string strCommandText = "";
//Inline attachments
try
{
for (int i = 0; i < email.LeafMimeParts.Count; i++)
{
if (email.LeafMimeParts[i].IsText == false)
{
strEmbeddedFilename = email.LeafMimeParts[i].ContentName.ToString();
strEmbeddedFilename = email.LeafMimeParts[i].Filename.ToString();
strEmbeddedFileFullPath = strFilePath + "\\" + strEmbeddedFilename;
strEmbeddedContentID = email.LeafMimeParts[i].ContentId.ToString();
strTrimmedContentID = email.LeafMimeParts[i].ContentId.Replace('<', ' ');
strTrimmedContentID = strTrimmedContentID.Replace('>', ' ');
strEmbeddedContentID = strTrimmedContentID.Trim();
email.LeafMimeParts[i].StoreToFile(strEmbeddedFileFullPath);
if (strEmbeddedContentID.Length > 0)
{
strCommandText = "SPInsertEmbeddedInToAttachments";
}
else
{
strCommandText = "SPInsertInToAttachments";
}
try
{
using (SqlConnection con = new SqlConnection(connectionString))
{
//SPInsertEmbeddedInToAttachments
using (SqlCommand cmd = new SqlCommand(strCommandText, con))
// using (SqlCommand cmd = new SqlCommand("SPInsertInToAttachments", con))
{
cmd.CommandType = CommandType.StoredProcedure;
cmd.Parameters.AddWithValue("@**", strIncID); ////// @incID uniqueidentifier,
cmd.Parameters.AddWithValue("@**", strIncidentEmailID);
cmd.Parameters.AddWithValue("@**", strEmbeddedFileFullPath); //////@attDiskPath varchar(500),
cmd.Parameters.AddWithValue("@**", strEmbeddedFilename); //////@attFileName varchar(150),
cmd.Parameters.AddWithValue("@**", strEmbeddedContentID);
cmd.Parameters.AddWithValue("@**", "File added by incoming email from " + strFrom); //////@attNotes varchar(250),
cmd.Parameters.AddWithValue("@**", email.LeafMimeParts[i].Size); //////@attSize bigint
cmd.Parameters.AddWithValue("@**", 1);
con.Open();
cmd.ExecuteNonQuery();
}
}
}
catch (Exception exc)
{
string err = exc.Message.ToString();
}
}
}
}
catch (Exception exc)
{
string err = exc.Message.ToString();
}
mailRepository.Mails.RemoveFlagsSilent(email.Id, flags); //Commented on 14th June 2022
mailRepository.Mails.SetFlagsSilent(email.Id, flags);
mailRepository.Mails.DeleteMessage(email.Id, true);
}//END FOR EMAIL LIST FOR LOOP
}//END FIRST TRY
catch (Exception ex)
{
strError = ex.Message.ToString();
}
var allEmailList = mailRepository.GetAllMails("Inbox");
foreach (Message email in allEmailList) // EMAIL LIST FOR LOOP
{
mailRepository.Mails.DeleteMessage(email.Id, true);
}
}// END WHILE LOOP
reader.Close();
sqlConnection.Close();
}
protected override void OnStart(string[] args)
{
//WriteToFile("Service is started at " + DateTime.Now);
timer.Elapsed += new ElapsedEventHandler(OnElapsedTime);
timer.Interval = 12000; //Convert.ToDouble ( ConfigurationManager.AppSettings["EmailReadingIntervals"]) ; // 300000; //number in milisecinds //EmailReadingIntervals
timer.Enabled = true;
}
public void onDebug()
{
OnStart(null);
}
protected override void OnStop()
{
//WriteToFile("Service is stopped at " + DateTime.Now);
}
public void WriteToFile(string Message)
{
string path = AppDomain.CurrentDomain.BaseDirectory + "\\Logs";
if (!Directory.Exists(path))
{
Directory.CreateDirectory(path);
}
string filepath = AppDomain.CurrentDomain.BaseDirectory + "\\Logs\\AK_IMAP_ServiceLog_" + DateTime.Now.Date.ToShortDateString().Replace('/', '_') + ".txt";
if (!File.Exists(filepath))
{
// Create a file to write to.
using (StreamWriter sw = File.CreateText(filepath))
{
sw.WriteLine(Message);
}
}
else
{
using (StreamWriter sw = File.AppendText(filepath))
{
sw.WriteLine(Message);
}
}
}
private void OnElapsedTime(object source, ElapsedEventArgs e)
{
readIMAPEmail();
//WriteToFile("Service is recall at " + DateTime.Now);
}
public static string ExtractEmails(string emailAddress)
{
string streEmailAddress = "";
//instantiate with this pattern
Regex emailRegex = new Regex(@"\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*",
RegexOptions.IgnoreCase);
//find items that matches with our pattern
MatchCollection emailMatches = emailRegex.Matches(emailAddress);
StringBuilder sb = new StringBuilder();
foreach (Match emailMatch in emailMatches)
{
//sb.AppendLine(emailMatch.Value);
streEmailAddress = emailMatch.Value;
}
//store to file
return streEmailAddress;
}
}
}