Пример #1
0
        protected static void PullFixtures()
        {
            uri = "http://pi.xmlscores.com/feed.html?f=xml&type=matches&contest=eng_pl&t1=1412509500&t2=1414237500&s=1&l=7&events=1&open=b4d88044654d82c4eccf19f8ae9c024f";
            XDocument xDocument = XDocument.Load(uri);

            using (GoalAlertEntities db = new GoalAlertEntities())
            {
                Fixture fx         = new Fixture();
                var     enumerable =
                    from tra in xDocument.Descendants("matches-list")
                    where tra.Element("match").Attribute("status").ToString() == "not_started"
                    select new
                {
                    matchid     = tra.Attribute("id").Value,
                    host        = tra.Element("hosts").Value,
                    guest       = tra.Element("guest").Value,
                    status      = tra.Element("match").Attribute("status").Value,
                    unixkickoff = ConvertDateTimeToUNIX_Timestamp(DateTime.Parse(tra.Element("match").Attribute("time-start").Value)),
                    leagueid    = 1
                                  //Text = customClass.removeIllegal(tra.Element("text").Value),
                                  //From = tra.Element("groupFrom").Value,
                                  //To = tra.Element("groupTo").Value,
                                  //Status = tra.Element("roadStatus").Value,
                                  //Cause = tra.Element("causeBy").Value,
                                  //DateCreated = DateTime.ParseExact(tra.Element("created_at").Value, "ddd MMM dd HH:mm:ss zzz yyyy", CultureInfo.InvariantCulture),
                                  //TrafficId = int.Parse(tra.Element("id").Value),
                                  //TimeStamped = DateTime.Now,
                                  //Truncated = tra.Element("truncated").Valu
                };
                foreach (var fixtures in enumerable)
                {
                    fx.MatchID          = fixtures.matchid;
                    fx.Host             = fixtures.host;
                    fx.Guest            = fixtures.guest;
                    fx.LeaugeID         = fixtures.leagueid;
                    fx.Status           = fixtures.status;
                    fx.Unix_KickOff     = fixtures.unixkickoff.ToString();
                    fx.IsDailySummSent  = false;
                    fx.IsMatchSummSent  = false;
                    fx.IsPreKickOffSent = false;
                    db.Fixtures.Add(fx);
                    db.SaveChanges();
                }
            }
        }
