- 在editStorageForm中初始化oss_storage_quota_value和oss_quota_unit - 删除重复的旧配额说明块,保留新的当前配额设置显示 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
21 lines
873 B
JavaScript
21 lines
873 B
JavaScript
export const createUserAgentStringParsingProvider = ({ serviceId, clientVersion }) => async (config) => {
|
|
const module = await import("bowser");
|
|
const parse = module.parse ?? module.default.parse ?? (() => "");
|
|
const parsedUA = typeof window !== "undefined" && window?.navigator?.userAgent ? parse(window.navigator.userAgent) : undefined;
|
|
const sections = [
|
|
["aws-sdk-js", clientVersion],
|
|
["ua", "2.1"],
|
|
[`os/${parsedUA?.os?.name || "other"}`, parsedUA?.os?.version],
|
|
["lang/js"],
|
|
["md/browser", `${parsedUA?.browser?.name ?? "unknown"}_${parsedUA?.browser?.version ?? "unknown"}`],
|
|
];
|
|
if (serviceId) {
|
|
sections.push([`api/${serviceId}`, clientVersion]);
|
|
}
|
|
const appId = await config?.userAgentAppId?.();
|
|
if (appId) {
|
|
sections.push([`app/${appId}`]);
|
|
}
|
|
return sections;
|
|
};
|