2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-06 06:08:44 +00:00

contrib/98_openweathermap.pm: revert last changes

git-svn-id: https://svn.fhem.de/fhem/trunk@11238 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
betateilchen 2016-04-14 10:14:09 +00:00
parent 704ca3be8c
commit 616c71b7db

View File

@ -64,11 +64,6 @@
# #
# 2014-03-22 added: added set command 'clear' # 2014-03-22 added: added set command 'clear'
# #
# 2015-10-26 added: support for stationByZip
# modi: use HttpUtils instead of LWP::UA
# for nonblocking http
# modi: attribute owoProxy for proxy configuration
#
package main; package main;
@ -76,12 +71,16 @@ use strict;
use warnings; use warnings;
use POSIX; use POSIX;
use XML::Simple; use XML::Simple;
use HttpUtils; eval {require JSON};
eval "use JSON";
use feature qw/say switch/; use feature qw/say switch/;
no if $] >= 5.017011, warnings => 'experimental'; no if $] >= 5.017011, warnings => 'experimental';
require LWP::UserAgent; # test
my $ua = LWP::UserAgent->new; # test
$ua->timeout(10); # test
$ua->env_proxy; # test
sub OWO_abs2rel($$$); sub OWO_abs2rel($$$);
sub OWO_isday($$); sub OWO_isday($$);
@ -99,7 +98,7 @@ sub openweathermap_Initialize($) {
$hash->{AttrList} = "do_not_notify:0,1 ". $hash->{AttrList} = "do_not_notify:0,1 ".
"owoGetUrl owoSendUrl owoInterval:600,900,1800,3600 ". "owoGetUrl owoSendUrl owoInterval:600,900,1800,3600 ".
"owoApiKey owoStation owoUser owoUseXml:1,0 ". "owoApiKey owoProxy owoStation owoUser owoUseXml:1,0 ".
"owoDebug:0,1 owoRaw:0,1 owoTimestamp:0,1 ". "owoDebug:0,1 owoRaw:0,1 owoTimestamp:0,1 ".
"owoSrc00 owoSrc01 owoSrc02 owoSrc03 owoSrc04 ". "owoSrc00 owoSrc01 owoSrc02 owoSrc03 owoSrc04 ".
"owoSrc05 owoSrc06 owoSrc07 owoSrc08 owoSrc09 ". "owoSrc05 owoSrc06 owoSrc07 owoSrc08 owoSrc09 ".
@ -137,7 +136,6 @@ sub OWO_Set($@){
CommandDeleteReading(undef, "$name _.*"); CommandDeleteReading(undef, "$name _.*");
CommandDeleteReading(undef, "$name c_.*"); CommandDeleteReading(undef, "$name c_.*");
CommandDeleteReading(undef, "$name g_.*"); CommandDeleteReading(undef, "$name g_.*");
CommandDeleteReading(undef, "$name my_.*");
return; return;
} }
@ -247,6 +245,12 @@ sub OWO_Attr(@){
break; break;
} }
when("owoProxy"){
if($attrValue ne ""){
$ua->proxy(['http'], $attrValue);
}
}
default { default {
$attr{$name}{$attrName} = $attrValue; $attr{$name}{$attrName} = $attrValue;
} }
@ -317,16 +321,15 @@ sub OWO_GetStatus($;$){
my $sendString = $urlString."?".$dataString; my $sendString = $urlString."?".$dataString;
if(AttrVal($name, "owoDebug",1) == 0){ if(AttrVal($name, "owoDebug",1) == 0){
Log3($name, 4, "owo $name: sending: $dataString"); Log3($name, 4, "owo $name: sending: $dataString");
$htmlDummy = GetFileFromURLQuiet($sendString,10,1,0,0); $htmlDummy = $ua->post($sendString);
$htmlDummy //= "no answer"; Log3($name, 3, "owo $name: htmlResponse: ".$htmlDummy->status_line);
Log3($name, 3, "owo $name: htmlResponse: ".$htmlDummy); #->status_line);
} else { } else {
Log3($name, 3, "owo $name: debug: $dataString"); Log3($name, 3, "owo $name: debug: $dataString");
} }
readingsBeginUpdate($hash); readingsBeginUpdate($hash);
readingsBulkUpdate($hash, "_httpResponse_my", $htmlDummy); #->status_line) if $htmlDummy; readingsBulkUpdate($hash, "_httpResponse_my", $htmlDummy->status_line) if $htmlDummy;
readingsBulkUpdate($hash, "my_response", $htmlDummy); #->decoded_content) if $htmlDummy; readingsBulkUpdate($hash, "my_response", $htmlDummy->decoded_content) if $htmlDummy;
readingsBulkUpdate($hash, "state","active"); readingsBulkUpdate($hash, "state","active");
if(AttrVal($name, "owoTimestamp", 0) == 1){ if(AttrVal($name, "owoTimestamp", 0) == 1){
readingsBulkUpdate($hash, "my_lastSent", time); readingsBulkUpdate($hash, "my_lastSent", time);
@ -334,9 +337,9 @@ sub OWO_GetStatus($;$){
readingsBulkUpdate($hash, "my_lastSent", localtime(time)); readingsBulkUpdate($hash, "my_lastSent", localtime(time));
} }
readingsEndUpdate($hash, 1); readingsEndUpdate($hash, 1);
# if(defined($htmlDummy)){ if(defined($htmlDummy)){
# CommandDeleteReading(undef, "$name my_.*") if $htmlDummy->is_error; CommandDeleteReading(undef, "$name my_.*") if $htmlDummy->is_error;
# } }
} }
##### end of send job ##### end of send job
@ -402,12 +405,20 @@ sub UpdateReadings($$$){
my $xmlMode = AttrVal($name, "owoUseXml", ""); my $xmlMode = AttrVal($name, "owoUseXml", "");
$url .= "&mode=xml" if($xmlMode eq "1"); $url .= "&mode=xml" if($xmlMode eq "1");
$url .= "&APPID=".AttrVal($name, "owoApiKey", ""); $url .= "&APPID=".AttrVal($name, "owoApiKey", "");
eval {$response = $ua->get("$url")};
$response = GetFileFromURLQuiet($url,10,1,0,0); #
# error handling for not found stations (error 404 from server)
#
if($response->decoded_content =~ m/error/i){
CommandDeleteReading(undef, "$name $prefix.*");
readingsSingleUpdate($hash, "_httpResponse_".substr($prefix,0,1), $response->decoded_content, 1);
return;
}
if(defined($response)){ if(defined($response)){
if(AttrVal($name, "owoDebug", 1) == 1){ if(AttrVal($name, "owoDebug", 1) == 1){
Log3($name, 4, "owo $name: response:\n".$response); Log3($name, 4, "owo $name: response:\n".$response->decoded_content);
} }
} else { } else {
Log3($name, 4, "owo $name: error: no response from server"); Log3($name, 4, "owo $name: error: no response from server");
@ -415,18 +426,18 @@ sub UpdateReadings($$$){
} }
CommandDeleteReading(undef, "$name $prefix.*"); CommandDeleteReading(undef, "$name $prefix.*");
readingsSingleUpdate($hash, "_httpResponse_".substr($prefix,0,1), "data found", 1); readingsSingleUpdate($hash, "_httpResponse_".substr($prefix,0,1), $response->status_line, 1);
if($xmlMode eq "1" && $response){ if($xmlMode eq "1" && $response->is_success){
Log3($name, 4, "owo $name: decoding XML"); Log3($name, 4, "owo $name: decoding XML");
my $xml = new XML::Simple; my $xml = new XML::Simple;
$jsonWeather = undef; $jsonWeather = undef;
$jsonWeather = $xml->XMLin($response, KeyAttr => 'current' ); $jsonWeather = $xml->XMLin($response->decoded_content, KeyAttr => 'current' );
if(defined($jsonWeather)){ if(defined($jsonWeather)){
readingsBeginUpdate($hash); readingsBeginUpdate($hash);
if(AttrVal($name, "owoRaw", 0) == 1){ if(AttrVal($name, "owoRaw", 0) == 1){
readingsBulkUpdate($hash, $prefix."rawData", $response); readingsBulkUpdate($hash, $prefix."rawData", $response->decoded_content);
} }
readingsBulkUpdate($hash, "_dataSource", "www.openweathermap.org"); readingsBulkUpdate($hash, "_dataSource", "www.openweathermap.org");
readingsBulkUpdate($hash, "_decodedWith", "XML"); readingsBulkUpdate($hash, "_decodedWith", "XML");
@ -456,15 +467,15 @@ sub UpdateReadings($$$){
} }
} }
if($xmlMode ne "1" && $response){ if($xmlMode ne "1" && $response->is_success){
Log3($name, 4, "owo $name: decoding JSON"); Log3($name, 4, "owo $name: decoding JSON");
my $json = JSON->new->allow_nonref; my $json = JSON->new->allow_nonref;
eval {$jsonWeather = $json->decode($response)}; warn $@ if $@; eval {$jsonWeather = $json->decode($response->decoded_content)}; warn $@ if $@;
if(defined($jsonWeather)){ if(defined($jsonWeather)){
readingsBeginUpdate($hash); readingsBeginUpdate($hash);
if(AttrVal($name, "owoRaw", 0) == 1){ if(AttrVal($name, "owoRaw", 0) == 1){
readingsBulkUpdate($hash, $prefix."rawData", $response); readingsBulkUpdate($hash, $prefix."rawData", $response->decoded_content);
} }
if(AttrVal($name, "owoTimestamp", 0) == 1){ if(AttrVal($name, "owoTimestamp", 0) == 1){
readingsBulkUpdate($hash, $prefix."lastWx", $jsonWeather->{dt}); readingsBulkUpdate($hash, $prefix."lastWx", $jsonWeather->{dt});