Esempio n. 1
0
        public void SendToAdmin()
        {
            var settingRepo = new SettingsRepository();
            var setting     = settingRepo.GetItem(0);

            var mailMessage = new NotificationMailer();

            mailMessage.RoundNotificationToAdmin(setting.CurrentRoundID);
        }
Esempio n. 2
0
        public ActionResult Index()
        {
            Trace.TraceInformation("Notification - called");

            var settingRepo           = new SettingsRepository();
            var setting               = settingRepo.GetItem(0);
            var sendRoundNotification = (setting.LastNotificationRoundID != setting.CurrentRoundID);

            try
            {
                var mailMessage = new NotificationMailer();

                //send round notifications only once
                if (sendRoundNotification)
                {
                    Trace.TraceInformation("Notification - sending round notifications");

                    //get first match date in round
                    var firstDate = settingRepo.Context.Matches
                                    .Where(e => e.RoundID == setting.CurrentRoundID)
                                    .Select(e => e.Date).Min();

                    //send notification only if the first match is today
                    if (firstDate.Date == DateTime.UtcNow.Date)
                    {
                        mailMessage.RoundNotification(setting.CurrentRoundID);
                        settingRepo.SetLastNotificationRoundID();
                    }
                }
                //otherwise send match bet reminders for today
                else
                {
                    Trace.TraceInformation("Notification - sending match notifications");

                    mailMessage.MatchNotificationForToday();
                }
            }
            catch (Exception ex)
            {
                Logger.Log(ex);
            }

            return(null);
        }
 public IHttpActionResult Post(Notification notification)
 {
     NotificationMailer.SendNotification(notification);
     return(Ok());
 }