-
Notifications
You must be signed in to change notification settings - Fork 7.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(route): Add ekantipur.com (Nepal) (#14207)
* feat(route): Add ekantipur remove unused deps * feat(route): Add ekantipur radar * removed undefined field * updated maintainer.js to use optional field character - ? * updated radar.js with full name ---------
- Loading branch information
Showing
5 changed files
with
95 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
// Require necessary modules | ||
const got = require('@/utils/got'); // a customised got | ||
const cheerio = require('cheerio'); // an HTML parser with a jQuery-like API | ||
|
||
module.exports = async (ctx) => { | ||
// Your logic here | ||
// Defining base URL | ||
const baseUrl = 'https://ekantipur.com'; | ||
|
||
// Retrive the channel parameter | ||
const { channel = 'news' } = ctx.params; | ||
|
||
// Fetches content of the requested channel | ||
const { data: response } = await got(`${baseUrl}/${channel}`); | ||
const $ = cheerio.load(response); | ||
|
||
// Retrive articles | ||
const list = $('article.normal') | ||
// We use the `toArray()` method to retrieve all the DOM elements selected as an array. | ||
.toArray() | ||
// We use the `map()` method to traverse the array and parse the data we need from each element. | ||
.map((item) => { | ||
item = $(item); | ||
const a = item.find('a').first(); | ||
return { | ||
title: a.text(), | ||
// We need an absolute URL for `link`, but `a.attr('href')` returns a relative URL. | ||
link: `${baseUrl}${a.attr('href')}`, | ||
author: item.find('div.author').text(), | ||
category: channel, | ||
}; | ||
}); | ||
|
||
const items = await Promise.all( | ||
list.map((item) => | ||
ctx.cache.tryGet(item.link, async () => { | ||
const { data: response } = await got(item.link); | ||
const $ = cheerio.load(response); | ||
|
||
// Remove sponsor elements | ||
$('a.static-sponsor').remove(); | ||
$('div.ekans-wrapper').remove(); | ||
|
||
// Fetch title from the article page | ||
item.title = $('h1.eng-text-heading').text(); | ||
// Fetch article content from the article page | ||
item.description = $('div.current-news-block').first().html(); | ||
|
||
// Every property of a list item defined above is reused here | ||
// and we add a new property 'description' | ||
return item; | ||
}) | ||
) | ||
); | ||
|
||
ctx.state.data = { | ||
// channel title | ||
title: `Ekantipur - ${channel}`, | ||
// channel link | ||
link: `${baseUrl}/${channel}`, | ||
// each feed item | ||
item: items, | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module.exports = { | ||
'/:channel?': ['maniche04'], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
module.exports = { | ||
'ekantipur.com': { | ||
_name: 'Ekantipur', | ||
'.': [ | ||
{ | ||
title: 'Full Article RSS', | ||
docs: 'https://docs.rsshub.app/routes/traditional-media#ekantipur-%E0%A4%95%E0%A4%BE%E0%A4%A8%E0%A5%8D%E0%A4%A4%E0%A4%BF%E0%A4%AA%E0%A5%81%E0%A4%B0-nepal', | ||
source: ['/:channel'], | ||
target: '/ekantipur/:channel', | ||
}, | ||
], | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module.exports = (router) => { | ||
router.get('/:channel?', require('./issue')); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters