public static void AddNotificationToQueue(string description, string eventName, ProwlNotificationPriority priority)
 {
     // Queue the notification message
     var newNotification =
             new ProwlNotification
             {
                 Description = description,
                 Event = eventName,
                 Priority = priority
             };
     pushQueue.Enqueue(newNotification);
 }
Example #2
0
        public static void AddNotificationToQueue(string description, string eventName, ProwlNotificationPriority priority)
        {
            // Queue the notification message
            var newNotification =
                new ProwlNotification
            {
                Description = description,
                Event       = eventName,
                Priority    = priority
            };

            pushQueue.Enqueue(newNotification);
        }
        public static void SendNotification(ProwlNotification notification)
        {
            //New string to pass in notification type
            string notificationType = "";

            if (Trinity.Settings.Notification.IPhoneEnabled && !string.IsNullOrWhiteSpace(Trinity.Settings.Notification.IPhoneKey))
            {
                var newNotification =
                        new ProwlNotification
                        {
                            Description = notification.Description,
                            Event = notification.Event,
                            Priority = notification.Priority
                        };
                notificationType = "iphone";
                try
                {
                    PostNotification(newNotification, notificationType);
                }
                catch
                {
                }
            }
            if (Trinity.Settings.Notification.AndroidEnabled && !string.IsNullOrWhiteSpace(Trinity.Settings.Notification.AndroidKey))
            {
                var newNotification =
                        new ProwlNotification
                        {
                            Description = notification.Description,
                            Event = notification.Event,
                            Priority = notification.Priority
                        };
                notificationType = "android";
                try
                {
                    PostNotification(newNotification, notificationType);
                }
                catch
                {
                }
            }

            //Adding in Pushover Stuffs. 
            if (Trinity.Settings.Notification.PushoverEnabled && !string.IsNullOrWhiteSpace(Trinity.Settings.Notification.PushoverKey))
            {
                var newNotification =
                        new ProwlNotification
                        {
                            Description = notification.Description,
                            Event = notification.Event,
                            Priority = notification.Priority
                        };
                notificationType = "pushover";
                try
                {
                    PostNotification(newNotification, notificationType);
                }
                catch
                {
                }
            }

            //Adding in Pushbullet Stuffs. 
            if (Trinity.Settings.Notification.PushbulletEnabled && !string.IsNullOrWhiteSpace(Trinity.Settings.Notification.PushbulletKey))
            {
                var newNotification =
                        new ProwlNotification
                        {
                            Description = notification.Description,
                            Event = notification.Event,
                            Priority = notification.Priority
                        };
                notificationType = "pushbullet";
                try
                {
                    PostNotification(newNotification, notificationType);
                }
                catch
                {
                }
            }

        }
        //No longer takes in a bool, rather takes in actual type since there are three options
        public static void PostNotification(ProwlNotification notice, string notificationType)
        {
            if (notificationType == "pushbullet")
            {
                const string url = "https://api.pushbullet.com/api/pushes";
                string apiKey = Trinity.Settings.Notification.PushbulletKey;
                CredentialCache myCache = new CredentialCache { { new Uri(url), "Basic", new NetworkCredential(apiKey, "") } };
                string postData = "type=note" +
                              "&body=" + HttpUtility.UrlEncode(notice.Description) +
                              "&title=" + HttpUtility.UrlEncode(notice.Event);

                var updateRequest = (HttpWebRequest)WebRequest.Create(url);
                updateRequest.ContentLength = postData.Length;
                updateRequest.Method = "POST";
                updateRequest.ContentType = "application/x-www-form-urlencoded";
                updateRequest.Credentials = myCache;
                StreamWriter sw = new StreamWriter(updateRequest.GetRequestStream());
                sw.Write(postData);
                sw.Close();
                //updateRequest.Timeout = 5000;
                var postResponse = default(WebResponse);
                try
                {
                    postResponse = updateRequest.GetResponse();
                }
                finally
                {
                    if (postResponse != null)
                        postResponse.Close();
                }
            }

            //
            if (notificationType == "pushover")
            {
                string url = "https://api.pushover.net/1/messages.json";
                string apiKey = Trinity.Settings.Notification.PushoverKey;
                //The registered token for Trinity I set up on pushover.net
                url += "?token=aBf5s4BGSCkRHkneWq3VcGQMX2GjgP" + // Created "Trinity" application in Pushover.net
                              "&user="******"&message=" + HttpUtility.UrlEncode(notice.Description) +
                              "&title=" + HttpUtility.UrlEncode(notice.Event) +
                              "&priority=" + HttpUtility.UrlEncode(notice.Priority.ToString());

                var updateRequest =
                (HttpWebRequest)WebRequest.Create(url.ToString());
                updateRequest.ContentLength = 0;
                updateRequest.ContentType = "application/x-www-form-urlencoded";
                updateRequest.Method = "POST";
                //updateRequest.Timeout = 5000;
                var postResponse = default(WebResponse);
                try
                {
                    postResponse = updateRequest.GetResponse();
                }
                finally
                {
                    if (postResponse != null)
                        postResponse.Close();
                }
            }

            if (notificationType == "iphone")
            {
                string url = "https://prowl.weks.net/publicapi/add";
                string apiKey = Trinity.Settings.Notification.IPhoneKey;
                url += "?apikey=" + HttpUtility.UrlEncode(apiKey.Trim()) +
                             "&application=" + HttpUtility.UrlEncode("Trinity") +
                             "&description=" + HttpUtility.UrlEncode(notice.Description) +
                             "&event=" + HttpUtility.UrlEncode(notice.Event) +
                             "&priority=" + HttpUtility.UrlEncode(notice.Priority.ToString());

                var updateRequest =
                (HttpWebRequest)WebRequest.Create(url.ToString());
                updateRequest.ContentLength = 0;
                updateRequest.ContentType = "application/x-www-form-urlencoded";
                updateRequest.Method = "POST";
                //updateRequest.Timeout = 5000;
                var postResponse = default(WebResponse);
                try
                {
                    postResponse = updateRequest.GetResponse();
                }
                finally
                {
                    if (postResponse != null)
                        postResponse.Close();
                }
            }

            if (notificationType == "android")
            {
                string url = "https://www.notifymyandroid.com/publicapi/notify";
                string apiKey = Trinity.Settings.Notification.AndroidKey;
                url += "?apikey=" + HttpUtility.UrlEncode(apiKey.Trim()) +
                              "&application=" + HttpUtility.UrlEncode("Trinity") +
                              "&description=" + HttpUtility.UrlEncode(notice.Description) +
                              "&event=" + HttpUtility.UrlEncode(notice.Event) +
                              "&priority=" + HttpUtility.UrlEncode(notice.Priority.ToString());

                var updateRequest =
                    (HttpWebRequest)WebRequest.Create(url.ToString());
                updateRequest.ContentLength = 0;
                updateRequest.ContentType = "application/x-www-form-urlencoded";
                updateRequest.Method = "POST";
                //updateRequest.Timeout = 5000;
                var postResponse = default(WebResponse);
                try
                {
                    postResponse = updateRequest.GetResponse();
                }
                finally
                {
                    if (postResponse != null)
                        postResponse.Close();
                }
            }



        }
