fix: 修复配额说明重复和undefined问题
- 在editStorageForm中初始化oss_storage_quota_value和oss_quota_unit - 删除重复的旧配额说明块,保留新的当前配额设置显示 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
112
backend/node_modules/@aws-sdk/signature-v4-multi-region/dist-es/SignatureV4MultiRegion.js
generated
vendored
Normal file
112
backend/node_modules/@aws-sdk/signature-v4-multi-region/dist-es/SignatureV4MultiRegion.js
generated
vendored
Normal file
@@ -0,0 +1,112 @@
|
||||
import { SignatureV4S3Express } from "@aws-sdk/middleware-sdk-s3";
|
||||
import { signatureV4aContainer, } from "@smithy/signature-v4";
|
||||
import { signatureV4CrtContainer } from "./signature-v4-crt-container";
|
||||
export class SignatureV4MultiRegion {
|
||||
sigv4aSigner;
|
||||
sigv4Signer;
|
||||
signerOptions;
|
||||
static sigv4aDependency() {
|
||||
if (typeof signatureV4CrtContainer.CrtSignerV4 === "function") {
|
||||
return "crt";
|
||||
}
|
||||
else if (typeof signatureV4aContainer.SignatureV4a === "function") {
|
||||
return "js";
|
||||
}
|
||||
return "none";
|
||||
}
|
||||
constructor(options) {
|
||||
this.sigv4Signer = new SignatureV4S3Express(options);
|
||||
this.signerOptions = options;
|
||||
}
|
||||
async sign(requestToSign, options = {}) {
|
||||
if (options.signingRegion === "*") {
|
||||
return this.getSigv4aSigner().sign(requestToSign, options);
|
||||
}
|
||||
return this.sigv4Signer.sign(requestToSign, options);
|
||||
}
|
||||
async signWithCredentials(requestToSign, credentials, options = {}) {
|
||||
if (options.signingRegion === "*") {
|
||||
const signer = this.getSigv4aSigner();
|
||||
const CrtSignerV4 = signatureV4CrtContainer.CrtSignerV4;
|
||||
if (CrtSignerV4 && signer instanceof CrtSignerV4) {
|
||||
return signer.signWithCredentials(requestToSign, credentials, options);
|
||||
}
|
||||
else {
|
||||
throw new Error(`signWithCredentials with signingRegion '*' is only supported when using the CRT dependency @aws-sdk/signature-v4-crt. ` +
|
||||
`Please check whether you have installed the "@aws-sdk/signature-v4-crt" package explicitly. ` +
|
||||
`You must also register the package by calling [require("@aws-sdk/signature-v4-crt");] ` +
|
||||
`or an ESM equivalent such as [import "@aws-sdk/signature-v4-crt";]. ` +
|
||||
`For more information please go to https://github.com/aws/aws-sdk-js-v3#functionality-requiring-aws-common-runtime-crt`);
|
||||
}
|
||||
}
|
||||
return this.sigv4Signer.signWithCredentials(requestToSign, credentials, options);
|
||||
}
|
||||
async presign(originalRequest, options = {}) {
|
||||
if (options.signingRegion === "*") {
|
||||
const signer = this.getSigv4aSigner();
|
||||
const CrtSignerV4 = signatureV4CrtContainer.CrtSignerV4;
|
||||
if (CrtSignerV4 && signer instanceof CrtSignerV4) {
|
||||
return signer.presign(originalRequest, options);
|
||||
}
|
||||
else {
|
||||
throw new Error(`presign with signingRegion '*' is only supported when using the CRT dependency @aws-sdk/signature-v4-crt. ` +
|
||||
`Please check whether you have installed the "@aws-sdk/signature-v4-crt" package explicitly. ` +
|
||||
`You must also register the package by calling [require("@aws-sdk/signature-v4-crt");] ` +
|
||||
`or an ESM equivalent such as [import "@aws-sdk/signature-v4-crt";]. ` +
|
||||
`For more information please go to https://github.com/aws/aws-sdk-js-v3#functionality-requiring-aws-common-runtime-crt`);
|
||||
}
|
||||
}
|
||||
return this.sigv4Signer.presign(originalRequest, options);
|
||||
}
|
||||
async presignWithCredentials(originalRequest, credentials, options = {}) {
|
||||
if (options.signingRegion === "*") {
|
||||
throw new Error("Method presignWithCredentials is not supported for [signingRegion=*].");
|
||||
}
|
||||
return this.sigv4Signer.presignWithCredentials(originalRequest, credentials, options);
|
||||
}
|
||||
getSigv4aSigner() {
|
||||
if (!this.sigv4aSigner) {
|
||||
const CrtSignerV4 = signatureV4CrtContainer.CrtSignerV4;
|
||||
const JsSigV4aSigner = signatureV4aContainer.SignatureV4a;
|
||||
if (this.signerOptions.runtime === "node") {
|
||||
if (!CrtSignerV4 && !JsSigV4aSigner) {
|
||||
throw new Error("Neither CRT nor JS SigV4a implementation is available. " +
|
||||
"Please load either @aws-sdk/signature-v4-crt or @aws-sdk/signature-v4a. " +
|
||||
"For more information please go to " +
|
||||
"https://github.com/aws/aws-sdk-js-v3#functionality-requiring-aws-common-runtime-crt");
|
||||
}
|
||||
if (CrtSignerV4 && typeof CrtSignerV4 === "function") {
|
||||
this.sigv4aSigner = new CrtSignerV4({
|
||||
...this.signerOptions,
|
||||
signingAlgorithm: 1,
|
||||
});
|
||||
}
|
||||
else if (JsSigV4aSigner && typeof JsSigV4aSigner === "function") {
|
||||
this.sigv4aSigner = new JsSigV4aSigner({
|
||||
...this.signerOptions,
|
||||
});
|
||||
}
|
||||
else {
|
||||
throw new Error("Available SigV4a implementation is not a valid constructor. " +
|
||||
"Please ensure you've properly imported @aws-sdk/signature-v4-crt or @aws-sdk/signature-v4a." +
|
||||
"For more information please go to " +
|
||||
"https://github.com/aws/aws-sdk-js-v3#functionality-requiring-aws-common-runtime-crt");
|
||||
}
|
||||
}
|
||||
else {
|
||||
if (!JsSigV4aSigner || typeof JsSigV4aSigner !== "function") {
|
||||
throw new Error("JS SigV4a implementation is not available or not a valid constructor. " +
|
||||
"Please check whether you have installed the @aws-sdk/signature-v4a package explicitly. The CRT implementation is not available for browsers. " +
|
||||
"You must also register the package by calling [require('@aws-sdk/signature-v4a');] " +
|
||||
"or an ESM equivalent such as [import '@aws-sdk/signature-v4a';]. " +
|
||||
"For more information please go to " +
|
||||
"https://github.com/aws/aws-sdk-js-v3#using-javascript-non-crt-implementation-of-sigv4a");
|
||||
}
|
||||
this.sigv4aSigner = new JsSigV4aSigner({
|
||||
...this.signerOptions,
|
||||
});
|
||||
}
|
||||
}
|
||||
return this.sigv4aSigner;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user