mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
1d27a9e87e
* Add path mapping and response error interfaces * Add error handling and throwing functionality * Refactor error handling into a single function * Re-implement error handling in Hacker News node * Fix linting details * Re-implement error handling in Spotify node * Re-implement error handling in G Suite Admin node * 🚧 create basic setup NodeError * 🚧 add httpCodes * 🚧 add path priolist * 🚧 handle statusCode in error, adjust interfaces * 🚧 fixing type issues w/Ivan * 🚧 add error exploration * 👔 fix linter issues * 🔧 improve object check * 🚧 remove path passing from NodeApiError * 🚧 add multi error + refactor findProperty method * 👔 allow any * 🔧 handle multi error message callback * ⚡ change return type of callback * ⚡ add customCallback to MultiError * 🚧 refactor to use INode * 🔨 handle arrays, continue search after first null property found * 🚫 refactor method access * 🚧 setup NodeErrorView * ⚡ change timestamp to Date.now * 📚 Add documentation for methods and constants * 🚧 change message setting * 🚚 move NodeErrors to workflow * ✨ add new ErrorView for Nodes * 🎨 improve error notification * 🎨 refactor interfaces * ⚡ add WorkflowOperationError, refactor error throwing * 👕 fix linter issues * 🎨 rename param * 🐛 fix handling normal errors * ⚡ add usage of NodeApiError * 🎨 fix throw new error instead of constructor * 🎨 remove unnecessary code/comments * 🎨 adjusted spacing + updated status messages * 🎨 fix tab indentation * ✨ Replace current errors with custom errors (#1576) * ⚡ Introduce NodeApiError in catch blocks * ⚡ Introduce NodeOperationError in nodes * ⚡ Add missing errors and remove incompatible * ⚡ Fix NodeOperationError in incompatible nodes * 🔧 Adjust error handling in missed nodes PayPal, FileMaker, Reddit, Taiga and Facebook Graph API nodes * 🔨 Adjust Strava Trigger node error handling * 🔨 Adjust AWS nodes error handling * 🔨 Remove duplicate instantiation of NodeApiError * 🐛 fix strava trigger node error handling * Add XML parsing to NodeApiError constructor (#1633) * 🐛 Remove type annotation from catch variable * ✨ Add XML parsing to NodeApiError * ⚡ Simplify error handling in Rekognition node * ⚡ Pass in XML flag in generic functions * 🔥 Remove try/catch wrappers at call sites * 🔨 Refactor setting description from XML * 🔨 Refactor let to const in resource loaders * ⚡ Find property in parsed XML * ⚡ Change let to const * 🔥 Remove unneeded try/catch block * 👕 Fix linting issues * 🐛 Fix errors from merge conflict resolution * ⚡ Add custom errors to latest contributions * 👕 Fix linting issues * ⚡ Refactor MongoDB helpers for custom errors * 🐛 Correct custom error type * ⚡ Apply feedback to A nodes * ⚡ Apply feedback to missed A node * ⚡ Apply feedback to B-D nodes * ⚡ Apply feedback to E-F nodes * ⚡ Apply feedback to G nodes * ⚡ Apply feedback to H-L nodes * ⚡ Apply feedback to M nodes * ⚡ Apply feedback to P nodes * ⚡ Apply feedback to R nodes * ⚡ Apply feedback to S nodes * ⚡ Apply feedback to T nodes * ⚡ Apply feedback to V-Z nodes * ⚡ Add HTTP code to iterable node error * 🔨 Standardize e as error * 🔨 Standardize err as error * ⚡ Fix error handling for non-standard nodes Co-authored-by: Ben Hesseldieck <b.hesseldieck@gmail.com> Co-authored-by: Ben Hesseldieck <b.hesseldieck@gmail.com> Co-authored-by: Ben Hesseldieck <1849459+BHesseldieck@users.noreply.github.com>
479 lines
13 KiB
TypeScript
479 lines
13 KiB
TypeScript
import {
|
|
IExecuteFunctions,
|
|
} from 'n8n-core';
|
|
|
|
import {
|
|
IDataObject,
|
|
INodeExecutionData,
|
|
INodeType,
|
|
INodeTypeDescription,
|
|
NodeApiError,
|
|
} from 'n8n-workflow';
|
|
|
|
import {
|
|
handleListing,
|
|
redditApiRequest,
|
|
} from './GenericFunctions';
|
|
|
|
import {
|
|
postCommentFields,
|
|
postCommentOperations,
|
|
} from './PostCommentDescription';
|
|
|
|
import {
|
|
postFields,
|
|
postOperations,
|
|
} from './PostDescription';
|
|
|
|
import {
|
|
profileFields,
|
|
profileOperations,
|
|
} from './ProfileDescription';
|
|
|
|
import {
|
|
subredditFields,
|
|
subredditOperations,
|
|
} from './SubredditDescription';
|
|
|
|
import {
|
|
userFields,
|
|
userOperations,
|
|
} from './UserDescription';
|
|
|
|
export class Reddit implements INodeType {
|
|
description: INodeTypeDescription = {
|
|
displayName: 'Reddit',
|
|
name: 'reddit',
|
|
icon: 'file:reddit.svg',
|
|
group: ['transform'],
|
|
version: 1,
|
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
|
description: 'Consume the Reddit API',
|
|
defaults: {
|
|
name: 'Reddit',
|
|
color: '#ff5700',
|
|
},
|
|
inputs: ['main'],
|
|
outputs: ['main'],
|
|
credentials: [
|
|
{
|
|
name: 'redditOAuth2Api',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'postComment',
|
|
'post',
|
|
'profile',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
],
|
|
properties: [
|
|
{
|
|
displayName: 'Resource',
|
|
name: 'resource',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Post',
|
|
value: 'post',
|
|
},
|
|
{
|
|
name: 'Post Comment',
|
|
value: 'postComment',
|
|
},
|
|
{
|
|
name: 'Profile',
|
|
value: 'profile',
|
|
},
|
|
{
|
|
name: 'Subreddit',
|
|
value: 'subreddit',
|
|
},
|
|
{
|
|
name: 'User',
|
|
value: 'user',
|
|
},
|
|
],
|
|
default: 'post',
|
|
description: 'Resource to consume',
|
|
},
|
|
...postCommentOperations,
|
|
...postCommentFields,
|
|
...profileOperations,
|
|
...profileFields,
|
|
...subredditOperations,
|
|
...subredditFields,
|
|
...postOperations,
|
|
...postFields,
|
|
...userOperations,
|
|
...userFields,
|
|
],
|
|
};
|
|
|
|
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
|
const items = this.getInputData();
|
|
|
|
const resource = this.getNodeParameter('resource', 0) as string;
|
|
const operation = this.getNodeParameter('operation', 0) as string;
|
|
|
|
let responseData;
|
|
const returnData: IDataObject[] = [];
|
|
|
|
for (let i = 0; i < items.length; i++) {
|
|
|
|
// *********************************************************************
|
|
// post
|
|
// *********************************************************************
|
|
|
|
if (resource === 'post') {
|
|
|
|
if (operation === 'create') {
|
|
|
|
// ----------------------------------
|
|
// post: create
|
|
// ----------------------------------
|
|
|
|
// https://www.reddit.com/dev/api/#POST_api_submit
|
|
|
|
const qs: IDataObject = {
|
|
title: this.getNodeParameter('title', i),
|
|
sr: this.getNodeParameter('subreddit', i),
|
|
kind: this.getNodeParameter('kind', i),
|
|
};
|
|
|
|
qs.kind === 'self'
|
|
? qs.text = this.getNodeParameter('text', i)
|
|
: qs.url = this.getNodeParameter('url', i);
|
|
|
|
if (qs.url) {
|
|
qs.resubmit = this.getNodeParameter('resubmit', i);
|
|
}
|
|
|
|
responseData = await redditApiRequest.call(this, 'POST', 'api/submit', qs);
|
|
|
|
responseData = responseData.json.data;
|
|
|
|
} else if (operation === 'delete') {
|
|
|
|
// ----------------------------------
|
|
// post: delete
|
|
// ----------------------------------
|
|
|
|
// https://www.reddit.com/dev/api/#POST_api_del
|
|
|
|
const postTypePrefix = 't3_';
|
|
|
|
const qs: IDataObject = {
|
|
id: postTypePrefix + this.getNodeParameter('postId', i),
|
|
};
|
|
|
|
await redditApiRequest.call(this, 'POST', 'api/del', qs);
|
|
|
|
responseData = { success: true };
|
|
|
|
} else if (operation === 'get') {
|
|
|
|
// ----------------------------------
|
|
// post: get
|
|
// ----------------------------------
|
|
|
|
const subreddit = this.getNodeParameter('subreddit', i);
|
|
const postId = this.getNodeParameter('postId', i) as string;
|
|
const endpoint = `r/${subreddit}/comments/${postId}.json`;
|
|
|
|
responseData = await redditApiRequest.call(this, 'GET', endpoint, {});
|
|
responseData = responseData[0].data.children[0].data;
|
|
|
|
} else if (operation === 'getAll') {
|
|
|
|
// ----------------------------------
|
|
// post: getAll
|
|
// ----------------------------------
|
|
|
|
// https://www.reddit.com/dev/api/#GET_hot
|
|
// https://www.reddit.com/dev/api/#GET_new
|
|
// https://www.reddit.com/dev/api/#GET_rising
|
|
// https://www.reddit.com/dev/api/#GET_{sort}
|
|
|
|
const subreddit = this.getNodeParameter('subreddit', i);
|
|
let endpoint = `r/${subreddit}.json`;
|
|
|
|
const { category } = this.getNodeParameter('filters', i) as { category: string };
|
|
if (category) {
|
|
endpoint = `r/${subreddit}/${category}.json`;
|
|
}
|
|
|
|
responseData = await handleListing.call(this, i, endpoint);
|
|
|
|
} else if (operation === 'search') {
|
|
|
|
// ----------------------------------
|
|
// post: search
|
|
// ----------------------------------
|
|
|
|
// https://www.reddit.com/dev/api/#GET_search
|
|
|
|
const location = this.getNodeParameter('location', i);
|
|
|
|
const qs = {
|
|
q: this.getNodeParameter('keyword', i),
|
|
restrict_sr: location === 'subreddit',
|
|
} as IDataObject;
|
|
|
|
const { sort } = this.getNodeParameter('additionalFields', i) as IDataObject;
|
|
|
|
if (sort) {
|
|
qs.sort = sort;
|
|
}
|
|
|
|
let endpoint = '';
|
|
|
|
if (location === 'allReddit') {
|
|
endpoint = 'search.json';
|
|
} else {
|
|
const subreddit = this.getNodeParameter('subreddit', i);
|
|
endpoint = `r/${subreddit}/search.json`;
|
|
}
|
|
|
|
responseData = await handleListing.call(this, i, endpoint, qs);
|
|
|
|
const returnAll = this.getNodeParameter('returnAll', 0) as boolean;
|
|
|
|
if (!returnAll) {
|
|
const limit = this.getNodeParameter('limit', 0) as number;
|
|
responseData = responseData.splice(0, limit);
|
|
}
|
|
|
|
}
|
|
|
|
} else if (resource === 'postComment') {
|
|
|
|
// *********************************************************************
|
|
// postComment
|
|
// *********************************************************************
|
|
|
|
if (operation === 'create') {
|
|
|
|
// ----------------------------------
|
|
// postComment: create
|
|
// ----------------------------------
|
|
|
|
// https://www.reddit.com/dev/api/#POST_api_comment
|
|
|
|
const postTypePrefix = 't3_';
|
|
|
|
const qs: IDataObject = {
|
|
text: this.getNodeParameter('commentText', i),
|
|
thing_id: postTypePrefix + this.getNodeParameter('postId', i),
|
|
};
|
|
|
|
responseData = await redditApiRequest.call(this, 'POST', 'api/comment', qs);
|
|
responseData = responseData.json.data.things[0].data;
|
|
|
|
} else if (operation === 'getAll') {
|
|
|
|
// ----------------------------------
|
|
// postComment: getAll
|
|
// ----------------------------------
|
|
|
|
// https://www.reddit.com/r/{subrreddit}/comments/{postId}.json
|
|
|
|
const subreddit = this.getNodeParameter('subreddit', i);
|
|
const postId = this.getNodeParameter('postId', i) as string;
|
|
const endpoint = `r/${subreddit}/comments/${postId}.json`;
|
|
|
|
responseData = await handleListing.call(this, i, endpoint);
|
|
|
|
} else if (operation === 'delete') {
|
|
|
|
// ----------------------------------
|
|
// postComment: delete
|
|
// ----------------------------------
|
|
|
|
// https://www.reddit.com/dev/api/#POST_api_del
|
|
|
|
const commentTypePrefix = 't1_';
|
|
|
|
const qs: IDataObject = {
|
|
id: commentTypePrefix + this.getNodeParameter('commentId', i),
|
|
};
|
|
|
|
await redditApiRequest.call(this, 'POST', 'api/del', qs);
|
|
|
|
responseData = { success: true };
|
|
|
|
} else if (operation === 'reply') {
|
|
|
|
// ----------------------------------
|
|
// postComment: reply
|
|
// ----------------------------------
|
|
|
|
// https://www.reddit.com/dev/api/#POST_api_comment
|
|
|
|
const commentTypePrefix = 't1_';
|
|
|
|
const qs: IDataObject = {
|
|
text: this.getNodeParameter('replyText', i),
|
|
thing_id: commentTypePrefix + this.getNodeParameter('commentId', i),
|
|
};
|
|
|
|
responseData = await redditApiRequest.call(this, 'POST', 'api/comment', qs);
|
|
responseData = responseData.json.data.things[0].data;
|
|
}
|
|
|
|
} else if (resource === 'profile') {
|
|
|
|
// *********************************************************************
|
|
// profile
|
|
// *********************************************************************
|
|
|
|
if (operation === 'get') {
|
|
|
|
// ----------------------------------
|
|
// profile: get
|
|
// ----------------------------------
|
|
|
|
// https://www.reddit.com/dev/api/#GET_api_v1_me
|
|
// https://www.reddit.com/dev/api/#GET_api_v1_me_karma
|
|
// https://www.reddit.com/dev/api/#GET_api_v1_me_prefs
|
|
// https://www.reddit.com/dev/api/#GET_api_v1_me_trophies
|
|
// https://www.reddit.com/dev/api/#GET_prefs_{where}
|
|
|
|
const endpoints: { [key: string]: string } = {
|
|
identity: 'me',
|
|
blockedUsers: 'me/blocked',
|
|
friends: 'me/friends',
|
|
karma: 'me/karma',
|
|
prefs: 'me/prefs',
|
|
trophies: 'me/trophies',
|
|
};
|
|
|
|
const details = this.getNodeParameter('details', i) as string;
|
|
const endpoint = `api/v1/${endpoints[details]}`;
|
|
responseData = await redditApiRequest.call(this, 'GET', endpoint, {});
|
|
|
|
if (details === 'identity') {
|
|
responseData = responseData.features;
|
|
} else if (details === 'friends') {
|
|
responseData = responseData.data.children;
|
|
if (!responseData.length) {
|
|
throw new NodeApiError(this.getNode(), responseData);
|
|
}
|
|
} else if (details === 'karma') {
|
|
responseData = responseData.data;
|
|
if (!responseData.length) {
|
|
throw new NodeApiError(this.getNode(), responseData);
|
|
}
|
|
} else if (details === 'trophies') {
|
|
responseData = responseData.data.trophies.map((trophy: IDataObject) => trophy.data);
|
|
}
|
|
}
|
|
|
|
} else if (resource === 'subreddit') {
|
|
|
|
// *********************************************************************
|
|
// subreddit
|
|
// *********************************************************************
|
|
|
|
if (operation === 'get') {
|
|
|
|
// ----------------------------------
|
|
// subreddit: get
|
|
// ----------------------------------
|
|
|
|
// https://www.reddit.com/dev/api/#GET_r_{subreddit}_about
|
|
// https://www.reddit.com/dev/api/#GET_r_{subreddit}_about_rules
|
|
|
|
const subreddit = this.getNodeParameter('subreddit', i);
|
|
const content = this.getNodeParameter('content', i) as string;
|
|
const endpoint = `r/${subreddit}/about/${content}.json`;
|
|
|
|
responseData = await redditApiRequest.call(this, 'GET', endpoint, {});
|
|
|
|
if (content === 'rules') {
|
|
responseData = responseData.rules;
|
|
} else if (content === 'about') {
|
|
responseData = responseData.data;
|
|
}
|
|
|
|
} else if (operation === 'getAll') {
|
|
|
|
// ----------------------------------
|
|
// subreddit: getAll
|
|
// ----------------------------------
|
|
|
|
// https://www.reddit.com/dev/api/#GET_api_trending_subreddits
|
|
// https://www.reddit.com/dev/api/#POST_api_search_subreddits
|
|
// https://www.reddit.com/r/subreddits.json
|
|
|
|
const filters = this.getNodeParameter('filters', i) as IDataObject;
|
|
|
|
if (filters.trending) {
|
|
const returnAll = this.getNodeParameter('returnAll', 0) as boolean;
|
|
const endpoint = 'api/trending_subreddits.json';
|
|
responseData = await redditApiRequest.call(this, 'GET', endpoint, {});
|
|
responseData = responseData.subreddit_names.map((name: string) => ({ name }));
|
|
if (returnAll === false) {
|
|
const limit = this.getNodeParameter('limit', 0) as number;
|
|
responseData = responseData.splice(0, limit);
|
|
}
|
|
|
|
} else if (filters.keyword) {
|
|
const qs: IDataObject = {};
|
|
qs.query = filters.keyword;
|
|
|
|
const endpoint = 'api/search_subreddits.json';
|
|
responseData = await redditApiRequest.call(this, 'POST', endpoint, qs);
|
|
|
|
const returnAll = this.getNodeParameter('returnAll', 0) as boolean;
|
|
|
|
if (returnAll === false) {
|
|
const limit = this.getNodeParameter('limit', 0) as number;
|
|
responseData = responseData.subreddits.splice(0, limit);
|
|
}
|
|
} else {
|
|
const endpoint = 'r/subreddits.json';
|
|
responseData = await handleListing.call(this, i, endpoint);
|
|
}
|
|
}
|
|
|
|
} else if (resource === 'user') {
|
|
|
|
// *********************************************************************
|
|
// user
|
|
// *********************************************************************
|
|
|
|
if (operation === 'get') {
|
|
|
|
// ----------------------------------
|
|
// user: get
|
|
// ----------------------------------
|
|
|
|
// https://www.reddit.com/dev/api/#GET_user_{username}_{where}
|
|
|
|
const username = this.getNodeParameter('username', i) as string;
|
|
const details = this.getNodeParameter('details', i) as string;
|
|
const endpoint = `user/${username}/${details}.json`;
|
|
|
|
responseData = details === 'about'
|
|
? await redditApiRequest.call(this, 'GET', endpoint, {})
|
|
: await handleListing.call(this, i, endpoint);
|
|
|
|
if (details === 'about') {
|
|
responseData = responseData.data;
|
|
}
|
|
}
|
|
}
|
|
|
|
Array.isArray(responseData)
|
|
? returnData.push(...responseData)
|
|
: returnData.push(responseData);
|
|
}
|
|
|
|
return [this.helpers.returnJsonArray(returnData)];
|
|
}
|
|
}
|