mirror of
https://github.com/mendableai/firecrawl.git
synced 2024-11-16 11:42:24 +08:00
Nick: @rafaelsideguide isarray for includes/excludes
This commit is contained in:
parent
7d93eab0f8
commit
558acffb33
|
@ -34,10 +34,30 @@ export async function crawlController(
|
||||||
|
|
||||||
const { remainingCredits } = req.account;
|
const { remainingCredits } = req.account;
|
||||||
|
|
||||||
// TODO: Get rid of crawlerOptions
|
|
||||||
const crawlerOptions = legacyCrawlerOptions(req.body);
|
const crawlerOptions = legacyCrawlerOptions(req.body);
|
||||||
const pageOptions = legacyScrapeOptions(req.body.scrapeOptions);
|
const pageOptions = legacyScrapeOptions(req.body.scrapeOptions);
|
||||||
|
|
||||||
|
// TODO: @rafa, is this right? copied from v0
|
||||||
|
if (Array.isArray(crawlerOptions.includes)) {
|
||||||
|
for (const x of crawlerOptions.includes) {
|
||||||
|
try {
|
||||||
|
new RegExp(x);
|
||||||
|
} catch (e) {
|
||||||
|
return res.status(400).json({ success: false, error: e.message });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (Array.isArray(crawlerOptions.excludes)) {
|
||||||
|
for (const x of crawlerOptions.excludes) {
|
||||||
|
try {
|
||||||
|
new RegExp(x);
|
||||||
|
} catch (e) {
|
||||||
|
return res.status(400).json({ success: false, error: e.message });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
crawlerOptions.limit = Math.min(remainingCredits, crawlerOptions.limit);
|
crawlerOptions.limit = Math.min(remainingCredits, crawlerOptions.limit);
|
||||||
|
|
||||||
const sc: StoredCrawl = {
|
const sc: StoredCrawl = {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user