Example #1
0
        public async Task <Status> GetSchedule(string city)
        {
            string dbPath = Path.Combine(Windows.Storage.ApplicationData.Current.LocalFolder.Path, "goes.db");

            List <Route>     Routes     = new List <Route>();
            List <Direction> Directions = new List <Direction>();
            List <Stop>      Stops      = new List <Stop>();
            List <StopName>  StopNames  = new List <StopName>();
            //List<Pointer> Pointers = new List<Pointer>();

            var values = new List <KeyValuePair <string, string> >
            {
                new KeyValuePair <string, string>(Constant.API_KEY, ""),
            };

            try
            {
                var HttpClientConnection = new HttpClient(new HttpClientHandler());
                HttpResponseMessage ResponseConnection = await HttpClientConnection.PostAsync(Constant.City.Where(p => p.key == city).FirstOrDefault().value, new FormUrlEncodedContent(values));

                ResponseConnection.EnsureSuccessStatusCode();
                string ResponseString = await ResponseConnection.Content.ReadAsStringAsync();

                JsonObject jsonObject  = JsonObject.Parse(ResponseString);
                JsonArray  routesArray = jsonObject["routes"].GetArray();
                foreach (JsonValue route in routesArray)
                {
                    JsonObject objectR = route.GetObject();
                    Routes.Add(new Route
                    {
                        id     = Int32.Parse(objectR["id"].GetString()),
                        number = objectR["number"].GetString(),
                        type   = Int32.Parse(objectR["type"].GetString()),
                        ord    = Int32.Parse(objectR["ord"].GetString()),
                    });
                }

                JsonArray directionsArray = jsonObject["directions"].GetArray();
                foreach (JsonValue direction in directionsArray)
                {
                    JsonObject objectD = direction.GetObject();
                    Directions.Add(new Direction
                    {
                        id   = Int32.Parse(objectD["id"].GetString()),
                        name = objectD["name"].GetString(),
                    });
                }

                JsonArray stopNamesArray = jsonObject["stop_names"].GetArray();
                foreach (JsonValue stopname in stopNamesArray)
                {
                    JsonObject objectSN = stopname.GetObject();
                    StopNames.Add(new StopName
                    {
                        id   = Int32.Parse(objectSN["id"].GetString()),
                        name = objectSN["name"].GetString(),
                    });
                }

                /*JsonArray pointersArray = jsonObject["pointers"].GetArray();
                 * foreach (JsonValue pointer in pointersArray)
                 * {
                 *  JsonObject objectP = pointer.GetObject();
                 *  Pointers.Add(new Pointer
                 *  {
                 *      id = Int32.Parse(objectP["id"].GetString()),
                 *      name = objectP["name"].GetString(),
                 *  });
                 * }*/

                JsonArray stopsArray = jsonObject["stops"].GetArray();
                foreach (JsonValue stops in stopsArray)
                {
                    JsonObject objectS = stops.GetObject();
                    Stops.Add(new Stop
                    {
                        id   = Int32.Parse(objectS["id"].GetString()),
                        n_id = Int32.Parse(objectS["n_id"].GetString()),
                        r_id = Int32.Parse(objectS["r_id"].GetString()),
                        d_id = Int32.Parse(objectS["d_id"].GetString()),
                        //p_id = Int32.Parse(objectS["p_id"].GetString()),
                        favorite = 0,
                        days     = objectS["days"].GetString(),
                        schedule = objectS["schedule"].GetString(),
                    });
                }
                Database.DropDatabase();
                SQLiteConnection connection = new SQLiteConnection(dbPath);
                connection.InsertAll(Routes);
                connection.InsertAll(Directions);
                connection.InsertAll(StopNames);
                connection.InsertAll(Stops);
                //connection.InsertAll(Pointers);

                LocalProperties.SaveToLP(LocalProperties.LP_current_version, jsonObject["version"].GetNumber().ToString());
            }
            catch (Exception e)
            {
                return(new Status(false, e.Message));
            }
            return(new Status(true, "Success"));
        }
Example #2
0
        public static async Task <StatusMetaData> Get_MetaData()
        {
            RootObject root_obj = new RootObject();
            var        values   = new List <KeyValuePair <string, string> >
            {
                new KeyValuePair <string, string>(Constant.API_KEY, ""),
            };

            try
            {
                if (!Constant.checkNetworkConnection())
                {
                    //ResourceLoader resourceLoader = ResourceLoader.GetForCurrentView("Resources");
                    //new MessageDialog(resourceLoader.GetString("Error_InternetConnection"), resourceLoader.GetString("Error")).ShowAsync();
                    return(new StatusMetaData(false, null, null));
                }
                var HttpClientConnection = new HttpClient(new HttpClientHandler());
                HttpResponseMessage ResponseConnection = await HttpClientConnection.PostAsync("https://" + LocalProperties.LoadFromToLP(LocalProperties.LP_selected_city) + ".btrans.by/dev/api/v3/metadata", new FormUrlEncodedContent(values));

                ResponseConnection.EnsureSuccessStatusCode();
                string ResponseString = await ResponseConnection.Content.ReadAsStringAsync();

                JObject obj = JObject.Parse(ResponseString);
                root_obj = JsonConvert.DeserializeObject <RootObject>(obj.ToString());
            }
            catch (Exception e)
            {
                return(new StatusMetaData(false, e.Message, null));
            }
            return(new StatusMetaData(true, "Success", root_obj));
        }