GetScheduledTileNotifications() public method

public GetScheduledTileNotifications ( ) : IVectorView
return IVectorView
        public async void Run(IBackgroundTaskInstance taskInstance)
        {
            BackgroundTaskDeferral deferral = taskInstance.GetDeferral();

            ApplicationDataContainer roamingSettings = ApplicationData.Current.RoamingSettings;
            ApplicationDataContainer localSettings   = ApplicationData.Current.LocalSettings;

            resourceLoader = ResourceLoader.GetForViewIndependentUse();
            Utilities.LineSerializer lineSerializer = new Utilities.LineSerializer(resourceLoader);
            //IList<Line> savedLines = await lineSerializer.readLines();

            var             profile = NetworkInformation.GetInternetConnectionProfile();
            NetworkCostType cost    = NetworkCostType.Unknown;

            if (profile != null)
            {
                cost = profile.GetConnectionCost().NetworkCostType;
            }

            // get secondary tiles
            var tiles = await SecondaryTile.FindAllForPackageAsync();

            if (tiles.Count != 0)
            {
                foreach (SecondaryTile tile in tiles) // get data from each tile
                {
                    string[] tileData  = tile.TileId.Split('-');
                    string[] tileData2 = tile.Arguments.Split('|');
                    Line     line      = await lineSerializer.openLine(tileData[1], tileData[2], tileData[3], tileData[4], tileData2[0], tileData2[1]);


                    if (((bool)localSettings.Values["alwaysupdate"] || cost == NetworkCostType.Unrestricted) && line.LastUpdated < DateTime.Today.Date) // update only if necessary
                    {
                        try { await line.updateOn(); }
                        catch (System.Net.Http.HttpRequestException)
                        {
                            deferral.Complete();
                            return;
                        }
                        line.LastUpdated = DateTime.Today.Date;

                        await lineSerializer.saveLine(line);
                    }

                    Windows.UI.Notifications.TileUpdater updatemngr = null;
                    try { updatemngr = TileUpdateManager.CreateTileUpdaterForSecondaryTile(tile.TileId); }
                    catch (Exception)
                    {
                        deferral.Complete();
                        return;
                    }
                    if (updatemngr.GetScheduledTileNotifications().Count == 0 || (updatemngr.GetScheduledTileNotifications().Count > 0 && updatemngr.GetScheduledTileNotifications()[0].DeliveryTime < DateTime.Today)) // if scheduled updates are outdated or nonexistent
                    {
                        updatemngr.Clear();

                        if (!line.Error)
                        {
                            if (line.Buses.Count > 0)
                            {
                                string prevfromtime = "";
                                bool   first        = true;
                                for (int i = 0; i < line.Buses.Count; i++)   // get Buses from the line
                                {
                                    string fromtime, num, from, to;
                                    line.Buses[i].TryGetValue("vonalnev", out num);
                                    line.Buses[i].TryGetValue("indulasi_ido", out fromtime);
                                    line.Buses[i].TryGetValue("indulasi_hely", out from);
                                    line.Buses[i].TryGetValue("erkezesi_hely", out to);
                                    num = num.Split('|')[0];

                                    if (DateTime.ParseExact(fromtime, "HH:mm", CultureInfo.InvariantCulture) >= DateTime.Now && !(!(bool)roamingSettings.Values["canchange"] && num == " ∙∙∙") &&
                                        !((bool)roamingSettings.Values["exact"] && ((line.From != from && line.From.Contains(",")) || (line.To != to && line.To.Contains(",")))))
                                    {
                                        //found = true;
                                        string name, totime;
#if WINDOWS_UWP
                                        name = line.Name;
#elif WINDOWS_PHONE_APP
                                        name = "";
#endif
                                        line.Buses[i].TryGetValue("erkezesi_ido", out totime);

                                        XmlDocument xmlDoc = getXML(name, num, fromtime, from, totime, to, false);

                                        DateTime showUpdateAt;
                                        if (first)
                                        {
                                            showUpdateAt = DateTime.Now.AddSeconds(1);
                                            first        = false;
                                        }
                                        else
                                        {
                                            showUpdateAt = DateTime.Parse(prevfromtime).AddSeconds(30);
                                        }

                                        ScheduledTileNotification scheduledUpdate = new ScheduledTileNotification(xmlDoc, new DateTimeOffset(showUpdateAt));
                                        scheduledUpdate.ExpirationTime = new DateTimeOffset(DateTime.Today.AddDays(1).AddHours(1));
                                        updatemngr.AddToSchedule(scheduledUpdate);

                                        prevfromtime = fromtime;
                                    }
                                }
                            }
                            if (updatemngr.GetScheduledTileNotifications().Count == 0) // if there are no Buses today
                            {
                                try { await line.updateOn(DateTime.Today.AddDays(1)); }
                                catch (System.Net.Http.HttpRequestException)
                                {
                                    deferral.Complete();
                                    return;
                                }

                                if (!line.Error && line.Buses.Count > 0)
                                {
                                    int    i = 0;
                                    string num, from, to;
                                    do
                                    {
                                        string fromtime, name, totime;
#if WINDOWS_UWP
                                        name = line.Name;
#elif WINDOWS_PHONE_APP
                                        name = "";
#endif
                                        line.Buses[i].TryGetValue("erkezesi_ido", out totime);
                                        line.Buses[i].TryGetValue("indulasi_ido", out fromtime);
                                        line.Buses[i].TryGetValue("vonalnev", out num);
                                        line.Buses[i].TryGetValue("indulasi_hely", out from);
                                        line.Buses[i].TryGetValue("erkezesi_hely", out to);
                                        num = num.Split('|')[0];

                                        if (!(!(bool)roamingSettings.Values["canchange"] && num == " ∙∙∙") && !((bool)roamingSettings.Values["exact"] && ((line.From != from && line.From.Contains(",")) || (line.To != to && line.To.Contains(",")))))
                                        {
                                            XmlDocument xmlDoc       = getXML(name, num, fromtime, from, totime, to, true);
                                            DateTime    showUpdateAt = DateTime.Now.AddSeconds(1);

                                            ScheduledTileNotification scheduledUpdate = new ScheduledTileNotification(xmlDoc, new DateTimeOffset(showUpdateAt));
                                            scheduledUpdate.ExpirationTime = new DateTimeOffset(DateTime.Today.AddDays(1).AddHours(1));
                                            updatemngr.AddToSchedule(scheduledUpdate);
                                        }

                                        i++;
                                    } while (i < line.Buses.Count && ((!(bool)roamingSettings.Values["canchange"] && num == " ∙∙∙") || ((bool)roamingSettings.Values["exact"] && ((line.From != from && line.From.Contains(",")) || (line.To != to && line.To.Contains(","))))));
                                }
                            }
                        }
                    }
                }
            }
            deferral.Complete();
        }
