//Harjje add methods
        public static WeatherReturnObject getWeatherStuff(string loc)
        {
            WeatherReturnObject returnObj = new WeatherReturnObject();
            string locations = getCompanyLocation(loc);

            if (locations.Equals("[]"))
            {
                returnObj.weatherText = "Not found";
                return(returnObj);
            }

            JArray  arr         = JArray.Parse(locations);
            JObject obj         = arr.Children <JObject>().ElementAt(0);
            string  locationKey = (string)obj.SelectToken("Key");

            HttpClient          client   = new HttpClient();
            HttpResponseMessage response = client.GetAsync("http://dataservice.accuweather.com/currentconditions/v1/" + locationKey + "?apikey=GBVmAs0AxohAnsyVmdCzO7GKw3cPfgCd&details=true").Result;
            string result = response.Content.ReadAsStringAsync().Result;

            if (result.Equals("[]"))
            {
                returnObj.weatherText = "Not found";
                return(returnObj);
            }

            arr = JArray.Parse(result);
            obj = arr.Children <JObject>().ElementAt(0);

            returnObj.weatherText         = (string)obj["WeatherText"];
            returnObj.weatherIcon         = (int)obj["WeatherIcon"];
            returnObj.temperature         = (double)obj["Temperature"]["Metric"]["Value"];
            returnObj.realFeelTemperature = (double)obj["RealFeelTemperature"]["Metric"]["Value"];

            return(returnObj);
        }
Beispiel #2
0
        public Task Handle(WeatherServiceRequest message, IMessageHandlerContext context)
        {
            Debug.consoleMsg("Got to GetWeatherHandler");


            WeatherReturnObject returnVal = WeatherMethods.getWeatherStuff(message.location);

            Debug.consoleMsg(returnVal.realFeelTemperature.ToString());
            string response = "success";


            return(context.Reply(new WeatherServiceResponse(true, response, returnVal)));
        }
Beispiel #3
0
 public WeatherServiceResponse(bool result, string response, WeatherReturnObject returnData)
     : base(result, response)
 {
     this.returnData = returnData;
 }