2
2
3
3
// RSS 1.0 parser
4
4
5
- import { DateParser } from './date.js' ;
6
5
import { NamespaceParser } from './namespace.js'
7
6
import { XPath } from './xpath.js' ;
8
7
import { Feed } from '../feed.js' ;
9
8
import { Item } from '../item.js' ;
10
9
11
10
class RDFParser {
12
- static id = 'rdf' ;
13
- static autoDiscover = [
14
- '/rdf:RDF/ns:channel'
15
- ] ;
16
-
17
- static parseItem ( node , feed ) {
18
- let item = new Item ( {
19
- title : XPath . lookup ( node , 'ns:title' ) ,
20
- description : XPath . lookup ( node , 'ns:description' ) ,
21
- source : XPath . lookup ( node , 'ns:link' ) ,
22
- } ) ;
23
-
24
- // Dublin Core support
25
- if ( ! item . description )
26
- item . description = XPath . lookup ( node , 'dc:description' ) ;
27
- if ( ! item . time )
28
- item . time = DateParser . parse ( XPath . lookup ( node , 'dc:date' ) ) ;
29
-
30
- // Finally some guessing
31
- if ( ! item . time )
32
- item . time = Date . now ( ) ;
33
- // FIXME: set an id
34
-
35
- NamespaceParser . parseItem ( node , [ "dc" , "content" , "media" ] , feed , item ) ;
36
-
37
- feed . items . push ( item ) ;
38
- }
39
-
40
- static parse ( str ) {
41
- const parser = new DOMParser ( ) ;
42
- const doc = parser . parseFromString ( str , 'application/xml' ) ;
43
- const root = doc . firstChild ;
44
- let feed = new Feed ( {
45
- error : XPath . lookup ( root , '/parsererror' ) ,
46
- } ) ;
47
-
48
- // RSS 1.0
49
- if ( doc . firstChild . nodeName === 'rdf:RDF' ) {
50
- feed = { ...feed , ...{
51
- title : XPath . lookup ( root , '/rdf:RDF/ns:channel/ns:title' ) ,
52
- description : XPath . lookup ( root , '/rdf:RDF/ns:channel/ns:description' ) ,
53
- homepage : XPath . lookup ( root , '/rdf:RDF/ns:channel/ns:link' )
54
- } } ;
55
-
56
- XPath . foreach ( root , '/rdf:RDF/ns:item' , this . parseItem , feed ) ;
57
- }
58
-
59
- return feed ;
60
- }
11
+ static id = 'rdf' ;
12
+ static autoDiscover = [
13
+ '/rdf:RDF/ns:channel'
14
+ ] ;
15
+
16
+ static parseItem ( node , feed ) {
17
+ let item = new Item ( {
18
+ title : XPath . lookup ( node , 'ns:title' ) ,
19
+ description : XPath . lookup ( node , 'ns:description' ) ,
20
+ source : XPath . lookup ( node , 'ns:link' ) ,
21
+ } ) ;
22
+
23
+ NamespaceParser . parseItem ( node , [ 'dc' , 'content' , 'media' ] , feed , item ) ;
24
+
25
+ feed . addItem ( item ) ;
26
+ }
27
+
28
+ static parse ( str ) {
29
+ const parser = new DOMParser ( ) ;
30
+ const doc = parser . parseFromString ( str , 'application/xml' ) ;
31
+ const root = doc . firstChild ;
32
+ let feed = new Feed ( {
33
+ error : XPath . lookup ( root , '/parsererror' ) ,
34
+ } ) ;
35
+
36
+ // RSS 1.0
37
+ if ( doc . firstChild . nodeName === 'rdf:RDF' ) {
38
+ feed . title = XPath . lookup ( root , '/rdf:RDF/ns:channel/ns:title' ) ;
39
+ feed . description = XPath . lookup ( root , '/rdf:RDF/ns:channel/ns:description' ) ;
40
+ feed . homepage = XPath . lookup ( root , '/rdf:RDF/ns:channel/ns:link' ) ;
41
+
42
+ XPath . foreach ( root , '/rdf:RDF/ns:item' , this . parseItem , feed ) ;
43
+ }
44
+
45
+ return feed ;
46
+ }
61
47
}
62
48
63
49
export { RDFParser } ;
0 commit comments