summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortv <tv@also>2011-08-06 01:38:21 +0200
committertv <tv@also>2011-08-06 01:38:21 +0200
commit4db2aedbfea03ca327e2fcfb1cab63161a4ce5ef (patch)
tree2b384a9911e70c083e7f6f199c6f19120d7a250e
parent91251e099fcc6641126b2da2a32e5606bbfa84ef (diff)
parentac9d560478c4eeb43bd73ad53b8bca72c63de2eb (diff)
Merge branch 'master' of github.com:krebscode/painload
-rw-r--r--kachelmann/Makefile5
-rwxr-xr-xkachelmann/conditions7
-rw-r--r--kachelmann/weather.xml1
3 files changed, 10 insertions, 3 deletions
diff --git a/kachelmann/Makefile b/kachelmann/Makefile
index 277a5421..813f4dec 100644
--- a/kachelmann/Makefile
+++ b/kachelmann/Makefile
@@ -1,5 +1,6 @@
.PHONY: infect
-INSTALL_DIR = /root/bin
+INSTALL_DIR = /root/bin/
infect:
mkdir -p /tmp/kachelmann/
- cp kachelmann ${INSTALL_DIR}
+ cp conditions ${INSTALL_DIR}
+ chmod +x ${INSTALL_DIR}conditions
diff --git a/kachelmann/conditions b/kachelmann/conditions
new file mode 100755
index 00000000..6d8b5541
--- /dev/null
+++ b/kachelmann/conditions
@@ -0,0 +1,7 @@
+#!/usr/bin/perl
+use XML::Simple;
+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("/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
deleted file mode 100644
index 8a785308..00000000
--- a/kachelmann/weather.xml
+++ /dev/null
@@ -1 +0,0 @@
-<?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>