Example #2
0
        public async void Run(IBackgroundTaskInstance taskInstance)
        {
            BackgroundTaskDeferral deferral = taskInstance.GetDeferral();

            ApplicationDataContainer roamingSettings = ApplicationData.Current.RoamingSettings;
            ApplicationDataContainer localSettings   = ApplicationData.Current.LocalSettings;

            resourceLoader = ResourceLoader.GetForViewIndependentUse();

            //main tile
            Windows.UI.Notifications.TileUpdater mainmngr = null;
            try { mainmngr = TileUpdateManager.CreateTileUpdaterForApplication(); }
            catch (Exception)
            {
                deferral.Complete();
                return;
            }

            string town = null;

            if ((bool?)localSettings.Values["location"] != false)
            {
                town = await Utilities.LocationFinder.GetLocation();
            }

            if ((string)localSettings.Values["lastlocation"] == town && (string)localSettings.Values["lastupdate"] == DateTime.Today.Date.ToString())
            {
                deferral.Complete();
                return;
            }

            foreach (var tile in mainmngr.GetScheduledTileNotifications())
            {
                mainmngr.RemoveFromSchedule(tile);
            }
            mainmngr.Clear();

            var             profile = NetworkInformation.GetInternetConnectionProfile();
            NetworkCostType cost    = NetworkCostType.Unknown;

            if (profile != null)
            {
                cost = profile.GetConnectionCost().NetworkCostType;
            }

            if (town != null)
            {
                Utilities.LineSerializer lineSerializer = new Utilities.LineSerializer(resourceLoader);
                IList <Line>             linesfromhere  = await lineSerializer.readLinesFrom(town);

                List <int> busindices = new List <int>();

                if (((bool)localSettings.Values["alwaysupdate"] || cost == NetworkCostType.Unrestricted) && linesfromhere.Count == 0 && (bool)roamingSettings.Values["showhome"] && roamingSettings.Values["homename"] != null)
                {
                    List <Dictionary <string, string> > stops = await Utilities.Autocomplete.GetSuggestions(town, DateTime.Today.Date.ToString());

                    foreach (var stop in stops)
                    {
                        if (stop["Nev"] == town)
                        {
                            Line templine = new Line(stop["VarosID"], (string)roamingSettings.Values["homesid"], stop["MegalloID"], (string)roamingSettings.Values["homelsid"], stop["Nev"], (string)roamingSettings.Values["homename"]);
                            await templine.updateOn(true);

                            bool   isfirst      = true;
                            string previoustime = "";
                            foreach (var bus in templine.Buses)
                            {
                                if (!(!(bool)roamingSettings.Values["canchange"] && bus["vonalnev"].Split('|')[0] == " ∙∙∙") && !((bool)roamingSettings.Values["exact"] && (string)roamingSettings.Values["homename"] != bus["erkezesi_hely"] && ((string)roamingSettings.Values["homename"]).Contains(",")))
                                {
                                    DateTime showUpdateAt;
                                    if (isfirst)
                                    {
                                        showUpdateAt = DateTime.Now.AddSeconds(5);
                                        isfirst      = false;
                                    }
                                    else
                                    {
                                        showUpdateAt = DateTime.Parse(previoustime).AddSeconds(30);
                                    }

                                    previoustime = bus["indulasi_ido"];
                                    XmlDocument xmlDoc = getXML(town, bus["vonalnev"].Split('|')[0], bus["indulasi_ido"], bus["indulasi_hely"], bus["erkezesi_ido"], bus["erkezesi_hely"], false);
                                    ScheduledTileNotification scheduledUpdate = new ScheduledTileNotification(xmlDoc, new DateTimeOffset(showUpdateAt));
                                    scheduledUpdate.ExpirationTime = new DateTimeOffset(DateTime.Today.AddDays(1).AddHours(1));
                                    mainmngr.AddToSchedule(scheduledUpdate);
                                }
                            }
                            deferral.Complete();
                            return;
                        }
                    }
                }

                // update lines
                foreach (var line in linesfromhere)
                {
                    if (((bool)localSettings.Values["alwaysupdate"] || cost == NetworkCostType.Unrestricted) && line.LastUpdated < DateTime.Today.Date)
                    {
                        try { await line.updateOn(DateTime.Today); }
                        catch (System.Net.Http.HttpRequestException)
                        {
                            deferral.Complete();
                            return;
                        }
                        line.LastUpdated = DateTime.Today.Date;

                        await lineSerializer.saveLine(line);
                    }

                    busindices.Add(0);
                }

                bool   done = false;
                int    minind;
                string prevfromtime = "";
                bool   first        = true;

                // go through all possible lines
                while (!done)
                {
                    DateTime mintime = DateTime.Today.AddDays(1);
                    minind = -1;

                    for (int j = 0; j < linesfromhere.Count; j++) // find next time
                    {
                        if (linesfromhere[j].Buses.Count < 1 && j < linesfromhere.Count - 1)
                        {
                            j++;
                        }
                        else if (linesfromhere[j].Buses.Count < 1 && j == linesfromhere.Count - 1)
                        {
                            break;
                        }

                        int i = busindices[j];
                        if (i != -1 && i < linesfromhere[j].Buses.Count)
                        {
                            string fromtime, num, from, to;
                            linesfromhere[j].Buses[i].TryGetValue("vonalnev", out num);
                            linesfromhere[j].Buses[i].TryGetValue("indulasi_ido", out fromtime);
                            linesfromhere[j].Buses[i].TryGetValue("indulasi_hely", out from);
                            linesfromhere[j].Buses[i].TryGetValue("erkezesi_hely", out to);
                            num = num.Split('|')[0];

                            var fromtime_date = DateTime.ParseExact(fromtime, "HH:mm", CultureInfo.InvariantCulture);

                            if (fromtime_date >= DateTime.Now && !(!(bool)roamingSettings.Values["canchange"] && num == " ∙∙∙") &&
                                !((bool)roamingSettings.Values["exact"] && ((linesfromhere[j].From != from && linesfromhere[j].From.Contains(",")) || (linesfromhere[j].To != to && linesfromhere[j].To.Contains(",")))))
                            {
                                if (fromtime_date < mintime)
                                {
                                    minind  = j;
                                    mintime = fromtime_date;
                                }
                            }
                            else if (linesfromhere[j].Buses.Count - 1 > busindices[j])
                            {
                                busindices[j]++;
                                j--;
                            }
                            else
                            {
                                busindices[j] = -1;
                            }
                        }
                    }

                    if (minind != -1)
                    {
                        int    i = busindices[minind];
                        string fromtime, num, from, to, name, totime;
                        name = linesfromhere[minind].Name;
                        linesfromhere[minind].Buses[i].TryGetValue("erkezesi_ido", out totime);
                        linesfromhere[minind].Buses[i].TryGetValue("vonalnev", out num);
                        linesfromhere[minind].Buses[i].TryGetValue("indulasi_ido", out fromtime);
                        linesfromhere[minind].Buses[i].TryGetValue("indulasi_hely", out from);
                        linesfromhere[minind].Buses[i].TryGetValue("erkezesi_hely", out to);
                        num = num.Split('|')[0];

                        XmlDocument xmlDoc = getXML(name, num, fromtime, from, totime, to, false);

                        DateTime showUpdateAt;
                        if (first)
                        {
                            showUpdateAt = DateTime.Now.AddSeconds(5);
                            first        = false;
                        }
                        else
                        {
                            showUpdateAt = DateTime.Parse(prevfromtime).AddSeconds(30);
                        }

                        ScheduledTileNotification scheduledUpdate = new ScheduledTileNotification(xmlDoc, new DateTimeOffset(showUpdateAt));
                        scheduledUpdate.ExpirationTime = new DateTimeOffset(DateTime.Today.AddDays(1).AddHours(1));
                        mainmngr.AddToSchedule(scheduledUpdate);

                        prevfromtime = fromtime;
                        if (busindices[minind] != -1 && linesfromhere[minind].Buses.Count - 1 > busindices[minind])
                        {
                            busindices[minind]++;
                        }
                        else
                        {
                            busindices[minind] = -1;
                        }
                    }

                    done = true;
                    for (int i = 0; i < busindices.Count; i++)
                    {
                        if (busindices[i] == linesfromhere[i].Buses.Count)
                        {
                            busindices[i] = -1;
                        }
                        if (busindices[i] != -1)
                        {
                            done = false;
                        }
                    }
                }

                localSettings.Values["lastlocation"] = town;
                localSettings.Values["lastupdate"]   = DateTime.Today.Date.ToString();
            }
            deferral.Complete();
        }
 private void ClearQueue(TileUpdater tileUpdater)
 {
     foreach (var update in tileUpdater.GetScheduledTileNotifications())
     {
         tileUpdater.RemoveFromSchedule(update);
     }
 }