summaryrefslogtreecommitdiff
path: root/meecastweather/meecastweather.cpp
blob: 47df33457c13e1e3d069f926df1193fee2ffa049 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
#include <QtCore/QDir>
#include <QtCore/QDebug>
#include <QtXml/QDomComment>

#include "meecastweather.h"

using namespace sowatch;

const QLatin1String MeeCastWeather::configFilePath("/home/user/.config/com.meecast.omweather/config.xml");

MeeCastWeather::MeeCastWeather(QObject *parent) :
	WeatherNotification(parent),
	_watcher(new QFileSystemWatcher(this)),
	_timer(new QTimer(this)),
    _configFileChanged(true), _stationFileChanged(true),
	_lastUpdate(QDateTime::fromTime_t(0))
{
	_watcher->addPath(configFilePath);
	connect(_watcher, SIGNAL(fileChanged(QString)), SLOT(fileChanged(QString)));

	_timer->setInterval(10000);
	_timer->setSingleShot(true);
	connect(_timer, SIGNAL(timeout()), SLOT(handleTimeout()));

	// Perform an initial update
	parseConfigFile();
	parseStationFile();
}

Notification::Type MeeCastWeather::type() const
{
	return Notification::WeatherNotification;
}

uint MeeCastWeather::count() const
{
	return 1;
}

QDateTime MeeCastWeather::dateTime() const
{
	return _lastUpdate;
}

QString MeeCastWeather::title() const
{
	return _location;
}

QString MeeCastWeather::body() const
{
	return _lastText;
}

WeatherNotification::WeatherType MeeCastWeather::forecast() const
{
	switch (_lastCode) {
	// Day versions
	case 23:
	case 24:
	case 25:
	case 32:
	case 36:
		return Sunny;
	case 30:
	case 34:
	case 44:
		return PartlyCloudy;
	case 26:
	case 28:
		return Cloudy;
	case 19:
	case 20:
	case 21:
	case 22:
		return Fog;
	case 1:
	case 2:
	case 9:
	case 10:
	case 11:
	case 12:
	case 39:
	case 40:
		return Rain;
	case 0:
	case 3:
	case 4:
	case 17:
	case 35:
	case 37:
	case 38:
		return Thunderstorm;
	case 5:
	case 6:
	case 7:
	case 8:
	case 13:
	case 14:
	case 15:
	case 16:
	case 18:
	case 41:
	case 42:
	case 43:
		return Snow;

	// Night versions
	case 31:
		return Sunny;
	case 29:
	case 33:
		return PartlyCloudy;
	case 27:
		return Cloudy;
	case 45:
		return Rain;
	case 47:
		return Thunderstorm;
	case 46:
		return Snow;

	default:
		return UnknownWeather;
	}
}

int MeeCastWeather::temperature() const
{
	return _lastTemp;
}

WeatherNotification::Unit MeeCastWeather::temperatureUnits() const
{
	return _tempUnit;
}

void MeeCastWeather::activate()
{
	// Launch accuweather?
}

void MeeCastWeather::dismiss()
{
	// Do nothing
}

int MeeCastWeather::convertTemperatureToUserUnit(int temp, Unit unit)
{
	return convertTemperature(temp, unit, _tempUnit);
}

void MeeCastWeather::fileChanged(const QString &path)
{
	qDebug() << "meecast config file changed: " << path;
	if (path == configFilePath) {
		_configFileChanged = true;
	} else if (path == _stationFilePath) {
		_stationFileChanged = true;
	}
	_timer->start();
}

void MeeCastWeather::parseConfigFile()
{
	QFile file(configFilePath);

	if (!_stationFilePath.isEmpty()) {
		_watcher->removePath(_stationFilePath);
	}
	_stationFilePath.clear();

	if (file.open(QIODevice::ReadOnly | QIODevice::Text)) {
		QDomDocument doc;
		doc.setContent(&file);

		QDomElement root = doc.documentElement();
		QDomElement e = root.firstChildElement("current_station_id");
		int stationId = e.text().toInt();

		e = root.firstChildElement("temperature_unit");
		if (e.text() == "C") {
			_tempUnit = Celsius;
		} else if (e.text() == "F") {
			_tempUnit = Fahrenheit;
		}

		QDomNodeList list = root.elementsByTagName("station");
		if (stationId >= 0 && stationId < list.size()) {
			QDomNode n = list.item(stationId);
			QDomElement e = n.toElement().firstChildElement("file_name");

			_stationFilePath = e.text();
			_watcher->addPath(_stationFilePath);
			qDebug() << "meecast found station file path: " << _stationFilePath;

			_location = n.toElement().firstChildElement("station_name").text();
		}
	}

	_configFileChanged = false;
}

void MeeCastWeather::parseStationFile()
{
	if (!_stationFilePath.isEmpty()) {
		QFile file(_stationFilePath);
		if (file.open(QIODevice::ReadOnly | QIODevice::Text)) {
			QDomDocument doc;
			doc.setContent(&file);

			qDebug() << "meecast reading weather info";

			QDomElement root = doc.documentElement();
			QDomNodeList list;
			Unit tempUnit = _tempUnit;

			list = root.elementsByTagName("units");
			if (!list.isEmpty()) {
				QDomElement units = list.at(0).toElement();
				list = units.elementsByTagName("t");
				if (!list.isEmpty()) {
					QDomElement e = list.at(0).toElement();
					if (e.text() == "C") {
						tempUnit = Celsius;
					} else if (e.text() == "F") {
						tempUnit = Fahrenheit;
					}
				}
			}

			list = root.elementsByTagName("period");
			for (int index = 0; index < list.size(); index++) {
				QDomElement e = list.item(index).toElement();
				if (e.attribute("current") == "true") {
					qDebug() << "meecast current found";
					bool anythingChanged = false;
					uint periodUnix = e.attribute("start").toUInt();
					QDateTime period = QDateTime::fromTime_t(periodUnix);
					qDebug() << "period" << periodUnix << period;
					if (_lastUpdate != period) {
						anythingChanged = true;
						_lastUpdate = period;
					}

					int temp = e.firstChildElement("temperature").text().toInt();
					qDebug() << "temp" << temp;
					temp = convertTemperatureToUserUnit(temp, tempUnit);
					qDebug() << " -> " << temp;
					if (temp != _lastTemp) {
						anythingChanged = true;
						_lastTemp = temp;
					}

					int code = e.firstChildElement("icon").text().toInt();
					qDebug() << "code" << code;
					if (code != _lastCode) {
						anythingChanged = true;
						_lastCode = code;
					}

					QString text = e.firstChildElement("description").text();
					if (text != _lastText) {
						anythingChanged = true;
						_lastText = text;
					}

					if (anythingChanged) {
						qDebug() << "something changed";
						emit changed();
					}

					break;
				}
			}
		}
	}

	_stationFileChanged = false;
}

void MeeCastWeather::handleTimeout()
{
	if (_configFileChanged) {
		parseConfigFile();
	}
	if (_stationFileChanged) {
		parseStationFile();
	}
}