mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
fix(HTTP Request Node): Fix AWS credentials to automatically deconstruct the url (#5751)
Workaround to use decompose uri whe OptionsUri is being used
This commit is contained in:
parent
02810a9ba3
commit
d30b892395
|
@ -9,6 +9,7 @@ import type {
|
||||||
IHttpRequestOptions,
|
IHttpRequestOptions,
|
||||||
INodeProperties,
|
INodeProperties,
|
||||||
} from 'n8n-workflow';
|
} from 'n8n-workflow';
|
||||||
|
import type { OptionsWithUri } from 'request';
|
||||||
|
|
||||||
export const regions = [
|
export const regions = [
|
||||||
{
|
{
|
||||||
|
@ -285,6 +286,24 @@ export class Aws implements ICredentialType {
|
||||||
let body = requestOptions.body;
|
let body = requestOptions.body;
|
||||||
let region = credentials.region;
|
let region = credentials.region;
|
||||||
const query = requestOptions.qs?.query as IDataObject;
|
const query = requestOptions.qs?.query as IDataObject;
|
||||||
|
|
||||||
|
// ! Workaround as we still use the OptionsWithUri interface which uses uri instead of url
|
||||||
|
// ! To change when we replace the interface with IHttpRequestOptions
|
||||||
|
const requestWithUri = requestOptions as unknown as OptionsWithUri;
|
||||||
|
if (requestWithUri.uri) {
|
||||||
|
requestOptions.url = requestWithUri.uri as string;
|
||||||
|
endpoint = new URL(requestOptions.url);
|
||||||
|
if (service === 'sts') {
|
||||||
|
try {
|
||||||
|
endpoint.searchParams.set('Action', 'GetCallerIdentity');
|
||||||
|
endpoint.searchParams.set('Version', '2011-06-15');
|
||||||
|
} catch (err) {
|
||||||
|
console.log(err);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
service = endpoint.hostname.split('.')[0];
|
||||||
|
region = endpoint.hostname.split('.')[1];
|
||||||
|
} else {
|
||||||
if (!requestOptions.baseURL && !requestOptions.url) {
|
if (!requestOptions.baseURL && !requestOptions.url) {
|
||||||
let endpointString: string;
|
let endpointString: string;
|
||||||
if (service === 'lambda' && credentials.lambdaEndpoint) {
|
if (service === 'lambda' && credentials.lambdaEndpoint) {
|
||||||
|
@ -322,7 +341,7 @@ export class Aws implements ICredentialType {
|
||||||
}
|
}
|
||||||
endpoint = customUrl;
|
endpoint = customUrl;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
if (query && Object.keys(query).length !== 0) {
|
if (query && Object.keys(query).length !== 0) {
|
||||||
Object.keys(query).forEach((key) => {
|
Object.keys(query).forEach((key) => {
|
||||||
endpoint.searchParams.append(key, query[key] as string);
|
endpoint.searchParams.append(key, query[key] as string);
|
||||||
|
|
Loading…
Reference in a new issue