Example #5
0
        public static void SendNotification(ProwlNotification notification)
        {
            //New string to pass in notification type
            string notificationType = "";

            if (Trinity.Settings.Notification.IPhoneEnabled && !string.IsNullOrWhiteSpace(Trinity.Settings.Notification.IPhoneKey))
            {
                var newNotification =
                    new ProwlNotification
                {
                    Description = notification.Description,
                    Event       = notification.Event,
                    Priority    = notification.Priority
                };
                notificationType = "iphone";
                try
                {
                    PostNotification(newNotification, notificationType);
                }
                catch
                {
                }
            }
            if (Trinity.Settings.Notification.AndroidEnabled && !string.IsNullOrWhiteSpace(Trinity.Settings.Notification.AndroidKey))
            {
                var newNotification =
                    new ProwlNotification
                {
                    Description = notification.Description,
                    Event       = notification.Event,
                    Priority    = notification.Priority
                };
                notificationType = "android";
                try
                {
                    PostNotification(newNotification, notificationType);
                }
                catch
                {
                }
            }

            //Adding in Pushover Stuffs.
            if (Trinity.Settings.Notification.PushoverEnabled && !string.IsNullOrWhiteSpace(Trinity.Settings.Notification.PushoverKey))
            {
                var newNotification =
                    new ProwlNotification
                {
                    Description = notification.Description,
                    Event       = notification.Event,
                    Priority    = notification.Priority
                };
                notificationType = "pushover";
                try
                {
                    PostNotification(newNotification, notificationType);
                }
                catch
                {
                }
            }

            //Adding in Pushbullet Stuffs.
            if (Trinity.Settings.Notification.PushbulletEnabled && !string.IsNullOrWhiteSpace(Trinity.Settings.Notification.PushbulletKey))
            {
                var newNotification =
                    new ProwlNotification
                {
                    Description = notification.Description,
                    Event       = notification.Event,
                    Priority    = notification.Priority
                };
                notificationType = "pushbullet";
                try
                {
                    PostNotification(newNotification, notificationType);
                }
                catch
                {
                }
            }
        }
