mirror of
https://github.com/directus/directus.git
synced 2026-04-25 03:00:53 -04:00
* Redact additional keys in logs of Flows
* Create moody-poems-pump.md
* Move REDACTED_TEXT to constants package & update tests
* Revert "Move REDACTED_TEXT to constants package & update tests"
This reverts commit 0f5b227253.
* Update redacted value in blackbox test
* Use own redact implementation
* Move REDACTED_TEXT to constants package
* Replace outdated comment
* Fix misleading return type
Since values might change (redacted), output isn't necessarily the same type anymore
84 lines
2.4 KiB
TypeScript
84 lines
2.4 KiB
TypeScript
import type { CookieOptions } from 'express';
|
|
import env from './env.js';
|
|
import type { TransformationParams } from './types/index.js';
|
|
import { getMilliseconds } from './utils/get-milliseconds.js';
|
|
|
|
export const SYSTEM_ASSET_ALLOW_LIST: TransformationParams[] = [
|
|
{
|
|
key: 'system-small-cover',
|
|
format: 'auto',
|
|
transforms: [['resize', { width: 64, height: 64, fit: 'cover' }]],
|
|
},
|
|
{
|
|
key: 'system-small-contain',
|
|
format: 'auto',
|
|
transforms: [['resize', { width: 64, fit: 'contain' }]],
|
|
},
|
|
{
|
|
key: 'system-medium-cover',
|
|
format: 'auto',
|
|
transforms: [['resize', { width: 300, height: 300, fit: 'cover' }]],
|
|
},
|
|
{
|
|
key: 'system-medium-contain',
|
|
format: 'auto',
|
|
transforms: [['resize', { width: 300, fit: 'contain' }]],
|
|
},
|
|
{
|
|
key: 'system-large-cover',
|
|
format: 'auto',
|
|
transforms: [['resize', { width: 800, height: 800, fit: 'cover' }]],
|
|
},
|
|
{
|
|
key: 'system-large-contain',
|
|
format: 'auto',
|
|
transforms: [['resize', { width: 800, fit: 'contain' }]],
|
|
},
|
|
];
|
|
|
|
export const ASSET_TRANSFORM_QUERY_KEYS: Array<keyof TransformationParams> = [
|
|
'key',
|
|
'transforms',
|
|
'width',
|
|
'height',
|
|
'format',
|
|
'fit',
|
|
'quality',
|
|
'withoutEnlargement',
|
|
];
|
|
|
|
export const FILTER_VARIABLES = ['$NOW', '$CURRENT_USER', '$CURRENT_ROLE'];
|
|
|
|
export const ALIAS_TYPES = ['alias', 'o2m', 'm2m', 'm2a', 'o2a', 'files', 'translations'];
|
|
|
|
export const DEFAULT_AUTH_PROVIDER = 'default';
|
|
|
|
export const COLUMN_TRANSFORMS = ['year', 'month', 'day', 'weekday', 'hour', 'minute', 'second'];
|
|
|
|
export const GENERATE_SPECIAL = ['uuid', 'date-created', 'role-created', 'user-created'];
|
|
|
|
export const UUID_REGEX = '[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}';
|
|
|
|
export const COOKIE_OPTIONS: CookieOptions = {
|
|
httpOnly: true,
|
|
domain: env['REFRESH_TOKEN_COOKIE_DOMAIN'],
|
|
maxAge: getMilliseconds(env['REFRESH_TOKEN_TTL']),
|
|
secure: env['REFRESH_TOKEN_COOKIE_SECURE'] ?? false,
|
|
sameSite: (env['REFRESH_TOKEN_COOKIE_SAME_SITE'] as 'lax' | 'strict' | 'none') || 'strict',
|
|
};
|
|
|
|
export const OAS_REQUIRED_SCHEMAS = ['Diff', 'Schema', 'Query', 'x-metadata'];
|
|
|
|
/** Formats from which transformation is supported */
|
|
export const SUPPORTED_IMAGE_TRANSFORM_FORMATS = ['image/jpeg', 'image/png', 'image/webp', 'image/tiff', 'image/avif'];
|
|
|
|
/** Formats where metadata extraction is supported */
|
|
export const SUPPORTED_IMAGE_METADATA_FORMATS = [
|
|
'image/jpeg',
|
|
'image/png',
|
|
'image/webp',
|
|
'image/gif',
|
|
'image/tiff',
|
|
'image/avif',
|
|
];
|