Backend half
This commit is contained in:
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
Generated
Vendored
+22
@@ -0,0 +1,22 @@
|
||||
import bowser from "bowser";
|
||||
export const createDefaultUserAgentProvider = ({ serviceId, clientVersion }) => async (config) => {
|
||||
const parsedUA = typeof window !== "undefined" && window?.navigator?.userAgent
|
||||
? bowser.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;
|
||||
};
|
||||
export const defaultUserAgent = createDefaultUserAgentProvider;
|
||||
Generated
Vendored
+18
@@ -0,0 +1,18 @@
|
||||
export const createDefaultUserAgentProvider = ({ serviceId, clientVersion }) => async (config) => {
|
||||
const sections = [
|
||||
["aws-sdk-js", clientVersion],
|
||||
["ua", "2.1"],
|
||||
["os/other"],
|
||||
["lang/js"],
|
||||
["md/rn"],
|
||||
];
|
||||
if (serviceId) {
|
||||
sections.push([`api/${serviceId}`, clientVersion]);
|
||||
}
|
||||
const appId = await config?.userAgentAppId?.();
|
||||
if (appId) {
|
||||
sections.push([`app/${appId}`]);
|
||||
}
|
||||
return sections;
|
||||
};
|
||||
export const defaultUserAgent = createDefaultUserAgentProvider;
|
||||
Reference in New Issue
Block a user