mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 00:54:06 -08:00
9853ecc5bc
Co-authored-by: Jonathan Bennetts <jonathan.bennetts@gmail.com> Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
135 lines
3.8 KiB
TypeScript
135 lines
3.8 KiB
TypeScript
import type {
|
|
IDataObject,
|
|
IExecuteFunctions,
|
|
IHookFunctions,
|
|
ILoadOptionsFunctions,
|
|
INodeParameterResourceLocator,
|
|
JsonObject,
|
|
IRequestOptions,
|
|
IHttpRequestMethods,
|
|
} from 'n8n-workflow';
|
|
import { ApplicationError, NodeApiError, NodeOperationError } from 'n8n-workflow';
|
|
|
|
export async function twitterApiRequest(
|
|
this: IExecuteFunctions | ILoadOptionsFunctions | IHookFunctions,
|
|
method: IHttpRequestMethods,
|
|
resource: string,
|
|
body: IDataObject = {},
|
|
qs: IDataObject = {},
|
|
fullOutput?: boolean,
|
|
uri?: string,
|
|
option: IDataObject = {},
|
|
) {
|
|
let options: IRequestOptions = {
|
|
method,
|
|
body,
|
|
qs,
|
|
url: uri || `https://api.twitter.com/2${resource}`,
|
|
json: true,
|
|
};
|
|
try {
|
|
if (Object.keys(option).length !== 0) {
|
|
options = Object.assign({}, options, option);
|
|
}
|
|
if (Object.keys(body).length === 0) {
|
|
delete options.body;
|
|
}
|
|
if (Object.keys(qs).length === 0) {
|
|
delete options.qs;
|
|
}
|
|
if (fullOutput) {
|
|
return await this.helpers.requestOAuth2.call(this, 'twitterOAuth2Api', options);
|
|
} else {
|
|
const { data } = await this.helpers.requestOAuth2.call(this, 'twitterOAuth2Api', options);
|
|
return data;
|
|
}
|
|
} catch (error) {
|
|
if (error.error?.required_enrollment === 'Appropriate Level of API Access') {
|
|
throw new NodeOperationError(
|
|
this.getNode(),
|
|
'The operation requires Twitter Api to be either Basic or Pro.',
|
|
);
|
|
} else if (error.errors && error.error?.errors[0].message.includes('must be ')) {
|
|
throw new NodeOperationError(this.getNode(), error.error.errors[0].message as string);
|
|
}
|
|
throw new NodeApiError(this.getNode(), error as JsonObject);
|
|
}
|
|
}
|
|
|
|
export async function twitterApiRequestAllItems(
|
|
this: IExecuteFunctions | ILoadOptionsFunctions,
|
|
propertyName: string,
|
|
method: IHttpRequestMethods,
|
|
endpoint: string,
|
|
body: IDataObject = {},
|
|
query: IDataObject = {},
|
|
) {
|
|
const returnData: IDataObject[] = [];
|
|
|
|
let responseData;
|
|
|
|
query.max_results = 10;
|
|
|
|
do {
|
|
responseData = await twitterApiRequest.call(this, method, endpoint, body, query, true);
|
|
query.next_token = responseData.meta.next_token as string;
|
|
returnData.push.apply(returnData, responseData[propertyName] as IDataObject[]);
|
|
} while (responseData.meta.next_token);
|
|
|
|
return returnData;
|
|
}
|
|
|
|
export function returnId(tweetId: INodeParameterResourceLocator) {
|
|
if (tweetId.mode === 'id') {
|
|
return tweetId.value as string;
|
|
} else if (tweetId.mode === 'url') {
|
|
try {
|
|
const url = new URL(tweetId.value as string);
|
|
if (!/(twitter|x).com$/.test(url.hostname)) {
|
|
throw new ApplicationError('Invalid domain');
|
|
}
|
|
const parts = url.pathname.split('/');
|
|
if (parts.length !== 4 || parts[2] !== 'status' || !/^\d+$/.test(parts[3])) {
|
|
throw new ApplicationError('Invalid path');
|
|
}
|
|
return parts[3];
|
|
} catch (error) {
|
|
throw new ApplicationError('Not a valid tweet url', { level: 'warning', cause: error });
|
|
}
|
|
} else {
|
|
throw new ApplicationError(`The mode ${tweetId.mode} is not valid!`, { level: 'warning' });
|
|
}
|
|
}
|
|
|
|
export async function returnIdFromUsername(
|
|
this: IExecuteFunctions,
|
|
usernameRlc: INodeParameterResourceLocator,
|
|
) {
|
|
usernameRlc.value = (usernameRlc.value as string).includes('@')
|
|
? (usernameRlc.value as string).replace('@', '')
|
|
: usernameRlc.value;
|
|
if (
|
|
usernameRlc.mode === 'username' ||
|
|
(usernameRlc.mode === 'name' && this.getNode().parameters.list !== undefined)
|
|
) {
|
|
const user = (await twitterApiRequest.call(
|
|
this,
|
|
'GET',
|
|
`/users/by/username/${usernameRlc.value}`,
|
|
{},
|
|
)) as { id: string };
|
|
return user.id;
|
|
} else if (this.getNode().parameters.list === undefined) {
|
|
const list = (await twitterApiRequest.call(
|
|
this,
|
|
'GET',
|
|
`/list/by/name/${usernameRlc.value}`,
|
|
{},
|
|
)) as { id: string };
|
|
return list.id;
|
|
} else
|
|
throw new ApplicationError(`The username mode ${usernameRlc.mode} is not valid!`, {
|
|
level: 'warning',
|
|
});
|
|
}
|