-
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): cmpxchg8b Signed-off-by: yuguorui <yuguorui@pku.edu.cn> * Update website/docs/routes/programming.mdx * docs: move to blog --------- Signed-off-by: yuguorui <yuguorui@pku.edu.cn>
- Loading branch information
Showing
6 changed files
with
68 additions
and
1 deletion.
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,43 @@ | ||
const got = require('@/utils/got'); | ||
const cheerio = require('cheerio'); | ||
|
||
const baseUrl = 'https://lock.cmpxchg8b.com/'; | ||
const title = 'cmpxchg8b'; | ||
|
||
module.exports = async (ctx) => { | ||
const { data: response } = await got(baseUrl); | ||
|
||
const $ = cheerio.load(response); | ||
const author = $('p.author').text().trim(); | ||
const list = $('section#articles section') | ||
.toArray() | ||
.map((item) => { | ||
item = $(item); | ||
return { | ||
title: item.find('li').text(), | ||
link: new URL(item.find('li a').attr('href'), baseUrl).toString(), | ||
author, | ||
}; | ||
}); | ||
|
||
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); | ||
|
||
// extract the body but removing <nav> and <footer> | ||
const body = $('body'); | ||
body.find('nav, footer').remove(); | ||
item.description = body.html(); | ||
return item; | ||
}) | ||
) | ||
); | ||
|
||
ctx.state.data = { | ||
title, | ||
link: new URL('#articles', baseUrl).toString(), | ||
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 = { | ||
'/articles': ['yuguorui'], | ||
}; |
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 = { | ||
'cmpxchg8b.com': { | ||
_name: 'cmpxchg8b', | ||
lock: [ | ||
{ | ||
title: '文章 articles', | ||
docs: 'https://docs.rsshub.app/routes/blog#cmpxchg8b', | ||
source: ['/articles'], | ||
target: '/cmpxchg8b/articles', | ||
}, | ||
], | ||
}, | ||
}; |
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('/articles', require('./articles')); | ||
}; |
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
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