Files
RSSHub/lib/v2/cste/index.js
Ethan Shen d5e56c14fb feat(route): add 中国技术经济学会 (#12300)
* chore(deps): bump chrono-node from 2.6.2 to 2.6.3 (#513)

Bumps [chrono-node](https://github.com/wanasit/chrono) from 2.6.2 to 2.6.3.
- [Release notes](https://github.com/wanasit/chrono/releases)
- [Commits](https://github.com/wanasit/chrono/compare/v2.6.2...v2.6.3)

---
updated-dependencies:
- dependency-name: chrono-node
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps-dev): bump meilisearch from 0.32.2 to 0.32.3 (#518)

Bumps [meilisearch](https://github.com/meilisearch/meilisearch-js) from 0.32.2 to 0.32.3.
- [Release notes](https://github.com/meilisearch/meilisearch-js/releases)
- [Commits](https://github.com/meilisearch/meilisearch-js/compare/v0.32.2...v0.32.3)

---
updated-dependencies:
- dependency-name: meilisearch
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): bump koa from 2.14.1 to 2.14.2 (#522)

Bumps [koa](https://github.com/koajs/koa) from 2.14.1 to 2.14.2.
- [Release notes](https://github.com/koajs/koa/releases)
- [Changelog](https://github.com/koajs/koa/blob/2.14.2/History.md)
- [Commits](https://github.com/koajs/koa/compare/2.14.1...2.14.2)

---
updated-dependencies:
- dependency-name: koa
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* feat(route): add 中国技术经济学会

* style: fix linebreak

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-04-13 23:47:02 +08:00

57 lines
1.5 KiB
JavaScript

const got = require('@/utils/got');
const cheerio = require('cheerio');
const { parseDate } = require('@/utils/parse-date');
module.exports = async (ctx) => {
const id = ctx.params.id ?? '16';
const limit = ctx.query.limit ? parseInt(ctx.query.limit) : 10;
const rootUrl = 'https://www.cste.org.cn';
const currentUrl = `${rootUrl}/site/term/${id}.html`;
const response = await got({
method: 'get',
url: currentUrl,
});
const $ = cheerio.load(response.data);
let items = $('a.list-group-item')
.slice(0, limit)
.toArray()
.map((item) => {
item = $(item);
return {
title: item.find('h5').text(),
link: `${rootUrl}${item.attr('href')}`,
pubDate: parseDate(item.find('small').text()),
};
});
items = await Promise.all(
items.map((item) =>
ctx.cache.tryGet(item.link, async () => {
const detailResponse = await got({
method: 'get',
url: item.link,
});
const content = cheerio.load(detailResponse.data);
content('.Next').remove();
item.description = content('.article').html();
return item;
})
)
);
ctx.state.data = {
title: `中国技术经济学会 - ${$('.leftTop').text()}`,
link: currentUrl,
item: items,
};
};