Example #6
0
        //No longer takes in a bool, rather takes in actual type since there are three options
        public static void PostNotification(ProwlNotification notice, string notificationType)
        {
            if (notificationType == "pushbullet")
            {
                const string    url     = "https://api.pushbullet.com/api/pushes";
                string          apiKey  = Trinity.Settings.Notification.PushbulletKey;
                CredentialCache myCache = new CredentialCache {
                    { new Uri(url), "Basic", new NetworkCredential(apiKey, "") }
                };
                string postData = "type=note" +
                                  "&body=" + HttpUtility.UrlEncode(notice.Description) +
                                  "&title=" + HttpUtility.UrlEncode(notice.Event);

                var updateRequest = (HttpWebRequest)WebRequest.Create(url);
                updateRequest.ContentLength = postData.Length;
                updateRequest.Method        = "POST";
                updateRequest.ContentType   = "application/x-www-form-urlencoded";
                updateRequest.Credentials   = myCache;
                StreamWriter sw = new StreamWriter(updateRequest.GetRequestStream());
                sw.Write(postData);
                sw.Close();
                //updateRequest.Timeout = 5000;
                var postResponse = default(WebResponse);
                try
                {
                    postResponse = updateRequest.GetResponse();
                }
                finally
                {
                    if (postResponse != null)
                    {
                        postResponse.Close();
                    }
                }
            }

            //
            if (notificationType == "pushover")
            {
                string url    = "https://api.pushover.net/1/messages.json";
                string apiKey = Trinity.Settings.Notification.PushoverKey;
                //The registered token for Trinity I set up on pushover.net
                url += "?token=aBf5s4BGSCkRHkneWq3VcGQMX2GjgP" + // Created "Trinity" application in Pushover.net
                       "&user="******"&message=" + HttpUtility.UrlEncode(notice.Description) +
                       "&title=" + HttpUtility.UrlEncode(notice.Event) +
                       "&priority=" + HttpUtility.UrlEncode(notice.Priority.ToString());

                var updateRequest =
                    (HttpWebRequest)WebRequest.Create(url.ToString());
                updateRequest.ContentLength = 0;
                updateRequest.ContentType   = "application/x-www-form-urlencoded";
                updateRequest.Method        = "POST";
                //updateRequest.Timeout = 5000;
                var postResponse = default(WebResponse);
                try
                {
                    postResponse = updateRequest.GetResponse();
                }
                finally
                {
                    if (postResponse != null)
                    {
                        postResponse.Close();
                    }
                }
            }

            if (notificationType == "iphone")
            {
                string url    = "https://prowl.weks.net/publicapi/add";
                string apiKey = Trinity.Settings.Notification.IPhoneKey;
                url += "?apikey=" + HttpUtility.UrlEncode(apiKey.Trim()) +
                       "&application=" + HttpUtility.UrlEncode("Trinity") +
                       "&description=" + HttpUtility.UrlEncode(notice.Description) +
                       "&event=" + HttpUtility.UrlEncode(notice.Event) +
                       "&priority=" + HttpUtility.UrlEncode(notice.Priority.ToString());

                var updateRequest =
                    (HttpWebRequest)WebRequest.Create(url.ToString());
                updateRequest.ContentLength = 0;
                updateRequest.ContentType   = "application/x-www-form-urlencoded";
                updateRequest.Method        = "POST";
                //updateRequest.Timeout = 5000;
                var postResponse = default(WebResponse);
                try
                {
                    postResponse = updateRequest.GetResponse();
                }
                finally
                {
                    if (postResponse != null)
                    {
                        postResponse.Close();
                    }
                }
            }

            if (notificationType == "android")
            {
                string url    = "https://www.notifymyandroid.com/publicapi/notify";
                string apiKey = Trinity.Settings.Notification.AndroidKey;
                url += "?apikey=" + HttpUtility.UrlEncode(apiKey.Trim()) +
                       "&application=" + HttpUtility.UrlEncode("Trinity") +
                       "&description=" + HttpUtility.UrlEncode(notice.Description) +
                       "&event=" + HttpUtility.UrlEncode(notice.Event) +
                       "&priority=" + HttpUtility.UrlEncode(notice.Priority.ToString());

                var updateRequest =
                    (HttpWebRequest)WebRequest.Create(url.ToString());
                updateRequest.ContentLength = 0;
                updateRequest.ContentType   = "application/x-www-form-urlencoded";
                updateRequest.Method        = "POST";
                //updateRequest.Timeout = 5000;
                var postResponse = default(WebResponse);
                try
                {
                    postResponse = updateRequest.GetResponse();
                }
                finally
                {
                    if (postResponse != null)
                    {
                        postResponse.Close();
                    }
                }
            }
        }