2023-07-27 05:31:52 +00:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
import { URL } from 'node:url';
|
2023-03-23 04:48:14 +00:00
|
|
|
import * as http from 'node:http';
|
|
|
|
import * as https from 'node:https';
|
2023-08-05 01:33:00 +00:00
|
|
|
import { Injectable } from '@nestjs/common';
|
2023-03-23 04:48:14 +00:00
|
|
|
import { DeleteObjectCommand, S3Client } from '@aws-sdk/client-s3';
|
|
|
|
import { Upload } from '@aws-sdk/lib-storage';
|
2023-09-15 05:28:29 +00:00
|
|
|
import { NodeHttpHandler, NodeHttpHandlerOptions } from '@smithy/node-http-handler';
|
2023-09-20 02:33:36 +00:00
|
|
|
import type { MiMeta } from '@/models/Meta.js';
|
2022-12-04 01:16:03 +00:00
|
|
|
import { HttpRequestService } from '@/core/HttpRequestService.js';
|
2022-12-04 06:03:09 +00:00
|
|
|
import { bindThis } from '@/decorators.js';
|
2023-03-23 04:48:14 +00:00
|
|
|
import type { DeleteObjectCommandInput, PutObjectCommandInput } from '@aws-sdk/client-s3';
|
2022-09-17 18:27:08 +00:00
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class S3Service {
|
|
|
|
constructor(
|
|
|
|
private httpRequestService: HttpRequestService,
|
|
|
|
) {
|
|
|
|
}
|
|
|
|
|
2022-12-04 06:03:09 +00:00
|
|
|
@bindThis
|
2023-08-16 08:51:28 +00:00
|
|
|
public getS3Client(meta: MiMeta): S3Client {
|
2023-03-13 00:45:21 +00:00
|
|
|
const u = meta.objectStorageEndpoint
|
2023-03-23 04:48:14 +00:00
|
|
|
? `${meta.objectStorageUseSSL ? 'https' : 'http'}://${meta.objectStorageEndpoint}`
|
|
|
|
: `${meta.objectStorageUseSSL ? 'https' : 'http'}://example.net`; // dummy url to select http(s) agent
|
2023-03-13 00:45:21 +00:00
|
|
|
|
2023-03-23 04:48:14 +00:00
|
|
|
const agent = this.httpRequestService.getAgentByUrl(new URL(u), !meta.objectStorageUseProxy);
|
|
|
|
const handlerOption: NodeHttpHandlerOptions = {};
|
|
|
|
if (meta.objectStorageUseSSL) {
|
|
|
|
handlerOption.httpsAgent = agent as https.Agent;
|
|
|
|
} else {
|
|
|
|
handlerOption.httpAgent = agent as http.Agent;
|
|
|
|
}
|
|
|
|
|
|
|
|
return new S3Client({
|
|
|
|
endpoint: meta.objectStorageEndpoint ? u : undefined,
|
|
|
|
credentials: (meta.objectStorageAccessKey !== null && meta.objectStorageSecretKey !== null) ? {
|
|
|
|
accessKeyId: meta.objectStorageAccessKey,
|
|
|
|
secretAccessKey: meta.objectStorageSecretKey,
|
|
|
|
} : undefined,
|
2023-03-25 09:45:14 +00:00
|
|
|
region: meta.objectStorageRegion ? meta.objectStorageRegion : undefined, // 空文字列もundefinedにするため ?? は使わない
|
2023-03-23 04:48:14 +00:00
|
|
|
tls: meta.objectStorageUseSSL,
|
|
|
|
forcePathStyle: meta.objectStorageEndpoint ? meta.objectStorageS3ForcePathStyle : false, // AWS with endPoint omitted
|
|
|
|
requestHandler: new NodeHttpHandler(handlerOption),
|
2022-09-17 18:27:08 +00:00
|
|
|
});
|
|
|
|
}
|
2023-03-23 04:48:14 +00:00
|
|
|
|
|
|
|
@bindThis
|
2023-08-16 08:51:28 +00:00
|
|
|
public async upload(meta: MiMeta, input: PutObjectCommandInput) {
|
2023-03-23 04:48:14 +00:00
|
|
|
const client = this.getS3Client(meta);
|
|
|
|
return new Upload({
|
|
|
|
client,
|
|
|
|
params: input,
|
|
|
|
partSize: (client.config.endpoint && (await client.config.endpoint()).hostname === 'storage.googleapis.com')
|
|
|
|
? 500 * 1024 * 1024
|
|
|
|
: 8 * 1024 * 1024,
|
|
|
|
}).done();
|
|
|
|
}
|
|
|
|
|
|
|
|
@bindThis
|
2023-08-16 08:51:28 +00:00
|
|
|
public delete(meta: MiMeta, input: DeleteObjectCommandInput) {
|
2023-03-23 04:48:14 +00:00
|
|
|
const client = this.getS3Client(meta);
|
|
|
|
return client.send(new DeleteObjectCommand(input));
|
|
|
|
}
|
2022-09-17 18:27:08 +00:00
|
|
|
}
|