Browse Source

Merge pull request #5151 from nocodb/feat/set-cache-header

feat(nocodb): set cache header for attachment urls
refactor/icons-update
աɨռɢӄաօռɢ 2 years ago committed by GitHub
parent
commit
519ed72761
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 55
      packages/nocodb/src/lib/meta/api/attachmentApis.ts
  2. 13
      packages/nocodb/src/lib/meta/api/helpers/cacheHelpers.ts
  3. 1
      packages/nocodb/src/lib/meta/api/helpers/index.ts

55
packages/nocodb/src/lib/meta/api/attachmentApis.ts

@ -14,6 +14,7 @@ import catchError, { NcError } from '../helpers/catchError';
import NcPluginMgrv2 from '../helpers/NcPluginMgrv2'; import NcPluginMgrv2 from '../helpers/NcPluginMgrv2';
import Local from '../../v1-legacy/plugins/adapters/storage/Local'; import Local from '../../v1-legacy/plugins/adapters/storage/Local';
import { NC_ATTACHMENT_FIELD_SIZE } from '../../constants'; import { NC_ATTACHMENT_FIELD_SIZE } from '../../constants';
import { getCacheMiddleware } from './helpers';
const isUploadAllowed = async (req: Request, _res: Response, next: any) => { const isUploadAllowed = async (req: Request, _res: Response, next: any) => {
if (!req['user']?.id) { if (!req['user']?.id) {
@ -161,32 +162,36 @@ export async function fileRead(req, res) {
const router = Router({ mergeParams: true }); const router = Router({ mergeParams: true });
router.get(/^\/dl\/([^/]+)\/([^/]+)\/(.+)$/, async (req, res) => { router.get(
try { /^\/dl\/([^/]+)\/([^/]+)\/(.+)$/,
// const type = mimetypes[path.extname(req.params.fileName).slice(1)] || 'text/plain'; getCacheMiddleware(),
const type = async (req, res) => {
mimetypes[path.extname(req.params[2]).split('/').pop().slice(1)] || try {
'text/plain'; // const type = mimetypes[path.extname(req.params.fileName).slice(1)] || 'text/plain';
const type =
const storageAdapter = await NcPluginMgrv2.storageAdapter(); mimetypes[path.extname(req.params[2]).split('/').pop().slice(1)] ||
// const img = await this.storageAdapter.fileRead(slash(path.join('nc', req.params.projectId, req.params.dbAlias, 'uploads', req.params.fileName))); 'text/plain';
const img = await storageAdapter.fileRead(
slash( const storageAdapter = await NcPluginMgrv2.storageAdapter();
path.join( // const img = await this.storageAdapter.fileRead(slash(path.join('nc', req.params.projectId, req.params.dbAlias, 'uploads', req.params.fileName)));
'nc', const img = await storageAdapter.fileRead(
req.params[0], slash(
req.params[1], path.join(
'uploads', 'nc',
...req.params[2].split('/') req.params[0],
req.params[1],
'uploads',
...req.params[2].split('/')
)
) )
) );
); res.writeHead(200, { 'Content-Type': type });
res.writeHead(200, { 'Content-Type': type }); res.end(img, 'binary');
res.end(img, 'binary'); } catch (e) {
} catch (e) { res.status(404).send('Not found');
res.status(404).send('Not found'); }
} }
}); );
export function sanitizeUrlPath(paths) { export function sanitizeUrlPath(paths) {
return paths.map((url) => url.replace(/[/.?#]+/g, '_')); return paths.map((url) => url.replace(/[/.?#]+/g, '_'));
@ -217,6 +222,6 @@ router.post(
] ]
); );
router.get(/^\/download\/(.+)$/, catchError(fileRead)); router.get(/^\/download\/(.+)$/, getCacheMiddleware(), catchError(fileRead));
export default router; export default router;

13
packages/nocodb/src/lib/meta/api/helpers/cacheHelpers.ts

@ -0,0 +1,13 @@
// return a middleware to set cache-control header
// default period is 30 days
export const getCacheMiddleware = (period: string | number = 2592000) => {
return async (req, res, next) => {
const { method } = req;
// only cache GET requests
if (method === 'GET') {
// set cache-control header
res.set('Cache-Control', `public, max-age=${period}`);
}
next();
};
};

1
packages/nocodb/src/lib/meta/api/helpers/index.ts

@ -1,5 +1,6 @@
import { populateMeta } from './populateMeta'; import { populateMeta } from './populateMeta';
export * from './columnHelpers'; export * from './columnHelpers';
export * from './apiHelpers'; export * from './apiHelpers';
export * from './cacheHelpers';
export { populateMeta }; export { populateMeta };

Loading…
Cancel
Save