mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
fa8161d4ce
Remove public files code from filestore GitOrigin-RevId: 05aedc8bc1068dc6cfb17c9f9402fddce273b4a9
139 lines
3.2 KiB
JavaScript
139 lines
3.2 KiB
JavaScript
const fs = require('fs')
|
|
const Path = require('path')
|
|
|
|
// use functions to get a fresh copy, not a reference, each time
|
|
function s3Config() {
|
|
return {
|
|
key: process.env.AWS_ACCESS_KEY_ID,
|
|
secret: process.env.AWS_SECRET_ACCESS_KEY,
|
|
endpoint: process.env.AWS_S3_ENDPOINT,
|
|
pathStyle: true,
|
|
partSize: 100 * 1024 * 1024,
|
|
}
|
|
}
|
|
|
|
function s3ConfigDefaultProviderCredentials() {
|
|
return {
|
|
endpoint: process.env.AWS_S3_ENDPOINT,
|
|
pathStyle: true,
|
|
partSize: 100 * 1024 * 1024,
|
|
}
|
|
}
|
|
|
|
function s3Stores() {
|
|
return {
|
|
user_files: process.env.AWS_S3_USER_FILES_BUCKET_NAME,
|
|
template_files: process.env.AWS_S3_TEMPLATE_FILES_BUCKET_NAME,
|
|
}
|
|
}
|
|
|
|
function gcsConfig() {
|
|
return {
|
|
endpoint: {
|
|
apiEndpoint: process.env.GCS_API_ENDPOINT,
|
|
projectId: 'fake',
|
|
},
|
|
directoryKeyRegex: /^[0-9a-fA-F]{24}\/[0-9a-fA-F]{24}/,
|
|
unlockBeforeDelete: false, // fake-gcs does not support this
|
|
deletedBucketSuffix: '-deleted',
|
|
}
|
|
}
|
|
|
|
function gcsStores() {
|
|
return {
|
|
user_files: process.env.GCS_USER_FILES_BUCKET_NAME,
|
|
template_files: process.env.GCS_TEMPLATE_FILES_BUCKET_NAME,
|
|
}
|
|
}
|
|
|
|
function fsStores() {
|
|
return {
|
|
user_files: Path.resolve(__dirname, '../../../user_files'),
|
|
template_files: Path.resolve(__dirname, '../../../template_files'),
|
|
}
|
|
}
|
|
|
|
function fallbackStores(primaryConfig, fallbackConfig) {
|
|
return {
|
|
[primaryConfig.user_files]: fallbackConfig.user_files,
|
|
[primaryConfig.template_files]: fallbackConfig.template_files,
|
|
}
|
|
}
|
|
|
|
module.exports = {
|
|
SHARD_01_FSPersistor: {
|
|
backend: 'fs',
|
|
stores: fsStores(),
|
|
},
|
|
SHARD_01_S3Persistor: {
|
|
backend: 's3',
|
|
s3: s3Config(),
|
|
stores: s3Stores(),
|
|
},
|
|
SHARD_01_S3PersistorDefaultProviderCredentials: {
|
|
backend: 's3',
|
|
s3: s3ConfigDefaultProviderCredentials(),
|
|
stores: s3Stores(),
|
|
},
|
|
SHARD_01_GcsPersistor: {
|
|
backend: 'gcs',
|
|
gcs: gcsConfig(),
|
|
stores: gcsStores(),
|
|
},
|
|
SHARD_02_FallbackS3ToFSPersistor: {
|
|
backend: 's3',
|
|
s3: s3Config(),
|
|
stores: s3Stores(),
|
|
fallback: {
|
|
backend: 'fs',
|
|
buckets: fallbackStores(s3Stores(), fsStores()),
|
|
},
|
|
},
|
|
SHARD_02_FallbackFSToS3Persistor: {
|
|
backend: 'fs',
|
|
s3: s3Config(),
|
|
stores: fsStores(),
|
|
fallback: {
|
|
backend: 's3',
|
|
buckets: fallbackStores(fsStores(), s3Stores()),
|
|
},
|
|
},
|
|
SHARD_03_FallbackGcsToS3Persistor: {
|
|
backend: 'gcs',
|
|
gcs: gcsConfig(),
|
|
stores: gcsStores(),
|
|
s3: s3Config(),
|
|
fallback: {
|
|
backend: 's3',
|
|
buckets: fallbackStores(gcsStores(), s3Stores()),
|
|
},
|
|
},
|
|
SHARD_03_FallbackS3ToGcsPersistor: {
|
|
backend: 's3',
|
|
// can use the same bucket names for gcs and s3 (in tests)
|
|
stores: s3Stores(),
|
|
s3: s3Config(),
|
|
gcs: gcsConfig(),
|
|
fallback: {
|
|
backend: 'gcs',
|
|
buckets: fallbackStores(s3Stores(), gcsStores()),
|
|
},
|
|
},
|
|
}
|
|
|
|
function checkForUnexpectedTestFile() {
|
|
const awareOfSharding = [
|
|
'FilestoreApp.js',
|
|
'FilestoreTests.js',
|
|
'TestConfig.js',
|
|
'TestHelper.js',
|
|
]
|
|
for (const file of fs.readdirSync(__dirname).sort()) {
|
|
if (!awareOfSharding.includes(file)) {
|
|
throw new Error(
|
|
`Found new test file ${file}: All tests must be aware of the SHARD_ prefix.`
|
|
)
|
|
}
|
|
}
|
|
}
|
|
checkForUnexpectedTestFile()
|