View Single Post
Posts: 2 | Thanked: 2 times | Joined on May 2014 @ Moscow, Russia
#798
Hi,

I'm still using the awesome device and have come across the qtlockscreen app.

The problem is that I still can't get bloody Yahoo Weather fixed.

1. Seems I've finally got the weatherwidget.sh right:
- Yahoo seems to provide a direct link to the weather icon now, no need for extra code
- the icon is provided in .gif format - I'm simply writing it with a .png extension and it works.
- the weather file is no longer in .htm, it's an .xml - fixed for this.

Here's the code:

Code:
#!/bin/sh
#Arguments:
# 1 = Link to yahoo weather
# 2 = output dir
# 3 = Biggest weather code to consider

url=${1-"weather.yahooapis.com/forecastrss?w=2122265&u=c?unit=c"}
out=${2-"/tmp"}

# ========sakya's translation========
# In order to work with QtLockscreen I need to, in the WORST case scenario:
# http://weather.yahoo.com/weather.yahooapis.com/forecastrss?w=455861&u=c?unit=c
# 1) Remove the 'http://weather.yahoo.com/'
# 2) Translate the appended '?unit=X' to '&u=X'
url=`echo "$url" | sed s/weather.yahoo.com\\\/// | sed 's/&u=[cf]//' | sed 's/?unit/\&u/'`
# the only problem is that now it requires the ?unit=c to recognize celcius, but for the qtlockscreen it is ok.

curr="0"
cond="Unknown"
high="0"
loww="0"

# Getting the XML and extracting the weather icon URL
wget --user-agent="" -q -t 1 -T 10 -O "$out/ywtemp.xml" "$url" || { exit 1; }
image=`cat "$out/ywtemp.xml" | grep "img src" | sed s'_<img src="__' | sed s'_"/><br />__'`|| { exit 1; }
#echo "$image"

# Setting weather conditions
curr=`cat "$out/ywtemp.xml" | grep -o temp=\".* -m 1 | sed s/temp=\"// | sed s/\".*//` || { exit 1; }
cond=`cat "$out/ywtemp.xml" | grep -o text=\".* -m 1 | sed s/text=\"// | sed s/\".*//` || { exit 1; }
high=`cat "$out/ywtemp.xml" | grep -o high=\".* -m 1 | sed s/high=\"// | sed s/\".*//` || { exit 1; }
loww=`cat "$out/ywtemp.xml" | grep -o low=\".* -m 1  | sed s/low=\"//  | sed s/\".*//` || { exit 1; }

# Getting the icon...
# The icon has been changed to GIF by Yahoo, writing it with a PNG extension works.
wget --user-agent="" -q -t 1 -T 10 -O "$out/ywtemp.png" "$image" || { exit 1; }

echo "Current: $curr"
echo "Conditions: $cond"
echo "High: $high"
echo "Low: $loww"
echo "Image: $out/ywtemp.png"
2. Weatherwidget.sh executes ok manually with user permissions, puts everything into /tmp correctly, weather conditions are sent to stdout as plain text.

The problems are:
- weatherwidget.sh is not being executed automatically by qtlockscreen (it doesn't get both ywtemp.xml and ywtemp.png into /tmp) - exec perms set (+x for all), owner root.root, network is up
- both the weather icon and weather conditions are NOT displayed on lockscreen, even on the default theme.

I suspect this may have something to do with dependencies towards QBW and alarmed, but the installation of those packages didn't help and I'm not sure I can do more without sakya's help.

BTW, I'm on CSSU-Stable and using qtlockscreen-0.1.27 from devel.