Пример #2
0
        public static void StartPull(ref int workingTimerInterval)
        {
            ConfigurationManager.RefreshSection("appSettings");
            int           canUpdate = 0, insertSkip = 1;
            List <string> goalEvents = new List <string> {
                "og", "pen", "goal"
            }; string xmlDocInnerXml = "";
            DateTime  feedTime = DateTime.Now;

            db = new GoalAlertEntities();
            try
            {
                if (AllEnabledLeague > 0)
                {
                    ReturnLeague = AllEnabledLeague;
                    foreach (League _league in wdb.Leagues.Where(f => f.IsEnabled == 1).ToList())
                    {
                        XmlDocument xmlDoc = new XmlDocument();
                        xmlDoc.Load(AppUtil.RequestUrl(_league.LeagueName));
                        Fixture       fx            = new Fixture();
                        FixtureEvent  matchfx_event = new FixtureEvent();
                        XmlSerializer serializer    = new XmlSerializer(typeof(LiveScoreFeed));
                        MemoryStream  memStream     = new MemoryStream(Encoding.UTF8.GetBytes(xmlDoc.InnerXml));
                        //if (xmlDoc != null) AppUtil.LogFileWrite(xmlDoc.InnerXml);
                        if (xmlDoc != null)
                        {
                            xmlDocInnerXml = xmlDoc.InnerXml;
                        }
                        LiveScoreFeed resultingFeeds = (LiveScoreFeed)serializer.Deserialize(memStream);

                        if (resultingFeeds != null && resultingFeeds.matcheslist != null && resultingFeeds.matcheslist.totalcount > 0)
                        {
                            foreach (Match match in resultingFeeds.matcheslist.match)
                            {
                                fx = new Fixture();
                                fx = db.Fixtures.FirstOrDefault(f => f.MatchID.ToLower() == match.id.ToLower());

                                if (fx == null || fx.ID <= 0)
                                {
                                    if (match.status.ToLower() != "finished")
                                    {
                                        fx                   = new Fixture();
                                        fx.Guest             = match.teams.guests;
                                        fx.Host              = match.teams.hosts;
                                        fx.IsDailySummSent   = 0;
                                        fx.IsMatchSummSent   = 0;
                                        fx.IsPreKickOffSent  = 0;
                                        fx.IsScoreAET        = false;
                                        fx.LeaugeID          = _league.LeagueID;
                                        fx.Local_KickOff     = Convert.ToDateTime(AppUtil.ConvertUNIXToDateTime(match.timestampstarts)).AddHours(AppUtil.GMTValue);
                                        fx.MatchID           = match.id;
                                        fx.Pre_Local_KickOff = fx.Local_KickOff.GetValueOrDefault().Subtract(new TimeSpan(0, AppUtil.MinutesBeforeKickoff, 0));
                                        fx.Score             = match.score;
                                        fx.Status            = match.status;
                                        fx.Unix_KickOff      = match.timestampstarts.ToString();

                                        //if (match.status.ToLower() == "finished")
                                        //    fx.Local_Finish = Convert.ToDateTime(AppUtil.ConvertUNIXToDateTime(Convert.ToInt32(resultingFeeds.timestamp_created))).AddHours(AppUtil.GMTValue);
                                        //else
                                        //    fx.Local_Finish = fx.Local_Finish;

                                        db.Fixtures.Add(fx);
                                        db.SaveChanges();
                                        insertSkip = 0;
                                    }
                                    else
                                    {
                                        insertSkip = 1;
                                    }
                                }
                                else
                                {
                                    //fx.IsDailySummSent = false;
                                    //fx.IsMatchSummSent = false;
                                    //fx.IsPreKickOffSent = false;
                                    //fx.IsScoreAET = false;

                                    if (fx.Status == match.status & (fx.Status.ToLower() == "not_started" | fx.Status.ToLower() == "postponed") & fx.Unix_KickOff != match.timestampstarts.ToString()) //in case of change of start time
                                    {
                                        fx.Local_KickOff     = Convert.ToDateTime(AppUtil.ConvertUNIXToDateTime(match.timestampstarts)).AddHours(AppUtil.GMTValue);
                                        fx.Pre_Local_KickOff = fx.Local_KickOff.GetValueOrDefault().Subtract(new TimeSpan(0, AppUtil.MinutesBeforeKickoff, 0));
                                        fx.Status            = match.status;
                                        fx.Unix_KickOff      = match.timestampstarts.ToString();
                                        db.SaveChanges();
                                    }
                                    if (fx.Status != match.status & fx.Unix_KickOff != match.timestampstarts.ToString()) //in case of postponement
                                    {
                                        fx.Local_KickOff     = Convert.ToDateTime(AppUtil.ConvertUNIXToDateTime(match.timestampstarts)).AddHours(AppUtil.GMTValue);
                                        fx.Pre_Local_KickOff = fx.Local_KickOff.GetValueOrDefault().Subtract(new TimeSpan(0, AppUtil.MinutesBeforeKickoff, 0));
                                        fx.Status            = match.status;
                                        fx.Unix_KickOff      = match.timestampstarts.ToString();
                                        canUpdate            = 1;
                                    }

                                    if (fx.Status.ToLower() != match.status.ToLower() & fx.Unix_KickOff == match.timestampstarts.ToString())
                                    {
                                        if (match.status.ToLower() == "finished" & fx.Status.ToLower() != "finished")
                                        {
                                            fx.Local_Finish = Convert.ToDateTime(AppUtil.ConvertUNIXToDateTime(Convert.ToInt32(resultingFeeds.timestamp_created))).AddHours(AppUtil.GMTValue);
                                        }
                                        fx.Status = match.status;
                                        canUpdate = 1;
                                    }
                                    if (fx.Score != match.score)
                                    {
                                        fx.Score  = match.score; //XX - XX,
                                        canUpdate = 1;
                                    }
                                    if (canUpdate == 1)
                                    {
                                        db.SaveChanges();
                                    }
                                }

                                //goal|own_goal|penalty==red_card|yellow_card==ps==
                                //goal - goal
                                //pen - goal scored from penalty
                                //og - own goal
                                //yc - yellow card
                                //rc - red card
                                //ps - penalty shootout kick*

                                if (match.matchevents != null && match.matchevents.Length > 0)
                                {
                                    if (canUpdate == 1 | insertSkip == 0)
                                    {
                                        MatchEvent aetMatch = match.matchevents.Where(w => goalEvents.Contains(w.type) == true).OrderByDescending(m => m.minute).FirstOrDefault();
                                        if (aetMatch != null)
                                        {
                                            if (fx.IsScoreAET.GetValueOrDefault() != true & Convert.ToInt32(match.matchevents.Where(w => goalEvents.Contains(w.type) == true).OrderByDescending(m => m.minute).FirstOrDefault().minute) > 90)
                                            {
                                                fx.IsScoreAET = true;
                                                db.SaveChanges();
                                            }
                                        }

                                        foreach (MatchEvent fx_event in match.matchevents)
                                        {
                                            int thisEventID = (wdb.Notifications.FirstOrDefault(f => f.Name.ToLower() == fx_event.type) != null) ?
                                                              wdb.Notifications.FirstOrDefault(f => f.Name.ToLower() == fx_event.type).ID : 7;
                                            matchfx_event = new FixtureEvent();
                                            matchfx_event = db.FixtureEvents.FirstOrDefault(f => (f.MatchID == match.id & f.ScoreLine == fx_event.score & goalEvents.Contains(fx_event.type)) |
                                                                                            (f.MatchID == match.id & f.NotificationID == thisEventID & f.Team == fx_event.team.Value & f.Player == fx_event.player & goalEvents.Contains(fx_event.type) == false)); //f.Minute == fx_event.minute &

                                            if (matchfx_event == null || matchfx_event.EventID <= 0)
                                            {
                                                matchfx_event                = new FixtureEvent();
                                                matchfx_event.IsPushed       = 0;
                                                matchfx_event.MatchID        = fx.MatchID;
                                                matchfx_event.Minute         = fx_event.minute;
                                                matchfx_event.NotificationID = thisEventID;
                                                if (matchfx_event.NotificationID == 7)
                                                {
                                                    AppUtil.LogFileWrite(fx_event.type);
                                                    AppUtil.LogFileWrite(xmlDoc.InnerXml);
                                                }
                                                matchfx_event.Player      = fx_event.player;
                                                matchfx_event.ScoreLine   = fx_event.score;
                                                matchfx_event.Team        = fx_event.team.Value; //value="guests"/"hosts"
                                                matchfx_event.Timestamped = DateTime.Now;
                                                db.FixtureEvents.Add(matchfx_event);
                                                db.SaveChanges();

                                                //HttpContext.Current.Request.ServerVariables("LOGON_USER")
                                            }
                                            else //Change in event mostly Goal Scorer
                                            {
                                                if (matchfx_event.Notification.Name.ToLower() != fx_event.type && matchfx_event.Player.ToLower() != fx_event.player.ToLower() && matchfx_event.ScoreLine != fx_event.score)
                                                {
                                                    matchfx_event.NotificationID = wdb.Notifications.FirstOrDefault(f => f.Name.ToLower() == fx_event.type).ID;
                                                    matchfx_event.Player         = fx_event.player;
                                                    //matchfx_event.Timestamped = DateTime.Now;
                                                    matchfx_event.ScoreLine = fx_event.score;
                                                    matchfx_event.Team      = fx_event.team.Value; //value="guests"/"hosts"
                                                    db.SaveChanges();
                                                }

                                                else if (goalEvents.Contains(fx_event.type) & (matchfx_event.ScoreLine != fx_event.score | matchfx_event.Notification.Name.ToLower() != fx_event.type |
                                                                                               matchfx_event.Player.ToLower() != fx_event.player.ToLower() | matchfx_event.Minute != fx_event.minute))
                                                {
                                                    matchfx_event.NotificationID = wdb.Notifications.FirstOrDefault(f => f.Name.ToLower() == fx_event.type).ID;
                                                    matchfx_event.Player         = fx_event.player;
                                                    //matchfx_event.Timestamped = DateTime.Now;
                                                    matchfx_event.ScoreLine = fx_event.score;
                                                    matchfx_event.Minute    = fx_event.minute;
                                                    matchfx_event.Team      = fx_event.team.Value; //value="guests"/"hosts"
                                                    db.SaveChanges();
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                        else //there is no feed at all
                        {
                            ReturnLeague -= 1;
                        }

                        if (ReturnLeague == 0)
                        {
                            workingTimerInterval = AppUtil.NoFeedSecondInterval * 1000; //wait for 1 minute
                            AppUtil.LogFileWrite(string.Format("No Feed Return For All Enabled League! Live Feed Service Waiting for {0} minute......", (AppUtil.NoFeedSecondInterval / 60).ToString()));
                        }
                        else
                        {
                            workingTimerInterval = AppUtil.RequestSecondInterval * 1000;
                        }
                    }
                    // "http://pi.xmlscores.com/feed.html?f=xml&type=matches&contest=eng_pl&t1=1412509500&t2=1414237500&s=1&l=7&events=1&open=b4d88044654d82c4eccf19f8ae9c024f";

                    //string cmdText = "Insert into Fixture(MatchId,LeagueId,Host,Guest,Status,Unix_KickOff,IsPreKickOffSent,IsMatchSummSent,IsDailySummSent])VALUES(@matchid,@leagueid,@host,@guest,@status,@kickoff,@sent1,@sent2,@sent3)";
                }
                else
                {
                    workingTimerInterval = AppUtil.NoLeagueSecondInterval * 1000; //wait for 1 hour
                    AppUtil.LogFileWrite(string.Format("No League Enabled Yet! Live Feed Service Waiting for {0} minute......", (AppUtil.NoLeagueSecondInterval / 60).ToString()));
                }
                db  = new GoalAlertEntities();
                qry = "delete from PastFixture where MatchID in (select MatchID from Fixture)";
                db.Database.ExecuteSqlCommand(qry);
                qry = "delete PastFixtureEvent where MatchID in (select MatchID from FixtureEvent)";
                db.Database.ExecuteSqlCommand(qry);
                foreach (Fixture finishedMatch in db.Fixtures.ToList())
                {
                    switch (finishedMatch.Status.ToLower()) //not_started, finished, active, postponed;
                    {
                    case "active":
                        //update/ or add events
                        if (feedTime.Subtract(finishedMatch.Local_KickOff.GetValueOrDefault()).TotalMinutes > new TimeSpan(AppUtil.LastActiveHour, 0, 0).TotalMinutes)
                        {
                            qry = @"INSERT INTO [dbo].[PastFixtureEvent] ([MatchID],[NotificationID],[Team],[Player],[Minute],[ScoreLine],[IsPushed],[Timestamped])
                                              SELECT [MatchID],[NotificationID],[Team],[Player],[Minute],[ScoreLine],[IsPushed],[Timestamped] FROM [dbo].[FixtureEvent] FE WHERE [MatchID] ={0}
                                              AND NOT EXISTS(SELECT ID FROM [dbo].[PastFixtureEvent] PE WHERE PE.[MatchID] =FE.[MatchID] AND PE.[NotificationID]=FE.[NotificationID] AND PE.[Team]=FE.[Team] 
                                              AND PE.[Player]=FE.[Player] AND PE.[Minute]=FE.[Minute] AND PE.[ScoreLine]=FE.[ScoreLine])";
                            db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID);

                            qry = @"INSERT INTO PastFixture ([MatchID],[LeaugeID],[Host],[Guest],[Unix_KickOff],[Status],[Local_KickOff],[Pre_Local_KickOff],[Local_Finish],[IsPreKickOffSent],[IsMatchSummSent],[IsDailySummSent],[Score],[IsScoreAET])
                                            SELECT [MatchID],[LeaugeID],[Host],[Guest],[Unix_KickOff],[Status],[Local_KickOff],[Pre_Local_KickOff],[Local_Finish],[IsPreKickOffSent],[IsMatchSummSent],[IsDailySummSent],[Score],[IsScoreAET] FROM [dbo].[Fixture]
                                            WHERE [MatchID] ={0} AND [Status] ={1} AND NOT EXISTS(SELECT ID FROM [dbo].[FixtureEvent] WHERE [MatchID] ={0}
											AND NOT EXISTS(SELECT ID FROM [dbo].[PastFixture] P WHERE P.[MatchID] ={0}))"                                            ;
                            db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID, finishedMatch.Status);

                            qry = @"DELETE FROM [dbo].[FixtureEvent] WHERE [MatchID] ={0} AND EXISTS(SELECT ID FROM [dbo].[PastFixtureEvent] PE WHERE PE.[MatchID] =[MatchID] AND PE.[NotificationID]=[NotificationID] AND PE.[Team]=[Team] 
                                            AND PE.[Player]=[Player] AND PE.[Minute]=[Minute] AND PE.[ScoreLine]=[ScoreLine])";
                            db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID);

                            qry = @"DELETE FROM [dbo].[Fixture] WHERE [MatchID] ={0} AND [Status] ={1} AND EXISTS(SELECT ID FROM [dbo].[PastFixture] P WHERE p.[MatchID] ={0})";
                            db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID, finishedMatch.Status);

                            qry = @"DELETE FROM [dbo].[FixtureEvent] WHERE [MatchID] ={0}";
                            db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID);

                            qry = @"DELETE FROM [dbo].[Fixture] WHERE [MatchID] ={0} AND [Status] ={1} AND NOT EXISTS(SELECT ID FROM [dbo].[FixtureEvent] WHERE [MatchID] ={0})";
                            db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID, finishedMatch.Status);

                            //db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID, finishedMatch.Status);
                        }

                        break;

                    case "finished":
                        //update or add events
                        //prepare for archive
                        if (feedTime.Subtract(finishedMatch.Local_Finish.GetValueOrDefault()).TotalMinutes > PastActiveMinutes.TotalMinutes)
                        {
                            qry = @"INSERT INTO [dbo].[PastFixtureEvent] ([MatchID],[NotificationID],[Team],[Player],[Minute],[ScoreLine],[IsPushed],[Timestamped])
                                              SELECT [MatchID],[NotificationID],[Team],[Player],[Minute],[ScoreLine],[IsPushed],[Timestamped] FROM [dbo].[FixtureEvent] FE WHERE [IsPushed] >0 AND [MatchID] ={0}
                                              AND NOT EXISTS(SELECT ID FROM [dbo].[PastFixtureEvent] PE WHERE PE.[MatchID] =FE.[MatchID] AND PE.[NotificationID]=FE.[NotificationID] AND PE.[Team]=FE.[Team] 
                                              AND PE.[Player]=FE.[Player] AND PE.[Minute]=FE.[Minute] AND PE.[ScoreLine]=FE.[ScoreLine])";
                            db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID);

                            qry = @"INSERT INTO PastFixture ([MatchID],[LeaugeID],[Host],[Guest],[Unix_KickOff],[Status],[Local_KickOff],[Pre_Local_KickOff],[Local_Finish],[IsPreKickOffSent],[IsMatchSummSent],[IsDailySummSent],[Score],[IsScoreAET])
                                            SELECT [MatchID],[LeaugeID],[Host],[Guest],[Unix_KickOff],[Status],[Local_KickOff],[Pre_Local_KickOff],[Local_Finish],[IsPreKickOffSent],[IsMatchSummSent],[IsDailySummSent],[Score],[IsScoreAET] FROM [dbo].[Fixture]
                                            WHERE [MatchID] ={0} AND [Status] ={1} AND NOT EXISTS(SELECT ID FROM [dbo].[FixtureEvent] WHERE [IsPushed] =0 AND [MatchID] ={0}
											AND NOT EXISTS(SELECT ID FROM [dbo].[PastFixture] P WHERE P.[MatchID] ={0}))"                                            ;
                            db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID, finishedMatch.Status);

                            qry = @"DELETE FROM [dbo].[FixtureEvent] WHERE [MatchID] ={0} AND EXISTS(SELECT ID FROM [dbo].[PastFixtureEvent] PE WHERE PE.[MatchID] =[MatchID] AND PE.[NotificationID]=[NotificationID] AND PE.[Team]=[Team] 
                                            AND PE.[Player]=[Player] AND PE.[Minute]=[Minute] AND PE.[ScoreLine]=[ScoreLine])";
                            db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID);

                            qry = @"DELETE FROM [dbo].[Fixture] WHERE [MatchID] ={0} AND [Status] ={1} AND EXISTS(SELECT ID FROM [dbo].[PastFixture] P WHERE p.[MatchID] ={0})";
                            db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID, finishedMatch.Status);

                            qry = @"DELETE FROM [dbo].[FixtureEvent] WHERE [IsPushed] >0 AND [MatchID] ={0}";
                            db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID);

                            qry = @"DELETE FROM [dbo].[Fixture] WHERE [MatchID] ={0} AND [Status] ={1} AND NOT EXISTS(SELECT ID FROM [dbo].[FixtureEvent] WHERE [MatchID] ={0})";
                            db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID, finishedMatch.Status);

                            //db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID, finishedMatch.Status);
                        }
                        db.SaveChanges();
                        break;

                    case "not_started":
                        //do nothing for now
                        if (feedTime.Subtract(finishedMatch.Local_KickOff.GetValueOrDefault()).TotalMinutes > new TimeSpan(AppUtil.LastActiveHour, 0, 0).TotalMinutes)
                        {
                            qry = @"INSERT INTO [dbo].[PastFixtureEvent] ([MatchID],[NotificationID],[Team],[Player],[Minute],[ScoreLine],[IsPushed],[Timestamped])
                                              SELECT [MatchID],[NotificationID],[Team],[Player],[Minute],[ScoreLine],[IsPushed],[Timestamped] FROM [dbo].[FixtureEvent] FE WHERE [MatchID] ={0}
                                              AND NOT EXISTS(SELECT ID FROM [dbo].[PastFixtureEvent] PE WHERE PE.[MatchID] =FE.[MatchID] AND PE.[NotificationID]=FE.[NotificationID] AND PE.[Team]=FE.[Team] 
                                              AND PE.[Player]=FE.[Player] AND PE.[Minute]=FE.[Minute] AND PE.[ScoreLine]=FE.[ScoreLine])";
                            db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID);

                            qry = @"INSERT INTO PastFixture ([MatchID],[LeaugeID],[Host],[Guest],[Unix_KickOff],[Status],[Local_KickOff],[Pre_Local_KickOff],[Local_Finish],[IsPreKickOffSent],[IsMatchSummSent],[IsDailySummSent],[Score],[IsScoreAET])
                                            SELECT [MatchID],[LeaugeID],[Host],[Guest],[Unix_KickOff],[Status],[Local_KickOff],[Pre_Local_KickOff],[Local_Finish],[IsPreKickOffSent],[IsMatchSummSent],[IsDailySummSent],[Score],[IsScoreAET] FROM [dbo].[Fixture]
                                            WHERE [MatchID] ={0} AND [Status] ={1} AND NOT EXISTS(SELECT ID FROM [dbo].[FixtureEvent] WHERE [MatchID] ={0}
											AND NOT EXISTS(SELECT ID FROM [dbo].[PastFixture] P WHERE P.[MatchID] ={0}))"                                            ;
                            db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID, finishedMatch.Status);

                            qry = @"DELETE FROM [dbo].[FixtureEvent] WHERE [MatchID] ={0} AND EXISTS(SELECT ID FROM [dbo].[PastFixtureEvent] PE WHERE PE.[MatchID] =[MatchID] AND PE.[NotificationID]=[NotificationID] AND PE.[Team]=[Team] 
                                            AND PE.[Player]=[Player] AND PE.[Minute]=[Minute] AND PE.[ScoreLine]=[ScoreLine])";
                            db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID);

                            qry = @"DELETE FROM [dbo].[Fixture] WHERE [MatchID] ={0} AND [Status] ={1} AND EXISTS(SELECT ID FROM [dbo].[PastFixture] P WHERE p.[MatchID] ={0})";
                            db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID, finishedMatch.Status);

                            qry = @"DELETE FROM [dbo].[FixtureEvent] WHERE [MatchID] ={0}";
                            db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID);

                            qry = @"DELETE FROM [dbo].[Fixture] WHERE [MatchID] ={0} AND [Status] ={1} AND NOT EXISTS(SELECT ID FROM [dbo].[FixtureEvent] WHERE [MatchID] ={0})";
                            db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID, finishedMatch.Status);

                            //db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID, finishedMatch.Status);
                        }

                        break;

                    case "postponed":
                        //update or add events
                        if (feedTime.Subtract(finishedMatch.Local_KickOff.GetValueOrDefault()).TotalMinutes > new TimeSpan(AppUtil.LastActiveHour, 0, 0).TotalMinutes)
                        {
                            qry = @"INSERT INTO [dbo].[PastFixtureEvent] ([MatchID],[NotificationID],[Team],[Player],[Minute],[ScoreLine],[IsPushed],[Timestamped])
                                              SELECT [MatchID],[NotificationID],[Team],[Player],[Minute],[ScoreLine],[IsPushed],[Timestamped] FROM [dbo].[FixtureEvent] FE WHERE [MatchID] ={0}
                                              AND NOT EXISTS(SELECT ID FROM [dbo].[PastFixtureEvent] PE WHERE PE.[MatchID] =FE.[MatchID] AND PE.[NotificationID]=FE.[NotificationID] AND PE.[Team]=FE.[Team] 
                                              AND PE.[Player]=FE.[Player] AND PE.[Minute]=FE.[Minute] AND PE.[ScoreLine]=FE.[ScoreLine])";
                            db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID);

                            qry = @"INSERT INTO PastFixture ([MatchID],[LeaugeID],[Host],[Guest],[Unix_KickOff],[Status],[Local_KickOff],[Pre_Local_KickOff],[Local_Finish],[IsPreKickOffSent],[IsMatchSummSent],[IsDailySummSent],[Score],[IsScoreAET])
                                            SELECT [MatchID],[LeaugeID],[Host],[Guest],[Unix_KickOff],[Status],[Local_KickOff],[Pre_Local_KickOff],[Local_Finish],[IsPreKickOffSent],[IsMatchSummSent],[IsDailySummSent],[Score],[IsScoreAET] FROM [dbo].[Fixture]
                                            WHERE [MatchID] ={0} AND [Status] ={1} AND NOT EXISTS(SELECT ID FROM [dbo].[FixtureEvent] WHERE [MatchID] ={0}
											AND NOT EXISTS(SELECT ID FROM [dbo].[PastFixture] P WHERE P.[MatchID] ={0}))"                                            ;
                            db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID, finishedMatch.Status);

                            qry = @"DELETE FROM [dbo].[FixtureEvent] WHERE [MatchID] ={0} AND EXISTS(SELECT ID FROM [dbo].[PastFixtureEvent] PE WHERE PE.[MatchID] =[MatchID] AND PE.[NotificationID]=[NotificationID] AND PE.[Team]=[Team] 
                                            AND PE.[Player]=[Player] AND PE.[Minute]=[Minute] AND PE.[ScoreLine]=[ScoreLine])";
                            db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID);

                            qry = @"DELETE FROM [dbo].[Fixture] WHERE [MatchID] ={0} AND [Status] ={1} AND EXISTS(SELECT ID FROM [dbo].[PastFixture] P WHERE p.[MatchID] ={0})";
                            db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID, finishedMatch.Status);

                            qry = @"DELETE FROM [dbo].[FixtureEvent] WHERE [MatchID] ={0}";
                            db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID);

                            qry = @"DELETE FROM [dbo].[Fixture] WHERE [MatchID] ={0} AND [Status] ={1} AND NOT EXISTS(SELECT ID FROM [dbo].[FixtureEvent] WHERE [MatchID] ={0})";
                            db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID, finishedMatch.Status);

                            //db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID, finishedMatch.Status);
                        }

                        break;

                    default:
                        break;
                    }
                }
            }
            catch (DbEntityValidationException exception)
            {
                foreach (DbValidationError validationError in exception.EntityValidationErrors.SelectMany(error => error.ValidationErrors))
                {
                    AppUtil.LogFileWrite(string.Format("{0} - {1}", validationError.PropertyName, validationError.ErrorMessage));
                }
                if (!string.IsNullOrEmpty(xmlDocInnerXml))
                {
                    AppUtil.LogFileWrite(xmlDocInnerXml);
                }
                workingTimerInterval = AppUtil.NoFeedSecondInterval * 1000;
            }
            catch (Exception rex)
            {
                AppUtil.LogFileWrite("Live Feed Service Run Error: " + rex.ToString());
                //AppUtil.LogFileWrite("Live Feed Service Run Error(StackTrace): " + rex.StackTrace);
                //if (rex.InnerException != null) AppUtil.LogFileWrite("Live Feed Service Run Error:(InnerException) " + rex.InnerException.ToString());
                if (!string.IsNullOrEmpty(xmlDocInnerXml))
                {
                    AppUtil.LogFileWrite(xmlDocInnerXml);
                }
                //Log detail to db
                workingTimerInterval = AppUtil.RequestSecondInterval * 1000;
            }
            finally
            {
                db.Dispose();
            }
        }
