2019-07-28 03:49:02 +03:00
|
|
|
import * as S3 from 'aws-sdk/clients/s3';
|
|
|
|
import { Meta } from '../../models/entities/meta';
|
2020-04-12 14:32:34 +03:00
|
|
|
import { getAgentByUrl } from '../../misc/fetch';
|
2019-07-28 03:49:02 +03:00
|
|
|
|
|
|
|
export function getS3(meta: Meta) {
|
2020-04-12 14:32:34 +03:00
|
|
|
const u = meta.objectStorageEndpoint != null
|
|
|
|
? `${meta.objectStorageUseSSL ? 'https://' : 'http://'}${meta.objectStorageEndpoint}`
|
|
|
|
: `${meta.objectStorageUseSSL ? 'https://' : 'http://'}example.net`;
|
|
|
|
|
2020-04-09 17:42:23 +03:00
|
|
|
return new S3({
|
2020-03-14 04:33:19 +02:00
|
|
|
endpoint: meta.objectStorageEndpoint || undefined,
|
2020-04-09 17:42:23 +03:00
|
|
|
accessKeyId: meta.objectStorageAccessKey!,
|
|
|
|
secretAccessKey: meta.objectStorageSecretKey!,
|
2020-03-14 04:33:19 +02:00
|
|
|
region: meta.objectStorageRegion || undefined,
|
2019-07-28 03:49:02 +03:00
|
|
|
sslEnabled: meta.objectStorageUseSSL,
|
2020-03-14 04:33:19 +02:00
|
|
|
s3ForcePathStyle: !!meta.objectStorageEndpoint,
|
2019-07-28 03:49:02 +03:00
|
|
|
httpOptions: {
|
2020-04-12 14:32:34 +03:00
|
|
|
agent: getAgentByUrl(new URL(u), !meta.objectStorageUseProxy)
|
2019-07-28 03:49:02 +03:00
|
|
|
}
|
2020-04-09 17:42:23 +03:00
|
|
|
});
|
2019-07-28 03:49:02 +03:00
|
|
|
}
|