summaryrefslogtreecommitdiffstats
path: root/kachelmann
diff options
context:
space:
mode:
Diffstat (limited to 'kachelmann')
-rw-r--r--kachelmann/Makefile5
-rwxr-xr-x[-rw-r--r--]kachelmann/conditions.pl7
-rw-r--r--kachelmann/weather.xml1
3 files changed, 10 insertions, 3 deletions
diff --git a/kachelmann/Makefile b/kachelmann/Makefile
new file mode 100644
index 00000000..277a5421
--- /dev/null
+++ b/kachelmann/Makefile
@@ -0,0 +1,5 @@
+.PHONY: infect
+INSTALL_DIR = /root/bin
+infect:
+ mkdir -p /tmp/kachelmann/
+ cp kachelmann ${INSTALL_DIR}
diff --git a/kachelmann/conditions.pl b/kachelmann/conditions.pl
index c61e0b8b..6d8b5541 100644..100755
--- a/kachelmann/conditions.pl
+++ b/kachelmann/conditions.pl
@@ -1,6 +1,7 @@
#!/usr/bin/perl
use XML::Simple;
-system("w3m -dump \"http://www.google.com/ig/api?weather=70327-stuttgart&hl=de\" > weather.xml");
+system("w3m -dump \"http://www.google.com/ig/api?weather=70327-stuttgart&hl=de\" > /tmp/kachelmann/weather.xml");
my $xml = new XML::Simple;
-my $data = $xml->XMLin("weather.xml");
-print "Die Wetterkondition ist: $data->{weather}->{current_conditions}->{condition}->{data}\n bei $data->{weather}->{current_conditions}->{temp_c}->{data} Grad Celsius\n";
+my $data = $xml->XMLin("/tmp/kachelmann/weather.xml");
+my $sentence = "Die Wetterkondition ist: $data->{weather}->{current_conditions}->{condition}->{data}\n bei $data->{weather}->{current_conditions}->{temp_c}->{data} Grad Celsius\n";
+system("espeak \"$sentence\"");
diff --git a/kachelmann/weather.xml b/kachelmann/weather.xml
new file mode 100644
index 00000000..8a785308
--- /dev/null
+++ b/kachelmann/weather.xml
@@ -0,0 +1 @@
+<?xml version="1.0"?><xml_api_reply version="1"><weather module_id="0" tab_id="0" mobile_row="0" mobile_zipped="1" row="0" section="0" ><forecast_information><city data="Stuttgart, Baden-Württemberg"/><postal_code data="70327-stuttgart"/><latitude_e6 data=""/><longitude_e6 data=""/><forecast_date data="2011-08-05"/><current_date_time data="2011-08-05 21:50:00 +0000"/><unit_system data="SI"/></forecast_information><current_conditions><condition data="Klar"/><temp_f data="63"/><temp_c data="17"/><humidity data="Feuchtigkeit: 88 %"/><icon data="/ig/images/weather/sunny.gif"/><wind_condition data="Wind: NO mit 6 km/h"/></current_conditions><forecast_conditions><day_of_week data="Fr."/><low data="16"/><high data="26"/><icon data="/ig/images/weather/chance_of_storm.gif"/><condition data="Vereinzelt stürmisch"/></forecast_conditions><forecast_conditions><day_of_week data="Sa."/><low data="16"/><high data="26"/><icon data="/ig/images/weather/mostly_sunny.gif"/><condition data="Teils sonnig"/></forecast_conditions><forecast_conditions><day_of_week data="So."/><low data="11"/><high data="22"/><icon data="/ig/images/weather/chance_of_rain.gif"/><condition data="Vereinzelt Regen"/></forecast_conditions><forecast_conditions><day_of_week data="Mo."/><low data="11"/><high data="21"/><icon data="/ig/images/weather/chance_of_storm.gif"/><condition data="Vereinzelt stürmisch"/></forecast_conditions></weather></xml_api_reply>