Пример #3
0
        public static void StartPull(ref int workingTimerInterval)
        {
            ConfigurationManager.RefreshSection("appSettings");
            int           canUpdate = 0, insertSkip = 1;
            List <string> goalEvents = new List <string> {
                "own_goal", "penalty", "goal"
            }; string xmlDocInnerXml = "";
            DateTime  feedTime = DateTime.Now;

            db = new GoalAlertEntities();
            try
            {
                if (AllEnabledLeague > 0)
                {
                    string[] leagues = (from s in wdb.Leagues.Where(f => f.IsEnabled == 1)
                                        select s.LeagueName).ToArray();

                    ReturnLeague = AllEnabledLeague;
                    XmlDocument xmlDoc = new XmlDocument();
                    //AppUtil.LogFileWrite(AppUtil.RequestUrl(leagues));
                    xmlDoc.Load(AppUtil.RequestUrl(leagues));
                    //xmlDoc.Load(@"C:\XmlScore\LiveScore.xml");
                    // = new FixtureEvent();  /* Modified 03082016 */
                    XmlSerializer serializer = new XmlSerializer(typeof(livescorefeed));
                    //XmlSerializer serializer = XmlSerializer.FromTypes(new[] { typeof(livescorefeed) })[0];
                    MemoryStream memStream = new MemoryStream(Encoding.UTF8.GetBytes(xmlDoc.InnerXml));
                    //if (xmlDoc != null) AppUtil.LogFileWrite(xmlDoc.InnerXml);
                    Fixture      fx; // = new Fixture(); /* Modified 03082016 */
                    FixtureEvent matchfx_event;
                    if (xmlDoc != null)
                    {
                        xmlDocInnerXml = xmlDoc.InnerXml;
                    }
                    livescorefeed resultingFeeds = (livescorefeed)serializer.Deserialize(memStream);
                    if (resultingFeeds != null && resultingFeeds.matches != null && resultingFeeds.matches.totalcount > 0)
                    {
                        foreach (livescorefeedMatchesItem match in resultingFeeds.matches.item)
                        {
                            //fx = new Fixture();
                            #region "PULL MATCH FIXTURES"
                            fx = db.Fixtures.FirstOrDefault(f => f.MatchID.ToLower() == match.id.ToLower());

                            if (fx == null) // || fx.ID <= 0) /* Modified 03082016 */
                            {
                                if (match.status.ToLower() != "finished")
                                {
                                    fx                  = new Fixture();
                                    fx.Guest            = match.teams.guests.name;
                                    fx.Host             = match.teams.hosts.name;
                                    fx.IsDailySummSent  = 0;
                                    fx.IsMatchSummSent  = 0;
                                    fx.IsPreKickOffSent = 0;
                                    fx.IsScoreAET       = false;
                                    foreach (League _league in wdb.Leagues.Where(l => l.LeagueName == match.contest))
                                    {
                                        fx.LeaugeID = _league.LeagueID;
                                    }
                                    fx.Local_KickOff     = Convert.ToDateTime(AppUtil.ConvertUNIXToDateTime(match.timestampstarts)).AddHours(AppUtil.GMTValue);
                                    fx.MatchID           = match.id;
                                    fx.Pre_Local_KickOff = fx.Local_KickOff.GetValueOrDefault().Subtract(new TimeSpan(0, AppUtil.MinutesBeforeKickoff, 0));
                                    fx.Score             = match.score;
                                    fx.Status            = match.status;
                                    fx.Unix_KickOff      = match.timestampstarts.ToString();

                                    //if (match.status.ToLower() == "finished")
                                    //    fx.Local_Finish = Convert.ToDateTime(AppUtil.ConvertUNIXToDateTime(Convert.ToInt32(resultingFeeds.timestamp_created))).AddHours(AppUtil.GMTValue);
                                    //else
                                    //    fx.Local_Finish = fx.Local_Finish;

                                    db.Fixtures.Add(fx);
                                    db.SaveChanges();
                                    insertSkip = 0;
                                }
                                else
                                {
                                    insertSkip = 1;
                                }
                            }
                            else
                            {
                                //fx.IsDailySummSent = false;
                                //fx.IsMatchSummSent = false;
                                //fx.IsPreKickOffSent = false;
                                //fx.IsScoreAET = false;

                                if (fx.Status == match.status & (fx.Status.ToLower() == "not_started" | fx.Status.ToLower() == "postponed") & fx.Unix_KickOff != match.timestampstarts.ToString()) //in case of change of start time
                                {
                                    fx.Local_KickOff     = Convert.ToDateTime(AppUtil.ConvertUNIXToDateTime(match.timestampstarts)).AddHours(AppUtil.GMTValue);
                                    fx.Pre_Local_KickOff = fx.Local_KickOff.GetValueOrDefault().Subtract(new TimeSpan(0, AppUtil.MinutesBeforeKickoff, 0));
                                    fx.Status            = match.status;
                                    fx.Unix_KickOff      = match.timestampstarts.ToString();
                                    db.SaveChanges();
                                }
                                if (fx.Status != match.status & fx.Unix_KickOff != match.timestampstarts.ToString()) //in case of postponement
                                {
                                    fx.Local_KickOff     = Convert.ToDateTime(AppUtil.ConvertUNIXToDateTime(match.timestampstarts)).AddHours(AppUtil.GMTValue);
                                    fx.Pre_Local_KickOff = fx.Local_KickOff.GetValueOrDefault().Subtract(new TimeSpan(0, AppUtil.MinutesBeforeKickoff, 0));
                                    fx.Status            = match.status;
                                    fx.Unix_KickOff      = match.timestampstarts.ToString();
                                    canUpdate            = 1;
                                }

                                if (fx.Status.ToLower() != match.status.ToLower() & fx.Unix_KickOff == match.timestampstarts.ToString())
                                {
                                    if (match.status.ToLower() == "finished" & fx.Status.ToLower() != "finished")
                                    {
                                        fx.Local_Finish = Convert.ToDateTime(AppUtil.ConvertUNIXToDateTime(Convert.ToInt32(resultingFeeds.timestampcreated))).AddHours(AppUtil.GMTValue);
                                    }
                                    fx.Status = match.status;
                                    canUpdate = 1;
                                }
                                if (fx.Score != match.score)
                                {
                                    fx.Score  = match.score; //XX - XX,
                                    canUpdate = 1;
                                }
                                if (canUpdate == 1)
                                {
                                    db.SaveChanges();
                                }
                            }
                            #endregion
                            //goal|own_goal|penalty|red_card|yellow_card|ps
                            //goal - goal
                            //penalty - goal scored from penalty
                            //own_goal - own goal
                            //yellow_card - yellow card
                            //red_card - red card
                            //ps - penalty shootout kick*
                            #region "EVENTS UPDATES"
                            if (match.events != null && match.events.Length > 0)

                            //if (canUpdate == 1 | insertSkip == 0)
                            {
                                //livescorefeedMatchesItemEventsEvent aetMatch = match.events.Where(w => goalEvents.Contains(w.type) == true).OrderByDescending(m => m.minute).FirstOrDefault();
                                livescorefeedMatchesItemCurrentstate et = new livescorefeedMatchesItemCurrentstate();
                                if (et.period != null && et.period.Length > 0)
                                {
                                    if (et.period == "extra_time")
                                    {
                                        fx.IsScoreAET = true;
                                        db.SaveChanges();
                                    }
                                }
                                //if (aetMatch != null)
                                //if (fx.IsScoreAET.GetValueOrDefault() != true & Convert.ToInt32(match.events.Where(w => goalEvents.Contains(w.type) == true).OrderByDescending(m => m.minute).FirstOrDefault().minute) > 90)
                                //{
                                //    fx.IsScoreAET = true;
                                //    db.SaveChanges();
                                //}
                                foreach (livescorefeedMatchesItemEventsEvent fx_event in match.events)
                                {
                                    int thisEventID = (wdb.Notifications.FirstOrDefault(f => f.Name.ToLower() == fx_event.type) != null) ?
                                                      wdb.Notifications.FirstOrDefault(f => f.Name.ToLower() == fx_event.type).ID : 7;

                                    string team = fx_event.team == "guests" ? match.teams.guests.name : match.teams.hosts.name; //Get Team Name

                                    if (fx_event.score != null)
                                    {
                                        var goal = db.FixtureEvents.Where(g => g.MatchID == match.id && g.ScoreLine == fx_event.score).FirstOrDefault();
                                        if (goal == null)
                                        {
                                            matchfx_event                = new FixtureEvent();
                                            matchfx_event.IsPushed       = 0;
                                            matchfx_event.MatchID        = match.id;
                                            matchfx_event.Minute         = fx_event.minute;
                                            matchfx_event.NotificationID = thisEventID;
                                            if (matchfx_event.NotificationID == 7)
                                            {
                                                AppUtil.LogFileWrite(fx_event.type);
                                                AppUtil.LogFileWrite(xmlDoc.InnerXml);
                                            }
                                            matchfx_event.Player      = fx_event.player;
                                            matchfx_event.ScoreLine   = fx_event.score;
                                            matchfx_event.Team        = team;
                                            matchfx_event.Timestamped = DateTime.Now;
                                            db.FixtureEvents.Add(matchfx_event);
                                            db.SaveChanges();
                                        }
                                        else
                                        {
                                            if (goal.Player != fx_event.player || goal.Minute != fx_event.minute)
                                            {
                                                goal.Player = fx_event.player;
                                                goal.Minute = fx_event.minute;
                                                db.SaveChanges();
                                            }
                                        }
                                    }
                                    else
                                    {
                                        if (fx_event.score == null)
                                        {
                                            var card = db.FixtureEvents.Where(c => c.MatchID == match.id && c.Player == fx_event.player && c.Team == team && c.Minute == fx_event.minute).FirstOrDefault();
                                            if (card == null)
                                            {
                                                matchfx_event                = new FixtureEvent();
                                                matchfx_event.IsPushed       = 0;
                                                matchfx_event.MatchID        = match.id;
                                                matchfx_event.Minute         = fx_event.minute;
                                                matchfx_event.NotificationID = thisEventID;
                                                if (matchfx_event.NotificationID == 7)
                                                {
                                                    AppUtil.LogFileWrite(fx_event.type);
                                                    AppUtil.LogFileWrite(xmlDoc.InnerXml);
                                                }
                                                matchfx_event.Player = fx_event.player;
                                                //matchfx_event.ScoreLine = fx_event.score;
                                                //matchfx_event.Team = fx_event.team; //value="guests"/"hosts"
                                                matchfx_event.Team        = team;//fx_event.team == "guests" ? match.teams.guests.name : match.teams.hosts.name;
                                                matchfx_event.Timestamped = DateTime.Now;
                                                db.FixtureEvents.Add(matchfx_event);
                                                db.SaveChanges();
                                            }
                                        }
                                    }
                                }
                            }
                            #endregion
                        }
                    }
                    else //there is no feed at all
                    {
                        ReturnLeague -= 1;
                    }

                    if (ReturnLeague == 0)
                    {
                        workingTimerInterval = AppUtil.NoFeedSecondInterval * 1000; //wait for 1 minute
                        AppUtil.LogFileWrite(string.Format("No Feed Return For All Enabled League! Live Feed Service Waiting for {0} minute......", (AppUtil.NoFeedSecondInterval / 60).ToString()));
                    }
                    else
                    {
                        workingTimerInterval = AppUtil.RequestSecondInterval * 1000;
                    }
                    // "http://pi.xmlscores.com/feed.html?f=xml&type=matches&contest=eng_pl&t1=1412509500&t2=1414237500&s=1&l=7&events=1&open=b4d88044654d82c4eccf19f8ae9c024f";

                    //string cmdText = "Insert into Fixture(MatchId,LeagueId,Host,Guest,Status,Unix_KickOff,IsPreKickOffSent,IsMatchSummSent,IsDailySummSent])VALUES(@matchid,@leagueid,@host,@guest,@status,@kickoff,@sent1,@sent2,@sent3)";
                }
                else
                {
                    workingTimerInterval = AppUtil.NoLeagueSecondInterval * 1000; //wait for 1 hour
                    AppUtil.LogFileWrite(string.Format("No League Enabled Yet! Live Feed Service Waiting for {0} minute......", (AppUtil.NoLeagueSecondInterval / 60).ToString()));
                }
                ////////////***********START INSERT, DELETE FIXTURE,PASTFIXTURE, ETC HERE********************/////////////
                #region "START INSERT, DELETE FIXTURE,PASTFIXTURE, ETC HERE"
                //     db = new GoalAlertEntities();
                //     qry = "delete from PastFixture where MatchID in (select MatchID from Fixture)";
                //     db.Database.ExecuteSqlCommand(qry);
                //     qry = "delete PastFixtureEvent where MatchID in (select MatchID from FixtureEvent)";
                //     db.Database.ExecuteSqlCommand(qry);
                //     foreach (Fixture finishedMatch in db.Fixtures.ToList())
                //     {
                //         switch (finishedMatch.Status.ToLower()) //not_started, finished, active, postponed;
                //         {
                //             case "active":
                //                 //update/ or add events
                //                 if (feedTime.Subtract(finishedMatch.Local_KickOff.GetValueOrDefault()).TotalMinutes > new TimeSpan(AppUtil.LastActiveHour, 0, 0).TotalMinutes)
                //                 {
                //                     qry = @"INSERT INTO [dbo].[PastFixtureEvent] ([MatchID],[NotificationID],[Team],[Player],[Minute],[ScoreLine],[IsPushed],[Timestamped])
                //                                   SELECT [MatchID],[NotificationID],[Team],[Player],[Minute],[ScoreLine],[IsPushed],[Timestamped] FROM [dbo].[FixtureEvent] FE WHERE [MatchID] ={0}
                //                                   AND NOT EXISTS(SELECT ID FROM [dbo].[PastFixtureEvent] PE WHERE PE.[MatchID] =FE.[MatchID] AND PE.[NotificationID]=FE.[NotificationID] AND PE.[Team]=FE.[Team]
                //                                   AND PE.[Player]=FE.[Player] AND PE.[Minute]=FE.[Minute] AND PE.[ScoreLine]=FE.[ScoreLine])";
                //                     db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID);

                //                     qry = @"INSERT INTO PastFixture ([MatchID],[LeaugeID],[Host],[Guest],[Unix_KickOff],[Status],[Local_KickOff],[Pre_Local_KickOff],[Local_Finish],[IsPreKickOffSent],[IsMatchSummSent],[IsDailySummSent],[Score],[IsScoreAET])
                //                                 SELECT [MatchID],[LeaugeID],[Host],[Guest],[Unix_KickOff],[Status],[Local_KickOff],[Pre_Local_KickOff],[Local_Finish],[IsPreKickOffSent],[IsMatchSummSent],[IsDailySummSent],[Score],[IsScoreAET] FROM [dbo].[Fixture]
                //                                 WHERE [MatchID] ={0} AND [Status] ={1} AND NOT EXISTS(SELECT ID FROM [dbo].[FixtureEvent] WHERE [MatchID] ={0}
                //AND NOT EXISTS(SELECT ID FROM [dbo].[PastFixture] P WHERE P.[MatchID] ={0}))";
                //                     db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID, finishedMatch.Status);

                //                     qry = @"DELETE FROM [dbo].[FixtureEvent] WHERE [MatchID] ={0} AND EXISTS(SELECT ID FROM [dbo].[PastFixtureEvent] PE WHERE PE.[MatchID] =[MatchID] AND PE.[NotificationID]=[NotificationID] AND PE.[Team]=[Team]
                //                                 AND PE.[Player]=[Player] AND PE.[Minute]=[Minute] AND PE.[ScoreLine]=[ScoreLine])";
                //                     db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID);

                //                     qry = @"DELETE FROM [dbo].[Fixture] WHERE [MatchID] ={0} AND [Status] ={1} AND EXISTS(SELECT ID FROM [dbo].[PastFixture] P WHERE p.[MatchID] ={0})";
                //                     db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID, finishedMatch.Status);

                //                     qry = @"DELETE FROM [dbo].[FixtureEvent] WHERE [MatchID] ={0}";
                //                     db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID);

                //                     qry = @"DELETE FROM [dbo].[Fixture] WHERE [MatchID] ={0} AND [Status] ={1} AND NOT EXISTS(SELECT ID FROM [dbo].[FixtureEvent] WHERE [MatchID] ={0})";
                //                     db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID, finishedMatch.Status);

                //                     //db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID, finishedMatch.Status);
                //                 }

                //                 break;
                //             case "finished":
                //                 //update or add events
                //                 //prepare for archive
                //                 if (feedTime.Subtract(finishedMatch.Local_Finish.GetValueOrDefault()).TotalMinutes > PastActiveMinutes.TotalMinutes)
                //                 {
                //                     qry = @"INSERT INTO [dbo].[PastFixtureEvent] ([MatchID],[NotificationID],[Team],[Player],[Minute],[ScoreLine],[IsPushed],[Timestamped])
                //                                   SELECT [MatchID],[NotificationID],[Team],[Player],[Minute],[ScoreLine],[IsPushed],[Timestamped] FROM [dbo].[FixtureEvent] FE WHERE [IsPushed] >0 AND [MatchID] ={0}
                //                                   AND NOT EXISTS(SELECT ID FROM [dbo].[PastFixtureEvent] PE WHERE PE.[MatchID] =FE.[MatchID] AND PE.[NotificationID]=FE.[NotificationID] AND PE.[Team]=FE.[Team]
                //                                   AND PE.[Player]=FE.[Player] AND PE.[Minute]=FE.[Minute] AND PE.[ScoreLine]=FE.[ScoreLine])";
                //                     db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID);

                //                     qry = @"INSERT INTO PastFixture ([MatchID],[LeaugeID],[Host],[Guest],[Unix_KickOff],[Status],[Local_KickOff],[Pre_Local_KickOff],[Local_Finish],[IsPreKickOffSent],[IsMatchSummSent],[IsDailySummSent],[Score],[IsScoreAET])
                //                                 SELECT [MatchID],[LeaugeID],[Host],[Guest],[Unix_KickOff],[Status],[Local_KickOff],[Pre_Local_KickOff],[Local_Finish],[IsPreKickOffSent],[IsMatchSummSent],[IsDailySummSent],[Score],[IsScoreAET] FROM [dbo].[Fixture]
                //                                 WHERE [MatchID] ={0} AND [Status] ={1} AND NOT EXISTS(SELECT ID FROM [dbo].[FixtureEvent] WHERE [IsPushed] =0 AND [MatchID] ={0}
                //AND NOT EXISTS(SELECT ID FROM [dbo].[PastFixture] P WHERE P.[MatchID] ={0}))";
                //                     db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID, finishedMatch.Status);

                //                     qry = @"DELETE FROM [dbo].[FixtureEvent] WHERE [MatchID] ={0} AND EXISTS(SELECT ID FROM [dbo].[PastFixtureEvent] PE WHERE PE.[MatchID] =[MatchID] AND PE.[NotificationID]=[NotificationID] AND PE.[Team]=[Team]
                //                                 AND PE.[Player]=[Player] AND PE.[Minute]=[Minute] AND PE.[ScoreLine]=[ScoreLine])";
                //                     db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID);

                //                     qry = @"DELETE FROM [dbo].[Fixture] WHERE [MatchID] ={0} AND [Status] ={1} AND EXISTS(SELECT ID FROM [dbo].[PastFixture] P WHERE p.[MatchID] ={0})";
                //                     db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID, finishedMatch.Status);

                //                     qry = @"DELETE FROM [dbo].[FixtureEvent] WHERE [IsPushed] >0 AND [MatchID] ={0}";
                //                     db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID);

                //                     qry = @"DELETE FROM [dbo].[Fixture] WHERE [MatchID] ={0} AND [Status] ={1} AND NOT EXISTS(SELECT ID FROM [dbo].[FixtureEvent] WHERE [MatchID] ={0})";
                //                     db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID, finishedMatch.Status);

                //                     //db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID, finishedMatch.Status);
                //                 }
                //                 db.SaveChanges();
                //                 break;
                //             case "not_started":
                //                 //do nothing for now
                //                 if (feedTime.Subtract(finishedMatch.Local_KickOff.GetValueOrDefault()).TotalMinutes > new TimeSpan(AppUtil.LastActiveHour, 0, 0).TotalMinutes)
                //                 {
                //                     qry = @"INSERT INTO [dbo].[PastFixtureEvent] ([MatchID],[NotificationID],[Team],[Player],[Minute],[ScoreLine],[IsPushed],[Timestamped])
                //                                   SELECT [MatchID],[NotificationID],[Team],[Player],[Minute],[ScoreLine],[IsPushed],[Timestamped] FROM [dbo].[FixtureEvent] FE WHERE [MatchID] ={0}
                //                                   AND NOT EXISTS(SELECT ID FROM [dbo].[PastFixtureEvent] PE WHERE PE.[MatchID] =FE.[MatchID] AND PE.[NotificationID]=FE.[NotificationID] AND PE.[Team]=FE.[Team]
                //                                   AND PE.[Player]=FE.[Player] AND PE.[Minute]=FE.[Minute] AND PE.[ScoreLine]=FE.[ScoreLine])";
                //                     db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID);

                //                     qry = @"INSERT INTO PastFixture ([MatchID],[LeaugeID],[Host],[Guest],[Unix_KickOff],[Status],[Local_KickOff],[Pre_Local_KickOff],[Local_Finish],[IsPreKickOffSent],[IsMatchSummSent],[IsDailySummSent],[Score],[IsScoreAET])
                //                                 SELECT [MatchID],[LeaugeID],[Host],[Guest],[Unix_KickOff],[Status],[Local_KickOff],[Pre_Local_KickOff],[Local_Finish],[IsPreKickOffSent],[IsMatchSummSent],[IsDailySummSent],[Score],[IsScoreAET] FROM [dbo].[Fixture]
                //                                 WHERE [MatchID] ={0} AND [Status] ={1} AND NOT EXISTS(SELECT ID FROM [dbo].[FixtureEvent] WHERE [MatchID] ={0}
                //AND NOT EXISTS(SELECT ID FROM [dbo].[PastFixture] P WHERE P.[MatchID] ={0}))";
                //                     db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID, finishedMatch.Status);

                //                     qry = @"DELETE FROM [dbo].[FixtureEvent] WHERE [MatchID] ={0} AND EXISTS(SELECT ID FROM [dbo].[PastFixtureEvent] PE WHERE PE.[MatchID] =[MatchID] AND PE.[NotificationID]=[NotificationID] AND PE.[Team]=[Team]
                //                                 AND PE.[Player]=[Player] AND PE.[Minute]=[Minute] AND PE.[ScoreLine]=[ScoreLine])";
                //                     db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID);

                //                     qry = @"DELETE FROM [dbo].[Fixture] WHERE [MatchID] ={0} AND [Status] ={1} AND EXISTS(SELECT ID FROM [dbo].[PastFixture] P WHERE p.[MatchID] ={0})";
                //                     db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID, finishedMatch.Status);

                //                     qry = @"DELETE FROM [dbo].[FixtureEvent] WHERE [MatchID] ={0}";
                //                     db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID);

                //                     qry = @"DELETE FROM [dbo].[Fixture] WHERE [MatchID] ={0} AND [Status] ={1} AND NOT EXISTS(SELECT ID FROM [dbo].[FixtureEvent] WHERE [MatchID] ={0})";
                //                     db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID, finishedMatch.Status);

                //                     //db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID, finishedMatch.Status);
                //                 }

                //                 break;
                //             case "postponed":
                //                 //update or add events
                //                 if (feedTime.Subtract(finishedMatch.Local_KickOff.GetValueOrDefault()).TotalMinutes > new TimeSpan(AppUtil.LastActiveHour, 0, 0).TotalMinutes)
                //                 {
                //                     qry = @"INSERT INTO [dbo].[PastFixtureEvent] ([MatchID],[NotificationID],[Team],[Player],[Minute],[ScoreLine],[IsPushed],[Timestamped])
                //                                   SELECT [MatchID],[NotificationID],[Team],[Player],[Minute],[ScoreLine],[IsPushed],[Timestamped] FROM [dbo].[FixtureEvent] FE WHERE [MatchID] ={0}
                //                                   AND NOT EXISTS(SELECT ID FROM [dbo].[PastFixtureEvent] PE WHERE PE.[MatchID] =FE.[MatchID] AND PE.[NotificationID]=FE.[NotificationID] AND PE.[Team]=FE.[Team]
                //                                   AND PE.[Player]=FE.[Player] AND PE.[Minute]=FE.[Minute] AND PE.[ScoreLine]=FE.[ScoreLine])";
                //                     db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID);

                //                     qry = @"INSERT INTO PastFixture ([MatchID],[LeaugeID],[Host],[Guest],[Unix_KickOff],[Status],[Local_KickOff],[Pre_Local_KickOff],[Local_Finish],[IsPreKickOffSent],[IsMatchSummSent],[IsDailySummSent],[Score],[IsScoreAET])
                //                                 SELECT [MatchID],[LeaugeID],[Host],[Guest],[Unix_KickOff],[Status],[Local_KickOff],[Pre_Local_KickOff],[Local_Finish],[IsPreKickOffSent],[IsMatchSummSent],[IsDailySummSent],[Score],[IsScoreAET] FROM [dbo].[Fixture]
                //                                 WHERE [MatchID] ={0} AND [Status] ={1} AND NOT EXISTS(SELECT ID FROM [dbo].[FixtureEvent] WHERE [MatchID] ={0}
                //AND NOT EXISTS(SELECT ID FROM [dbo].[PastFixture] P WHERE P.[MatchID] ={0}))";
                //                     db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID, finishedMatch.Status);

                //                     qry = @"DELETE FROM [dbo].[FixtureEvent] WHERE [MatchID] ={0} AND EXISTS(SELECT ID FROM [dbo].[PastFixtureEvent] PE WHERE PE.[MatchID] =[MatchID] AND PE.[NotificationID]=[NotificationID] AND PE.[Team]=[Team]
                //                                 AND PE.[Player]=[Player] AND PE.[Minute]=[Minute] AND PE.[ScoreLine]=[ScoreLine])";
                //                     db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID);

                //                     qry = @"DELETE FROM [dbo].[Fixture] WHERE [MatchID] ={0} AND [Status] ={1} AND EXISTS(SELECT ID FROM [dbo].[PastFixture] P WHERE p.[MatchID] ={0})";
                //                     db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID, finishedMatch.Status);

                //                     qry = @"DELETE FROM [dbo].[FixtureEvent] WHERE [MatchID] ={0}";
                //                     db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID);

                //                     qry = @"DELETE FROM [dbo].[Fixture] WHERE [MatchID] ={0} AND [Status] ={1} AND NOT EXISTS(SELECT ID FROM [dbo].[FixtureEvent] WHERE [MatchID] ={0})";
                //                     db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID, finishedMatch.Status);

                //                     //db.Database.ExecuteSqlCommand(qry, finishedMatch.MatchID, finishedMatch.Status);
                //                 }

                //                 break;
                //             default:
                //                 break;
                //         }
                //     }
                #endregion
                ////////////***********END INSERT, DELETE FIXTURE,PASTFIXTURE, ETC HERE********************/////////////
            }
            catch (DbEntityValidationException exception)
            {
                foreach (DbValidationError validationError in exception.EntityValidationErrors.SelectMany(error => error.ValidationErrors))
                {
                    AppUtil.LogFileWrite(string.Format("{0} - {1}", validationError.PropertyName, validationError.ErrorMessage));
                }
                if (!string.IsNullOrEmpty(xmlDocInnerXml))
                {
                    AppUtil.LogFileWrite(xmlDocInnerXml);
                }
                workingTimerInterval = AppUtil.NoFeedSecondInterval * 1000;
            }
            catch (Exception rex)
            {
                AppUtil.LogFileWrite("Live Feed Service Run Error: " + rex.ToString());
                //AppUtil.LogFileWrite("Live Feed Service Run Error(StackTrace): " + rex.StackTrace);
                //if (rex.InnerException != null) AppUtil.LogFileWrite("Live Feed Service Run Error:(InnerException) " + rex.InnerException.ToString());
                if (!string.IsNullOrEmpty(xmlDocInnerXml))
                {
                    AppUtil.LogFileWrite(xmlDocInnerXml);
                }
                //Log detail to db
                workingTimerInterval = AppUtil.RequestSecondInterval * 1000;
            }
            finally
            {
                db.Dispose();
            }
        }