Skip to content

Commit

Permalink
v6.3.2
Browse files Browse the repository at this point in the history
Fixed reference parsing bugs
  • Loading branch information
dijs committed Aug 16, 2021
1 parent 943c53c commit 09dd8a6
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 20 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -2,7 +2,7 @@
"name": "wikijs",
"description": "Mediawiki interface for Node and Web",
"author": "Richard van der Dys",
"version": "6.3.1",
"version": "6.3.2",
"keywords": [
"wiki",
"wikipedia",
Expand Down
30 changes: 25 additions & 5 deletions src/page.js
Expand Up @@ -241,6 +241,17 @@ export default function wikiPage(rawPageInfo, apiOptions) {
return null;
}

function findNodes(node, predicate, nodes) {
if (predicate(node)) {
nodes.push(node);
}
if (node.content.children) {
for (let child of node.content.children) {
findNodes(child, predicate, nodes);
}
}
}

/**
* References from page
* @example
Expand All @@ -257,14 +268,23 @@ export default function wikiPage(rawPageInfo, apiOptions) {
})
.then(ast => {
const links = [];
const refs = findNode(
const refs = [];
// There can be mulitple reference sections
findNodes(
ast,
node => isTag(node) && hasClass(node, 'references')
node =>
isTag(node) && hasName(node, 'ol') && hasClass(node, 'references'),
refs
);
if (refs) {
for (let ref of refs.content.children[0].content.children) {
for (let ref of refs) {
const items = ref.content.children.filter(
el => isTag(el) && hasName(el, 'li') && el.content.children
);
for (let item of items) {
// The reference was moved under a span under li
const span = item.content.children[2];
const cite = findNode(
ref,
span,
node => isTag(node) && hasName(node, 'cite')
);
if (cite) {
Expand Down
20 changes: 7 additions & 13 deletions test/real.js
Expand Up @@ -24,7 +24,7 @@ describe('Live tests', () => {
this.timeout(timeoutTime);
setTimeout(() => {
done();
}, 1000);
}, 100);
});

it.skip('should handle error response', function(done) {
Expand Down Expand Up @@ -396,23 +396,18 @@ describe('Live tests', () => {
});
});

// Not parsing...
it.skip('should return references in correct order', function() {
it('should return references in correct order', function() {
this.timeout(timeoutTime);
return wiki()
.page('Elon Musk')
.then(page => page.references())
.then(refs => {
refs[0].should.equal(
'https://www.forbes.com/sites/trulia/2013/11/01/billionaire-tesla-ceo-elon-musk-buys-home/'
'https://www.independent.co.uk/life-style/elon-musk-son-grimes-childcare-interview-a9638321.html'
);
refs[1].should.equal(
'https://web.archive.org/web/20150207033543/http://www.bloomberg.com/news/videos/b/6e27fcba-309d-494e-b87d-c73fb8bb1750'
refs[3].should.equal(
'https://www.fastcompany.com/1367866/tesla-lawsuit-drama-ends-five-company-founders-emerge'
);
refs[2].should.equal(
'https://www.bloomberg.com/news/videos/b/6e27fcba-309d-494e-b87d-c73fb8bb1750'
);
refs[3].should.equal('https://www.forbes.com/profile/elon-musk/');
});
});

Expand All @@ -437,8 +432,7 @@ describe('Live tests', () => {
});
});

// TODO: new html parsing is NOT working
it.skip('should parse external references', function() {
it('should parse external references', function() {
this.timeout(timeoutTime);
return wiki()
.page('Batman')
Expand All @@ -447,7 +441,7 @@ describe('Live tests', () => {
refs.should.containEql(
'http://www.behindthevoiceactors.com/characters/Batman/Batman/'
);
refs.length.should.equal(140);
refs.length.should.equal(143);
});
});

Expand Down
2 changes: 1 addition & 1 deletion test/spec.js
Expand Up @@ -104,7 +104,7 @@ describe('Page Methods', () => {
this.timeout(timeoutTime);
setTimeout(() => {
done();
}, 1000);
}, 100);
});

before(done => {
Expand Down

0 comments on commit 09dd8a6

Please sign in to comment.