65 lines
2.3 KiB
JavaScript
65 lines
2.3 KiB
JavaScript
|
"use strict";
|
||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
exports.resolveHttpAuthSchemeConfig = exports.defaultSSOOIDCHttpAuthSchemeProvider = exports.defaultSSOOIDCHttpAuthSchemeParametersProvider = void 0;
|
||
|
const core_1 = require("@aws-sdk/core");
|
||
|
const util_middleware_1 = require("@smithy/util-middleware");
|
||
|
const defaultSSOOIDCHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
||
|
return {
|
||
|
operation: (0, util_middleware_1.getSmithyContext)(context).operation,
|
||
|
region: (await (0, util_middleware_1.normalizeProvider)(config.region)()) ||
|
||
|
(() => {
|
||
|
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
||
|
})(),
|
||
|
};
|
||
|
};
|
||
|
exports.defaultSSOOIDCHttpAuthSchemeParametersProvider = defaultSSOOIDCHttpAuthSchemeParametersProvider;
|
||
|
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",
|
||
|
};
|
||
|
}
|
||
|
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;
|
||
|
};
|
||
|
exports.defaultSSOOIDCHttpAuthSchemeProvider = defaultSSOOIDCHttpAuthSchemeProvider;
|
||
|
const resolveHttpAuthSchemeConfig = (config) => {
|
||
|
const config_0 = (0, core_1.resolveAwsSdkSigV4Config)(config);
|
||
|
return {
|
||
|
...config_0,
|
||
|
};
|
||
|
};
|
||
|
exports.resolveHttpAuthSchemeConfig = resolveHttpAuthSchemeConfig;
|