Ejemplo n.º 1
0
    public async Task <OCApiRoute> fetchTimes(String stopID)
    {
        String times     = "";
        String fourTimes = "";

        DateTime          now          = DateTime.Now;
        String            originalDate = "";
        List <OCSchedule> schedules    = await OCTranspoStopsData.getScheduleForDayAndStop(now.DayOfWeek.ToString(), stopID, this.RouteNumber);

        int idx = 0;

        foreach (OCSchedule schedule in schedules)
        {
            try
            {
                int hour = int.Parse(schedule.arrival_time.Substring(0, 2));
                if (hour >= 24)
                {
                    hour                  = hour - 24;
                    originalDate          = " 0" + hour + ":" + schedule.arrival_time.Substring(3);
                    schedule.arrival_time = DateTime.Now.AddDays(1).ToShortDateString() + " 0" + hour + ":" + schedule.arrival_time.Substring(3);
                }
                DateTime date = DateTime.Parse(schedule.arrival_time);
                if (date.CompareTo(now) > 0)
                {
                    if (originalDate.Length > 0)
                    {
                        schedule.arrival_time = originalDate;
                    }
                    if (idx < 3)
                    {
                        times = times + " " + schedule.arrival_time.Substring(0, schedule.arrival_time.Length - 3);
                    }
                    else
                    {
                        fourTimes = fourTimes + " " + schedule.arrival_time.Substring(0, schedule.arrival_time.Length - 3);
                    }
                    idx++;
                    if (idx > 6)
                    {
                        break;
                    }
                }
            }
            catch (Exception e)
            {
                Console.Write(e);
            }
        }
        fourTimes = fourTimes.Length > 0 ? fourTimes.Substring(1) : fourTimes;
        times     = times.Length > 0 ? times.Substring(1) : times;
        if (times.Length == 0)
        {
            times = "There are no more stops today.";
        }
        this.fourArrivalTimes = fourTimes;
        this.nextTimes        = times;
        return(this);
    }
Ejemplo n.º 2
0
    //TODO :GENERALIZE/Abstract
    public async Task <OCDirection> fetchTimes(String stopID)
    {
        String times     = "";
        String fourTimes = "";

        DateTime          now          = DateTime.Now;
        String            originalDate = "";
        List <OCSchedule> schedules    = await OCTranspoStopsData.getScheduleForDayAndStop(now.DayOfWeek.ToString(), stopID, this.RouteNo);

        int idx = 0;

        foreach (OCSchedule schedule in schedules)
        {
            if (schedule.arrival_time.StartsWith("24"))
            {
                originalDate          = schedule.arrival_time;
                schedule.arrival_time = DateTime.Now.AddDays(1).ToShortDateString() + " 00:" + schedule.arrival_time.Substring(3);
            }
            DateTime date = DateTime.Parse(schedule.arrival_time);
            if (date.CompareTo(now) > 0)
            {
                if (originalDate.Length > 0)
                {
                    schedule.arrival_time = originalDate;
                }
                if (idx < 3)
                {
                    times = times + " " + schedule.arrival_time.Substring(0, schedule.arrival_time.Length - 3);
                }
                else
                {
                    fourTimes = fourTimes + " " + schedule.arrival_time.Substring(0, schedule.arrival_time.Length - 3);
                }
                idx++;
                if (idx > 6)
                {
                    break;
                }
            }
        }
        fourTimes = fourTimes.Length > 0 ? fourTimes.Substring(1) : fourTimes;
        times     = times.Length > 0 ? times.Substring(1) : times;
        if (times.Trim().Length == 0)
        {
            times = "Sorry, there are no more stops today.";
        }
        this.fourArrivalTimes = fourTimes;
        this.nextTimes        = times;
        return(this);
    }