-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNotificationController.cs
169 lines (149 loc) · 6.93 KB
/
NotificationController.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
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Configuration;
using System.Security.Claims;
using System.Web.Mvc;
using System.Threading.Tasks;
using MailboxSync.Helpers;
using MailboxSync.Models;
using MailboxSync.Services;
using MailboxSync.Services.SignalR;
namespace MailboxSync.Controllers
{
public class NotificationController : Controller
{
public static string ClientId = ConfigurationManager.AppSettings["ida:ClientId"];
/// <summary>
/// Store the notifications in session state. A production
/// application would likely queue for additional processing.
/// </summary>
/// <returns></returns>
[Authorize]
public ActionResult Index()
{
ViewBag.CurrentUserId = ClaimsPrincipal.Current.FindFirst(ClaimTypes.NameIdentifier).Value;
var notificationArray = (ConcurrentBag<NotificationItem>)HttpContext.Application["notifications"];
if (notificationArray == null)
{
notificationArray = new ConcurrentBag<NotificationItem>();
}
HttpContext.Application["notifications"] = notificationArray;
return View(notificationArray);
}
/// <summary>
/// The `notificationUrl` endpoint that's registered with the webhook subscription.
/// </summary>
/// <returns></returns>
[HttpPost]
public async Task<ActionResult> Listen()
{
// Validate the new subscription by sending the token back to Microsoft Graph.
// This response is required for each subscription.
if (Request.QueryString["validationToken"] != null)
{
var token = Request.QueryString["validationToken"];
return Content(token, "plain/text");
}
// Parse the received notifications.
else
{
try
{
using (var inputStream = new System.IO.StreamReader(Request.InputStream))
{
JObject jsonObject = JObject.Parse(inputStream.ReadToEnd());
var notificationArray = (ConcurrentBag<NotificationItem>)HttpContext.Application["notifications"];
if (jsonObject != null)
{
// Notifications are sent in a 'value' array. The array might contain multiple notifications for events that are
// registered for the same notification endpoint, and that occur within a short timespan.
JArray value = JArray.Parse(jsonObject["value"].ToString());
foreach (var notification in value)
{
NotificationItem current = JsonConvert.DeserializeObject<NotificationItem>(notification.ToString());
// Check client state to verify the message is from Microsoft Graph.
SubscriptionStore subscription = SubscriptionStore.GetSubscriptionInfo(current.SubscriptionId);
// This sample only works with subscriptions that are still cached.
if (subscription != null)
{
if (current.ClientState == subscription.ClientState)
{
//Store the notifications in application state. A production
//application would likely queue for additional processing.
if (notificationArray == null)
{
notificationArray = new ConcurrentBag<NotificationItem>();
}
notificationArray.Add(current);
HttpContext.Application["notifications"] = notificationArray;
}
}
}
if (notificationArray.Count > 0)
{
await GetChangedMessagesAsync(notificationArray);
}
}
}
}
catch (Exception)
{
// ignored
}
return new HttpStatusCodeResult(202);
}
}
/// <summary>
/// Get the changed message details
/// Update the local json file
/// Continue to update the UI using SignalR
/// </summary>
/// <param name="notifications"></param>
/// <returns></returns>
public async Task GetChangedMessagesAsync(IEnumerable<NotificationItem> notifications)
{
DataService dataService = new DataService();
MailService mailService = new MailService();
int newMessages = 0;
foreach (var notification in notifications)
{
var subscription = SubscriptionStore.GetSubscriptionInfo(notification.SubscriptionId);
var graphClient = GraphServiceClientProvider.GetAuthenticatedClient(subscription.UserId);
try
{
// Get the message
var message = await mailService.GetMessage(graphClient, notification.ResourceData.Id);
// update the local json file
if (message != null)
{
var messageItem = new MessageItem
{
BodyPreview = message.BodyPreview,
ChangeKey = message.ChangeKey,
ConversationId = message.ConversationId,
CreatedDateTime = (DateTimeOffset)message.CreatedDateTime,
Id = message.Id,
IsRead = (bool)message.IsRead,
Subject = message.Subject
};
var messageItems = new List<MessageItem> { messageItem };
dataService.StoreMessage(messageItems, message.ParentFolderId, null);
newMessages += 1;
}
}
catch (Exception e)
{
// ignored
}
}
if (newMessages > 0)
{
NotificationService notificationService = new NotificationService();
notificationService.SendNotificationToClient();
}
}
}
}