summaryrefslogtreecommitdiffstats
path: root/librss/document.cpp
blob: 1cf9730e740fd1ad0e00aea590fa5830cbf037b2 (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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
/*
 * document.cpp
 *
 * Copyright (c) 2001, 2002, 2003, 2004 Frerich Raabe <raabe@kde.org>
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 * FOR A PARTICULAR PURPOSE. For licensing and distribution details, check the
 * accompanying file 'COPYING'.
 *
 */
#include "document.h"
#include "article.h"
#include "image.h"
#include "textinput.h"
#include "tools_p.h"

#include <krfcdate.h>
#include <kurl.h>

#include <tqdatetime.h>
#include <tqdom.h>
#include <tqptrlist.h>

using namespace RSS;

struct Document::Private : public Shared
{
	Private() : version(v0_90), image(NULL), textInput(NULL), language(en)
	{
	}

	~Private()
	{
		delete textInput;
		delete image;
	}

	Version version;
	TQString title;
	TQString description;
	KURL link;
	Image *image;
	TextInput *textInput;
	Article::List articles;
	Language language;
	TQString copyright;
	TQDateTime pubDate;
	TQDateTime lastBuildDate;
	TQString rating;
	KURL docs;
	TQString managingEditor;
	TQString webMaster;
	HourList skipHours;
	DayList skipDays;
};

Document::Document() : d(new Private)
{
}

Document::Document(const Document &other) : d(0)
{
	*this = other;
}

Document::Document(const TQDomDocument &doc) : d(new Private)
{
	TQString elemText;
	TQDomNode rootNode = doc.documentElement();

	// Determine the version of the present RSS markup.
	TQString attr = rootNode.toElement().attribute(TQString::tqfromLatin1("xmlns"), TQString());
	if (!attr.isNull()) {
		/*
		 * Hardcoding these URLs is actually a bad idea, since the DTD doesn't
		 * dictate a specific namespace. Still, most RSS files seem to use
		 * these two, so I'll go for them now. If it turns out that many
		 * mirrors of this RSS namespace are in use, I'll probably have to
		 * distinguish the RSS versions by analyzing the relationship between
		 * the nodes.
		 */
		if (attr == TQString::tqfromLatin1("http://my.netscape.com/rdf/simple/0.9/"))
			d->version = v0_90;
		else if (attr == TQString::tqfromLatin1("http://purl.org/rss/1.0/")) {
			d->version = v1_0;
		}
	} else {
		attr = rootNode.toElement().attribute(TQString::tqfromLatin1("version"), TQString());
		if (!attr.isNull()) {
			if (attr == TQString::tqfromLatin1("0.91"))
				d->version = v0_91;
			else if (attr == TQString::tqfromLatin1("0.92"))
				d->version = v0_92;
			else if (attr == TQString::tqfromLatin1("0.93"))
				d->version = v0_93;
			else if (attr == TQString::tqfromLatin1("0.94"))
				d->version = v0_94;
			else if (attr == TQString::tqfromLatin1("2.0") || attr == TQString::tqfromLatin1("2"))
				d->version = v2_0;
		}
	}
	TQDomNode channelNode = rootNode.namedItem(TQString::tqfromLatin1("channel"));

	if (!(elemText = extractNode(channelNode, TQString::tqfromLatin1("title"))).isNull())
		d->title = elemText;
	if (!(elemText = extractNode(channelNode, TQString::tqfromLatin1("description"))).isNull())
		d->description = elemText;
	if (!(elemText = extractNode(channelNode, TQString::tqfromLatin1("link"))).isNull())
		d->link = elemText;

	/* This is ugly but necessary since RSS 0.90 and 1.0 have a different tqparent
	 * node for <image>, <textinput> and <item> than RSS 0.91-0.94 and RSS 2.0.
	 */
	TQDomNode parentNode;
	if (d->version == v0_90 || d->version == v1_0)
		parentNode = rootNode;
	else
		parentNode = channelNode;

	TQDomNode n = parentNode.namedItem(TQString::tqfromLatin1("image"));
	if (!n.isNull())
		d->image = new Image(n);

	n = parentNode.namedItem(TQString::tqfromLatin1("textinput"));
	if (!n.isNull())
		d->textInput = new TextInput(n);

	// Our (hopefully faster) version of elementsByTagName()
	for (n = parentNode.firstChild(); !n.isNull(); n = n.nextSibling()) {
		const TQDomElement e = n.toElement();
		if (e.tagName() == TQString::tqfromLatin1("item"))
			d->articles.append(Article(e));
	}

	if (!(elemText = extractNode(channelNode, TQString::tqfromLatin1("copyright"))).isNull())
		d->copyright = elemText;

	if (!(elemText = extractNode(channelNode, TQString::tqfromLatin1("language"))).isNull()) {
		if (elemText == TQString::tqfromLatin1("af"))
			d->language = af;
		else if (elemText == TQString::tqfromLatin1("sq"))
			d->language = sq;
		else if (elemText == TQString::tqfromLatin1("eu"))
			d->language = eu;
		else if (elemText == TQString::tqfromLatin1("be"))
			d->language = be;
		else if (elemText == TQString::tqfromLatin1("bg"))
			d->language = bg;
		else if (elemText == TQString::tqfromLatin1("ca"))
			d->language = ca;
		else if (elemText == TQString::tqfromLatin1("zh-cn"))
			d->language = zh_cn;
		else if (elemText == TQString::tqfromLatin1("zh-tw"))
			d->language = zh_tw;
		else if (elemText == TQString::tqfromLatin1("hr"))
			d->language = hr;
		else if (elemText == TQString::tqfromLatin1("cs"))
			d->language = cs;
		else if (elemText == TQString::tqfromLatin1("da"))
			d->language = da;
		else if (elemText == TQString::tqfromLatin1("nl"))
			d->language = nl;
		else if (elemText == TQString::tqfromLatin1("nl-be"))
			d->language = nl_be;
		else if (elemText == TQString::tqfromLatin1("nl-nl"))
			d->language = nl_nl;
		else if (elemText == TQString::tqfromLatin1("en"))
			d->language = en;
		else if (elemText == TQString::tqfromLatin1("en-au"))
			d->language = en_au;
		else if (elemText == TQString::tqfromLatin1("en-bz"))
			d->language = en_bz;
		else if (elemText == TQString::tqfromLatin1("en-ca"))
			d->language = en_ca;
		else if (elemText == TQString::tqfromLatin1("en-ie"))
			d->language = en_ie;
		else if (elemText == TQString::tqfromLatin1("en-jm"))
			d->language = en_jm;
		else if (elemText == TQString::tqfromLatin1("en-nz"))
			d->language = en_nz;
		else if (elemText == TQString::tqfromLatin1("en-ph"))
			d->language = en_ph;
		else if (elemText == TQString::tqfromLatin1("en-za"))
			d->language = en_za;
		else if (elemText == TQString::tqfromLatin1("en-tt"))
			d->language = en_tt;
		else if (elemText == TQString::tqfromLatin1("en-gb"))
			d->language = en_gb;
		else if (elemText == TQString::tqfromLatin1("en-us"))
			d->language = en_us;
		else if (elemText == TQString::tqfromLatin1("en-zw"))
			d->language = en_zw;
		else if (elemText == TQString::tqfromLatin1("fo"))
			d->language = fo;
		else if (elemText == TQString::tqfromLatin1("fi"))
			d->language = fi;
		else if (elemText == TQString::tqfromLatin1("fr"))
			d->language = fr;
		else if (elemText == TQString::tqfromLatin1("fr-be"))
			d->language = fr_be;
		else if (elemText == TQString::tqfromLatin1("fr-ca"))
			d->language = fr_ca;
		else if (elemText == TQString::tqfromLatin1("fr-fr"))
			d->language = fr_fr;
		else if (elemText == TQString::tqfromLatin1("fr-lu"))
			d->language = fr_lu;
		else if (elemText == TQString::tqfromLatin1("fr-mc"))
			d->language = fr_mc;
		else if (elemText == TQString::tqfromLatin1("fr-ch"))
			d->language = fr_ch;
		else if (elemText == TQString::tqfromLatin1("gl"))
			d->language = gl;
		else if (elemText == TQString::tqfromLatin1("gd"))
			d->language = gd;
		else if (elemText == TQString::tqfromLatin1("de"))
			d->language = de;
		else if (elemText == TQString::tqfromLatin1("de-at"))
			d->language = de_at;
		else if (elemText == TQString::tqfromLatin1("de-de"))
			d->language = de_de;
		else if (elemText == TQString::tqfromLatin1("de-li"))
			d->language = de_li;
		else if (elemText == TQString::tqfromLatin1("de-lu"))
			d->language = de_lu;
		else if (elemText == TQString::tqfromLatin1("de-ch"))
			d->language = de_ch;
		else if (elemText == TQString::tqfromLatin1("el"))
			d->language = el;
		else if (elemText == TQString::tqfromLatin1("hu"))
			d->language = hu;
		else if (elemText == TQString::tqfromLatin1("is"))
			d->language = is;
		else if (elemText == TQString::tqfromLatin1("id"))
			d->language = id;
		else if (elemText == TQString::tqfromLatin1("ga"))
			d->language = ga;
		else if (elemText == TQString::tqfromLatin1("it"))
			d->language = it;
		else if (elemText == TQString::tqfromLatin1("it-it"))
			d->language = it_it;
		else if (elemText == TQString::tqfromLatin1("it-ch"))
			d->language = it_ch;
		else if (elemText == TQString::tqfromLatin1("ja"))
			d->language = ja;
		else if (elemText == TQString::tqfromLatin1("ko"))
			d->language = ko;
		else if (elemText == TQString::tqfromLatin1("mk"))
			d->language = mk;
		else if (elemText == TQString::tqfromLatin1("no"))
			d->language = no;
		else if (elemText == TQString::tqfromLatin1("pl"))
			d->language = pl;
		else if (elemText == TQString::tqfromLatin1("pt"))
			d->language = pt;
		else if (elemText == TQString::tqfromLatin1("pt-br"))
			d->language = pt_br;
		else if (elemText == TQString::tqfromLatin1("pt-pt"))
			d->language = pt_pt;
		else if (elemText == TQString::tqfromLatin1("ro"))
			d->language = ro;
		else if (elemText == TQString::tqfromLatin1("ro-mo"))
			d->language = ro_mo;
		else if (elemText == TQString::tqfromLatin1("ro-ro"))
			d->language = ro_ro;
		else if (elemText == TQString::tqfromLatin1("ru"))
			d->language = ru;
		else if (elemText == TQString::tqfromLatin1("ru-mo"))
			d->language = ru_mo;
		else if (elemText == TQString::tqfromLatin1("ru-ru"))
			d->language = ru_ru;
		else if (elemText == TQString::tqfromLatin1("sr"))
			d->language = sr;
		else if (elemText == TQString::tqfromLatin1("sk"))
			d->language = sk;
		else if (elemText == TQString::tqfromLatin1("sl"))
			d->language = sl;
		else if (elemText == TQString::tqfromLatin1("es"))
			d->language = es;
		else if (elemText == TQString::tqfromLatin1("es-ar"))
			d->language = es_ar;
		else if (elemText == TQString::tqfromLatin1("es-bo"))
			d->language = es_bo;
		else if (elemText == TQString::tqfromLatin1("es-cl"))
			d->language = es_cl;
		else if (elemText == TQString::tqfromLatin1("es-co"))
			d->language = es_co;
		else if (elemText == TQString::tqfromLatin1("es-cr"))
			d->language = es_cr;
		else if (elemText == TQString::tqfromLatin1("es-do"))
			d->language = es_do;
		else if (elemText == TQString::tqfromLatin1("es-ec"))
			d->language = es_ec;
		else if (elemText == TQString::tqfromLatin1("es-sv"))
			d->language = es_sv;
		else if (elemText == TQString::tqfromLatin1("es-gt"))
			d->language = es_gt;
		else if (elemText == TQString::tqfromLatin1("es-hn"))
			d->language = es_hn;
		else if (elemText == TQString::tqfromLatin1("es-mx"))
			d->language = es_mx;
		else if (elemText == TQString::tqfromLatin1("es-ni"))
			d->language = es_ni;
		else if (elemText == TQString::tqfromLatin1("es-pa"))
			d->language = es_pa;
		else if (elemText == TQString::tqfromLatin1("es-py"))
			d->language = es_py;
		else if (elemText == TQString::tqfromLatin1("es-pe"))
			d->language = es_pe;
		else if (elemText == TQString::tqfromLatin1("es-pr"))
			d->language = es_pr;
		else if (elemText == TQString::tqfromLatin1("es-es"))
			d->language = es_es;
		else if (elemText == TQString::tqfromLatin1("es-uy"))
			d->language = es_uy;
		else if (elemText == TQString::tqfromLatin1("es-ve"))
			d->language = es_ve;
		else if (elemText == TQString::tqfromLatin1("sv"))
			d->language = sv;
		else if (elemText == TQString::tqfromLatin1("sv-fi"))
			d->language = sv_fi;
		else if (elemText == TQString::tqfromLatin1("sv-se"))
			d->language = sv_se;
		else if (elemText == TQString::tqfromLatin1("tr"))
			d->language = tr;
		else if (elemText == TQString::tqfromLatin1("uk"))
			d->language = uk;
		else
			d->language = UndefinedLanguage;
	}

	if (!(elemText = extractNode(channelNode, TQString::tqfromLatin1("pubDate"))).isNull()) {
		time_t _time = KRFCDate::parseDate(elemText);
		/* \bug This isn't really the right way since it will set the date to
		 * Jan 1 1970, 1:00:00 if the passed date was invalid; this means that
		 * we cannot distinguish between that date, and invalid values. :-/
		 */
		d->pubDate.setTime_t(_time);
	}

	if (!(elemText = extractNode(channelNode, TQString::tqfromLatin1("dc:date"))).isNull()) {
		time_t _time = KRFCDate::parseDateISO8601(elemText);
		/* \bug This isn't really the right way since it will set the date to
		 * Jan 1 1970, 1:00:00 if the passed date was invalid; this means that
		 * we cannot distinguish between that date, and invalid values. :-/
		 */
		d->pubDate.setTime_t(_time);
	}

	if (!(elemText = extractNode(channelNode, TQString::tqfromLatin1("lastBuildDate"))).isNull()) {
		time_t _time = KRFCDate::parseDate(elemText);
		d->lastBuildDate.setTime_t(_time);
	}

	if (!(elemText = extractNode(channelNode, TQString::tqfromLatin1("rating"))).isNull())
		d->rating = elemText;
	if (!(elemText = extractNode(channelNode, TQString::tqfromLatin1("docs"))).isNull())
		d->docs = elemText;
	if (!(elemText = extractNode(channelNode, TQString::tqfromLatin1("managingEditor"))).isNull())
		d->managingEditor = elemText;
	if (!(elemText = extractNode(channelNode, TQString::tqfromLatin1("webMaster"))).isNull())
		d->webMaster = elemText;

	n = channelNode.namedItem(TQString::tqfromLatin1("skipHours"));
	if (!n.isNull())
		for (TQDomElement e = n.firstChild().toElement(); !e.isNull(); e = e.nextSibling().toElement())
			if (e.tagName() == TQString::tqfromLatin1("hour"))
				d->skipHours.append(e.text().toUInt());

	n = channelNode.namedItem(TQString::tqfromLatin1("skipDays"));
	if (!n.isNull()) {
		Day day;
		TQString elemText;
		for (TQDomElement e = n.firstChild().toElement(); !e.isNull(); e = e.nextSibling().toElement())
			if (e.tagName() == TQString::tqfromLatin1("day")) {
				elemText = e.text().lower();
				if (elemText == TQString::tqfromLatin1("monday"))
					day = Monday;
				else if (elemText == TQString::tqfromLatin1("tuesday"))
					day = Tuesday;
				else if (elemText == TQString::tqfromLatin1("wednesday"))
					day = Wednesday;
				else if (elemText == TQString::tqfromLatin1("thursday"))
					day = Thursday;
				else if (elemText == TQString::tqfromLatin1("friday"))
					day = Friday;
				else if (elemText == TQString::tqfromLatin1("saturday"))
					day = Saturday;
				else if (elemText == TQString::tqfromLatin1("sunday"))
					day = Sunday;
				else
					day = UndefinedDay;
				if (day != UndefinedDay)
					d->skipDays.append(day);
			}
	}
}

Document::~Document()
{
	if (d->deref())
		delete d;
}

Version Document::version() const
{
	return d->version;
}

TQString Document::verbVersion() const
{
	switch (d->version) {
		case v0_90: return TQString::tqfromLatin1("0.90");
		case v0_91: return TQString::tqfromLatin1("0.91");
		case v0_92: return TQString::tqfromLatin1("0.92");
		case v0_93: return TQString::tqfromLatin1("0.93");
		case v0_94: return TQString::tqfromLatin1("0.94");
		case v1_0: return TQString::tqfromLatin1("1.0");
		case v2_0: return TQString::tqfromLatin1("2.0");
	}
	return TQString();
}

TQString Document::title() const
{
	return d->title;
}

TQString Document::description() const
{
	return d->description;
}

const KURL &Document::link() const
{
	return d->link;
}

Image *Document::image()
{
	return d->image;
}

const Image *Document::image() const
{
	return d->image;
}

TextInput *Document::textInput()
{
	return d->textInput;
}

const TextInput *Document::textInput() const
{
	return d->textInput;
}

const Article::List &Document::articles() const
{
	return d->articles;
}

Language Document::language() const
{
	return d->language;
}

TQString Document::copyright() const
{
	return d->copyright;
}

const TQDateTime &Document::pubDate() const
{
	return d->pubDate;
}

const TQDateTime &Document::lastBuildDate() const
{
	return d->lastBuildDate;
}

TQString Document::rating() const
{
	return d->rating;
}

const KURL &Document::docs() const
{
	return d->docs;
}

TQString Document::managingEditor() const
{
	return d->managingEditor;
}

TQString Document::webMaster() const
{
	return d->webMaster;
}

const HourList &Document::skipHours() const
{
	return d->skipHours;
}

const DayList &Document::skipDays() const
{
	return d->skipDays;
}

Document &Document::operator=(const Document &other)
{
	if (this != &other) {
		other.d->ref();
		if (d && d->deref())
			delete d;
		d = other.d;
	}
	return *this;
}

// vim:noet:ts=4