summaryrefslogtreecommitdiff
path: root/Project-Unite/NotificationDaemon.cs
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-03-24 15:54:53 -0400
committerMichael <[email protected]>2017-03-24 15:54:53 -0400
commitcd73cc80d1c097e584938ffe993bd546bab9d31a (patch)
tree215c148073933b0ee061cb6fa528ba081efa733a /Project-Unite/NotificationDaemon.cs
parentc29c1366213c06503e875e43ed251a1d96003acb (diff)
downloadproject-unite-cd73cc80d1c097e584938ffe993bd546bab9d31a.tar.gz
project-unite-cd73cc80d1c097e584938ffe993bd546bab9d31a.tar.bz2
project-unite-cd73cc80d1c097e584938ffe993bd546bab9d31a.zip
Notification daemon works.
You now get notifications when someone you follow makes a post - or when a user replies to a topic you made.
Diffstat (limited to 'Project-Unite/NotificationDaemon.cs')
-rw-r--r--Project-Unite/NotificationDaemon.cs57
1 files changed, 57 insertions, 0 deletions
diff --git a/Project-Unite/NotificationDaemon.cs b/Project-Unite/NotificationDaemon.cs
new file mode 100644
index 0000000..b8081e2
--- /dev/null
+++ b/Project-Unite/NotificationDaemon.cs
@@ -0,0 +1,57 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Web;
+using Project_Unite.Models;
+
+namespace Project_Unite
+{
+ public static class NotificationDaemon
+ {
+ public static void NotifyFollowers(string uid, string title, string desc, string url)
+ {
+ var db = new ApplicationDbContext();
+ var user = db.Users.FirstOrDefault(x => x.Id == uid);
+ if (user == null)
+ throw new Exception("Cannot find user with ID " + uid + ".");
+ foreach(var follower in user.Followers)
+ {
+ NotifyUser(uid, follower.Follower, title, desc, url);
+ }
+ }
+
+ public static void NotifyEveryone(string uid, string title, string desc, string url)
+ {
+ var db = new ApplicationDbContext();
+ var user = db.Users.FirstOrDefault(x => x.Id == uid);
+ if (user == null)
+ throw new Exception("Cannot find user with ID " + uid + ".");
+ foreach (var usr in db.Users.Where(x=>x.Id!=uid).ToArray())
+ {
+ NotifyUser(uid, usr.Id, title, desc, url);
+ }
+ }
+
+ public static void NotifyUser(string uid, string target, string title, string desc, string url)
+ {
+ var db = new ApplicationDbContext();
+ var user = db.Users.FirstOrDefault(x => x.Id == uid);
+ if (user == null)
+ throw new Exception("Cannot find user with ID " + target + ".");
+ var note = new Notification
+ {
+ Id = Guid.NewGuid().ToString(),
+ UserId = target,
+ Title = title,
+ ActionUrl = url,
+ Description = desc,
+ AvatarUrl = user.AvatarUrl
+ };
+ db.Notifications.Add(note);
+
+ db.SaveChanges();
+ }
+
+
+ }
+} \ No newline at end of file