security: harden production configuration and routes
Run Tests on Branches / Detect Changes (push) Successful in 12s
Run Tests on Branches / Frontend Tests (push) Successful in 2m12s
Run Tests on Branches / Frontend Mobile Tests (push) Has been skipped
Run Tests on Branches / Parapharmacy API Tests (push) Successful in 2m2s
Run Tests on Branches / PIP Platform Tests (push) Has been skipped
Run Tests on Branches / Backend Tests (push) Successful in 2m8s

This commit is contained in:
Antoni Nuñez Romeu
2026-07-22 17:24:54 +02:00
parent f60af5f6b2
commit 849763896d
21 changed files with 638 additions and 68 deletions
+13 -2
View File
@@ -1,12 +1,23 @@
import { Router } from 'express';
import { scrapeAll } from '../scraper.js';
import rateLimit from 'express-rate-limit';
import { requireServiceKey } from '../middleware/service-auth.js';
const router = Router();
const scrapeLimiter = rateLimit({
windowMs: 15 * 60 * 1000,
max: 5,
standardHeaders: true,
legacyHeaders: false,
});
// Trigger scraping
router.post('/scrape', async (req, res) => {
router.post('/scrape', scrapeLimiter, requireServiceKey('INGEST_API_KEY'), async (req, res) => {
try {
const { queries = ['crema hidratante'], sources = ['promofarma'] } = req.body;
if (!Array.isArray(queries) || !Array.isArray(sources) || queries.length > 20 || sources.length > 10) {
return res.status(400).json({ error: 'queries and sources must be bounded arrays' });
}
console.log('[Scraper] Starting scrape...');
console.log(`[Scraper] Queries: ${queries.join(', ')}`);
@@ -19,7 +30,7 @@ router.post('/scrape', async (req, res) => {
res.json(result);
} catch (error) {
console.error('[Scraper] Error:', error.message);
res.status(500).json({ error: 'Scraping failed', message: error.message });
res.status(500).json({ error: 'Scraping failed' });
}
});