Skip to content

Commit

Permalink
feat(route): Add feed for sciencedirect call for paper (DIYgod#18039)
Browse files Browse the repository at this point in the history
* add feed for sciencedirect call for paper

* Update lib/routes/sciencedirect/call-for-paper.ts

Co-authored-by: Tony <[email protected]>

* add parameters and use templates

* Update call-for-paper.ts

---------
  • Loading branch information
etShaw-zh authored Jan 8, 2025
1 parent c4cb51c commit c2c8b25
Show file tree
Hide file tree
Showing 2 changed files with 85 additions and 0 deletions.
80 changes: 80 additions & 0 deletions lib/routes/sciencedirect/call-for-paper.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
import { Route } from '@/types';
import { getCurrentPath } from '@/utils/helpers';
import got from '@/utils/got';
import { load } from 'cheerio';
import { art } from '@/utils/render';
import path from 'node:path';
const __dirname = getCurrentPath(import.meta.url);

export const route: Route = {
path: '/call-for-paper/:subject',
categories: ['journal'],
example: '/sciencedirect/call-for-paper/education',
parameters: {
subject: '学科分类,例如“education”',
},
radar: [
{
source: ['sciencedirect.com'],
},
],
name: 'Call for Papers',
maintainers: ['etShaw-zh'],
handler,
url: 'sciencedirect.com/browse/calls-for-papers',
description: '`sciencedirect.com/browse/calls-for-papers?subject=education` -> `/sciencedirect/call-for-paper/education`',
};

async function handler(ctx) {
const { subject = '' } = ctx.req.param();
const apiUrl = `https://www.sciencedirect.com/browse/calls-for-papers?subject=${subject}`;
const headers = {
accept: 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7',
'user-agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36', // need this to avoid 403, 503 error
};
const response = await got(apiUrl, { headers });
const $ = load(response.body);

const scriptJSON = $('script[data-iso-key="_0"]').text();
if (!scriptJSON) {
throw new Error('Cannot find the script with data-iso-key="_0"');
}

let data;
try {
data = JSON.parse(JSON.parse(scriptJSON));
} catch (error: any) {
throw new Error(`Failed to parse embedded script JSON: ${error.message}`);
}

const cfpList = data?.callsForPapers?.list || [];
if (!cfpList.length) {
throw new Error('No Calls for Papers found');
}

const items = cfpList.map((cfp) => {
const link = `https://www.sciencedirect.com/special-issue/${cfp.contentId}/${cfp.url}`;
const description = art(path.join(__dirname, 'templates/description.art'), {
summary: cfp.summary,
submissionDeadline: cfp.submissionDeadline,
displayName: cfp.journal.displayName,
impactFactor: cfp.journal.impactFactor,
citeScore: cfp.journal.citeScore,
});

return {
title: cfp.title,
author: `${cfp.journal.displayName} (IF: ${cfp.journal.impactFactor})`,
link,
description,
pubDate: cfp.submissionDeadline || '',
};
});

return {
title: `ScienceDirect Calls for Papers - ${subject}`,
link: apiUrl,
description: `Calls for Papers on ScienceDirect for subject: ${subject}`,
item: items,
};
}
5 changes: 5 additions & 0 deletions lib/routes/sciencedirect/templates/description.art
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<div>
<p><strong>Summary:</strong> {{summary}} </p>
<p><strong>Submission Deadline:</strong> {{submissionDeadline}}</p>
<p><strong>Journal:</strong> {{displayName}} (IF: {{impactFactor}}, CiteScore: {{citeScore}})</p>
</div>

0 comments on commit c2c8b25

Please sign in to comment.