mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2025-12-24 02:39:18 -05:00
The ImageProxy for TMDB and TheTVDB were initialized before the proxy settings were set up, so they were ignoring the proxy settings. fix #1787
69 lines
1.9 KiB
TypeScript
69 lines
1.9 KiB
TypeScript
import ImageProxy from '@server/lib/imageproxy';
|
|
import logger from '@server/logger';
|
|
import { Router } from 'express';
|
|
|
|
const router = Router();
|
|
|
|
// Delay the initialization of ImageProxy instances until the proxy (if any) is properly configured
|
|
let _tmdbImageProxy: ImageProxy;
|
|
function initTmdbImageProxy() {
|
|
if (!_tmdbImageProxy) {
|
|
_tmdbImageProxy = new ImageProxy('tmdb', 'https://image.tmdb.org', {
|
|
rateLimitOptions: {
|
|
maxRequests: 20,
|
|
maxRPS: 50,
|
|
},
|
|
});
|
|
}
|
|
return _tmdbImageProxy;
|
|
}
|
|
let _tvdbImageProxy: ImageProxy;
|
|
function initTvdbImageProxy() {
|
|
if (!_tvdbImageProxy) {
|
|
_tvdbImageProxy = new ImageProxy('tvdb', 'https://artworks.thetvdb.com', {
|
|
rateLimitOptions: {
|
|
maxRequests: 20,
|
|
maxRPS: 50,
|
|
},
|
|
});
|
|
}
|
|
return _tvdbImageProxy;
|
|
}
|
|
|
|
router.get('/:type/*', async (req, res) => {
|
|
const imagePath = req.path.replace(/^\/\w+/, '');
|
|
try {
|
|
let imageData;
|
|
if (req.params.type === 'tmdb') {
|
|
imageData = await initTmdbImageProxy().getImage(imagePath);
|
|
} else if (req.params.type === 'tvdb') {
|
|
imageData = await initTvdbImageProxy().getImage(imagePath);
|
|
} else {
|
|
logger.error('Unsupported image type', {
|
|
imagePath,
|
|
type: req.params.type,
|
|
});
|
|
res.status(400).send('Unsupported image type');
|
|
return;
|
|
}
|
|
|
|
res.writeHead(200, {
|
|
'Content-Type': `image/${imageData.meta.extension}`,
|
|
'Content-Length': imageData.imageBuffer.length,
|
|
'Cache-Control': `public, max-age=${imageData.meta.curRevalidate}`,
|
|
'OS-Cache-Key': imageData.meta.cacheKey,
|
|
'OS-Cache-Status': imageData.meta.cacheMiss ? 'MISS' : 'HIT',
|
|
});
|
|
|
|
res.end(imageData.imageBuffer);
|
|
} catch (e) {
|
|
logger.error('Failed to proxy image', {
|
|
imagePath,
|
|
errorMessage: e.message,
|
|
});
|
|
res.status(500).send();
|
|
}
|
|
});
|
|
|
|
export default router;
|