Esempio n. 1
0
        public ProxyResponse Proxy(String URL)
        {
            ProxyResponse proxy_Response = new ProxyResponse();

            ProxyElement p_element = null;

            // we need to find out what we need to replace
            foreach (ProxyElement element in HTTPProxyConfiguration.ProxyElements)
            {
                if (URL.StartsWith(element.ActivationURL))
                {
                    p_element = element;
                    // obviously we found a hit
                    break;
                }
            }
            // /control?user=admin&pwd=xxx&callback=actuators&cmd=get_list_actuators
            ConsoleOutputLogger.WriteLine("Proxy: " + URL + " - " + URL.Replace(p_element.ActivationURL, p_element.OutgoingMappingURL));

            if (p_element != null)
            {
                WebRequest wrGetURL = WebRequest.Create(URL.Replace(p_element.ActivationURL, p_element.OutgoingMappingURL));

                HttpWebResponse response = (HttpWebResponse)wrGetURL.GetResponse();
                if (response.StatusCode != HttpStatusCode.OK)
                {
                    proxy_Response.response = response;
                    proxy_Response.Content  = "Something wicked happened.";

                    return(proxy_Response);
                }

                proxy_Response.response = response;
                // we will read data via the response stream
                proxy_Response.Content = new StreamReader(response.GetResponseStream()).ReadToEnd();

                #region Check for XS1 trigger URLs and if found and ELV MAX is active inject actors and sensors

                if (ELVMAX != null)
                {
                    if (ELVMAX.theHouse != null)
                    {
                        // we've found a House, did we find a trigger here?
                        #region get_list_actuators
                        if (URL.Contains("cmd=get_list_actuators"))
                        {
                            proxy_Response.Content = VirtualXS1.Inject_get_list_actuators(proxy_Response.Content, ELVMAX.theHouse);
                        }
                        #endregion

                        #region get_list_sensors
                        if (URL.Contains("cmd=get_list_sensors"))
                        {
                            proxy_Response.Content = VirtualXS1.Inject_get_list_sensors(proxy_Response.Content, ELVMAX.theHouse);
                        }
                        #endregion
                    }
                }

                #endregion

                return(proxy_Response);
            }
            return(null);
        }
Esempio n. 2
0
		public ProxyResponse Proxy(String URL)
		{
			ProxyResponse proxy_Response = new ProxyResponse();

			ProxyElement p_element = null;

			// we need to find out what we need to replace
			foreach(ProxyElement element in HTTPProxyConfiguration.ProxyElements)
			{
				if (URL.StartsWith(element.ActivationURL))
				{
					p_element = element;
					// obviously we found a hit
					break;
				}
			}
			// /control?user=admin&pwd=xxx&callback=actuators&cmd=get_list_actuators
            ConsoleOutputLogger.WriteLine("Proxy: " + URL+" - "+URL.Replace(p_element.ActivationURL,p_element.OutgoingMappingURL));

			if (p_element != null)
			{
				WebRequest wrGetURL = WebRequest.Create(URL.Replace(p_element.ActivationURL,p_element.OutgoingMappingURL));

	            HttpWebResponse response = (HttpWebResponse)wrGetURL.GetResponse();
	            if (response.StatusCode != HttpStatusCode.OK)
	            {
					proxy_Response.response = response;
					proxy_Response.Content = "Something wicked happened.";

					return proxy_Response;
	            }

				proxy_Response.response = response;
	            // we will read data via the response stream
	            proxy_Response.Content = new StreamReader(response.GetResponseStream()).ReadToEnd();

				#region Check for XS1 trigger URLs and if found and ELV MAX is active inject actors and sensors

				if (ELVMAX != null)
				{
					if (ELVMAX.theHouse != null)
					{
						// we've found a House, did we find a trigger here?
						#region get_list_actuators
						if(URL.Contains("cmd=get_list_actuators"))
						{
							proxy_Response.Content = VirtualXS1.Inject_get_list_actuators(proxy_Response.Content,ELVMAX.theHouse);
						}
						#endregion

						#region get_list_sensors
						if(URL.Contains("cmd=get_list_sensors"))
						{
							proxy_Response.Content = VirtualXS1.Inject_get_list_sensors(proxy_Response.Content,ELVMAX.theHouse);
						}
						#endregion
					}
				}

				#endregion

				return proxy_Response;
			}
			return null;
		}