59 lines
1.8 KiB
JavaScript
59 lines
1.8 KiB
JavaScript
|
import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core";
|
||
|
import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware";
|
||
|
export const defaultSSOOIDCHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
||
|
return {
|
||
|
operation: getSmithyContext(context).operation,
|
||
|
region: (await normalizeProvider(config.region)()) ||
|
||
|
(() => {
|
||
|
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
||
|
})(),
|
||
|
};
|
||
|
};
|
||
|
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
||
|
return {
|
||
|
schemeId: "aws.auth#sigv4",
|
||
|
signingProperties: {
|
||
|
name: "sso-oauth",
|
||
|
region: authParameters.region,
|
||
|
},
|
||
|
propertiesExtractor: (config, context) => ({
|
||
|
signingProperties: {
|
||
|
config,
|
||
|
context,
|
||
|
},
|
||
|
}),
|
||
|
};
|
||
|
}
|
||
|
function createSmithyApiNoAuthHttpAuthOption(authParameters) {
|
||
|
return {
|
||
|
schemeId: "smithy.api#noAuth",
|
||
|
};
|
||
|
}
|
||
|
export const defaultSSOOIDCHttpAuthSchemeProvider = (authParameters) => {
|
||
|
const options = [];
|
||
|
switch (authParameters.operation) {
|
||
|
case "CreateToken": {
|
||
|
options.push(createSmithyApiNoAuthHttpAuthOption(authParameters));
|
||
|
break;
|
||
|
}
|
||
|
case "RegisterClient": {
|
||
|
options.push(createSmithyApiNoAuthHttpAuthOption(authParameters));
|
||
|
break;
|
||
|
}
|
||
|
case "StartDeviceAuthorization": {
|
||
|
options.push(createSmithyApiNoAuthHttpAuthOption(authParameters));
|
||
|
break;
|
||
|
}
|
||
|
default: {
|
||
|
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
||
|
}
|
||
|
}
|
||
|
return options;
|
||
|
};
|
||
|
export const resolveHttpAuthSchemeConfig = (config) => {
|
||
|
const config_0 = resolveAwsSdkSigV4Config(config);
|
||
|
return {
|
||
|
...config_0,
|
||
|
};
|
||
|
};
|