45 lines
1.2 KiB
TypeScript
45 lines
1.2 KiB
TypeScript
import { IGlobalVariable, IJSONObject } from '@automatisch/types';
|
|
import qs from 'qs';
|
|
import { omitBy, isEmpty } from 'lodash';
|
|
|
|
const searchTweets = async ($: IGlobalVariable) => {
|
|
const searchTerm = $.step.parameters.searchTerm as string;
|
|
|
|
let response;
|
|
|
|
do {
|
|
const params: IJSONObject = {
|
|
query: searchTerm,
|
|
since_id: $.execution.testRun ? null : $.flow.lastInternalId,
|
|
pagination_token: response?.data?.meta?.next_token,
|
|
};
|
|
|
|
const queryParams = qs.stringify(omitBy(params, isEmpty));
|
|
|
|
const requestPath = `/2/tweets/search/recent${
|
|
queryParams.toString() ? `?${queryParams.toString()}` : ''
|
|
}`;
|
|
|
|
response = await $.http.get(requestPath);
|
|
|
|
if (response.data.errors) {
|
|
throw new Error(JSON.stringify(response.data.errors));
|
|
}
|
|
|
|
if (response.data.meta.result_count > 0) {
|
|
response.data.data.forEach((tweet: IJSONObject) => {
|
|
const dataItem = {
|
|
raw: tweet,
|
|
meta: {
|
|
internalId: tweet.id as string,
|
|
},
|
|
};
|
|
|
|
$.output.data.push(dataItem);
|
|
});
|
|
}
|
|
} while (response.data.meta.next_token && !$.execution.testRun);
|
|
};
|
|
|
|
export default searchTweets;
|