44 lines
1.1 KiB
TypeScript
44 lines
1.1 KiB
TypeScript
import { IGlobalVariable, IJSONObject } from '@automatisch/types';
|
|
import { URLSearchParams } from 'url';
|
|
import { omitBy, isEmpty } from 'lodash';
|
|
|
|
type GetUserFollowersOptions = {
|
|
userId: string;
|
|
};
|
|
|
|
const getUserFollowers = async (
|
|
$: IGlobalVariable,
|
|
options: GetUserFollowersOptions
|
|
) => {
|
|
let response;
|
|
|
|
do {
|
|
const params: IJSONObject = {
|
|
pagination_token: response?.data?.meta?.next_token,
|
|
};
|
|
|
|
const queryParams = new URLSearchParams(omitBy(params, isEmpty));
|
|
|
|
const requestPath = `/2/users/${options.userId}/followers${
|
|
queryParams.toString() ? `?${queryParams.toString()}` : ''
|
|
}`;
|
|
|
|
response = await $.http.get(requestPath);
|
|
|
|
if (response.data?.errors) {
|
|
throw new Error(response.data.errors);
|
|
}
|
|
|
|
if (response.data.meta.result_count > 0) {
|
|
for (const follower of response.data.data) {
|
|
$.pushTriggerItem({
|
|
raw: follower,
|
|
meta: { internalId: follower.id as string },
|
|
});
|
|
}
|
|
}
|
|
} while (response.data.meta.next_token);
|
|
};
|
|
|
|
export default getUserFollowers;
|