Existing SSO accounts have no local password, so the migration deactivates them before dropping is_sso_user and the identity_provider_user table.
95 lines
2.9 KiB
JavaScript
95 lines
2.9 KiB
JavaScript
/**
|
|
* Custom configuration
|
|
* (sails.config.custom)
|
|
*
|
|
* One-off settings specific to your application.
|
|
*
|
|
* For more information on custom configuration, visit:
|
|
* https://sailsjs.com/config/custom
|
|
*/
|
|
|
|
const path = require('path');
|
|
const { URL } = require('url');
|
|
const bytes = require('bytes');
|
|
const sails = require('sails');
|
|
|
|
const version = require('../version');
|
|
|
|
const envToNumber = (value) => {
|
|
if (!value) {
|
|
return null;
|
|
}
|
|
|
|
const number = parseInt(value, 10);
|
|
return Number.isNaN(number) ? null : number;
|
|
};
|
|
|
|
const envToBytes = (value) => bytes(value);
|
|
|
|
const envToArray = (value) => (value ? value.split(',') : []);
|
|
|
|
const baseUrl = envToArray(process.env.BASE_URL)[0];
|
|
const parsedBasedUrl = new URL(baseUrl);
|
|
|
|
module.exports.custom = {
|
|
/**
|
|
*
|
|
* Any other custom config this Sails app should use during development.
|
|
*
|
|
*/
|
|
|
|
version,
|
|
|
|
baseUrl,
|
|
baseUrlPath: parsedBasedUrl.pathname.replace(/\/$/, ''), // Remove trailing slash
|
|
baseUrlSecure: parsedBasedUrl.protocol === 'https:',
|
|
|
|
maxUploadFileSize: envToBytes(process.env.MAX_UPLOAD_FILE_SIZE),
|
|
tokenExpiresIn: (parseInt(process.env.TOKEN_EXPIRES_IN, 10) || 365) * 24 * 60 * 60,
|
|
|
|
storageLimit: envToBytes(process.env.STORAGE_LIMIT),
|
|
activeUsersLimit: envToNumber(process.env.ACTIVE_USERS_LIMIT),
|
|
|
|
// Location to receive uploaded files in. Default (non-string value) is a Sails-specific location.
|
|
uploadsTempPath: null,
|
|
uploadsBasePath: path.join(sails.config.appPath, 'data'),
|
|
|
|
faviconsPathSegment: 'protected/favicons',
|
|
userAvatarsPathSegment: 'protected/user-avatars',
|
|
backgroundImagesPathSegment: 'protected/background-images',
|
|
attachmentsPathSegment: 'private/attachments',
|
|
|
|
defaultAdminEmail:
|
|
process.env.DEFAULT_ADMIN_EMAIL && process.env.DEFAULT_ADMIN_EMAIL.toLowerCase(),
|
|
|
|
showDetailedAuthErrors: process.env.SHOW_DETAILED_AUTH_ERRORS === 'true',
|
|
outgoingProxy: process.env.OUTGOING_PROXY,
|
|
swaggerExposed: process.env.SWAGGER_EXPOSED === 'true',
|
|
|
|
s3Endpoint: process.env.S3_ENDPOINT,
|
|
s3Region: process.env.S3_REGION,
|
|
s3AccessKeyId: process.env.S3_ACCESS_KEY_ID,
|
|
s3SecretAccessKey: process.env.S3_SECRET_ACCESS_KEY,
|
|
s3Bucket: process.env.S3_BUCKET,
|
|
s3ForcePathStyle: process.env.S3_FORCE_PATH_STYLE === 'true',
|
|
s3RequestChecksumCalculation: process.env.S3_REQUEST_CHECKSUM_CALCULATION,
|
|
|
|
smtpHost: process.env.SMTP_HOST,
|
|
smtpPort: process.env.SMTP_PORT || 587,
|
|
smtpName: process.env.SMTP_NAME,
|
|
smtpSecure: process.env.SMTP_SECURE === 'true',
|
|
smtpTlsRejectUnauthorized: process.env.SMTP_TLS_REJECT_UNAUTHORIZED !== 'false',
|
|
smtpUser: process.env.SMTP_USER,
|
|
smtpPassword: process.env.SMTP_PASSWORD,
|
|
smtpFrom: process.env.SMTP_FROM,
|
|
|
|
gravatarBaseUrl: process.env.GRAVATAR_BASE_URL,
|
|
|
|
/* Internal */
|
|
|
|
internalAccessToken: process.env.INTERNAL_ACCESS_TOKEN,
|
|
termsType: process.env.TERMS_TYPE || 'custom',
|
|
customerPanelUrl: process.env.CUSTOMER_PANEL_URL,
|
|
demoMode: process.env.DEMO_MODE === 'true',
|
|
};
|