Skip to content

Commit

Permalink
✨ Add Discourse Node (#1348)
Browse files Browse the repository at this point in the history
* ✨ Discourse Node

* ⚡ Add missing credential file

* ⚡ Improvements

* ⚡ Improvements

* ⚡ Minor improvements on Discourse Node

Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
  • Loading branch information
RicardoE105 and janober authored Jan 28, 2021
1 parent d0b896d commit 48362f5
Show file tree
Hide file tree
Showing 11 changed files with 1,732 additions and 0 deletions.
33 changes: 33 additions & 0 deletions packages/nodes-base/credentials/DiscourseApi.credentials.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';

export class DiscourseApi implements ICredentialType {
name = 'discourseApi';
displayName = 'Discourse API';
documentationUrl = 'discourse';
properties = [
{
displayName: 'URL',
name: 'url',
required: true,
type: 'string' as NodePropertyTypes,
default: '',
},
{
displayName: 'API Key',
name: 'apiKey',
required: true,
type: 'string' as NodePropertyTypes,
default: '',
},
{
displayName: 'Username',
name: 'username',
required: true,
type: 'string' as NodePropertyTypes,
default: '',
},
];
}
216 changes: 216 additions & 0 deletions packages/nodes-base/nodes/Discourse/CategoryDescription.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,216 @@
import {
INodeProperties,
} from 'n8n-workflow';

export const categoryOperations = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
description: 'Choose an operation',
required: true,
displayOptions: {
show: {
resource: [
'category',
],
},
},
options: [
{
name: 'Create',
value: 'create',
description: 'Create a category',
},
{
name: 'Get All',
value: 'getAll',
description: 'Get all categories',
},
{
name: 'Update',
value: 'update',
description: 'Update a category',
},
],
default: 'create',
},
] as INodeProperties[];

export const categoryFields: INodeProperties[] = [
/* -------------------------------------------------------------------------- */
/* category:create */
/* -------------------------------------------------------------------------- */
{
displayName: 'Name',
name: 'name',
type: 'string',
required: true,
displayOptions: {
show: {
resource: [
'category',
],
operation: [
'create',
],
},
},
default: '',
description: 'Name of the category.',
},
{
displayName: 'Color',
name: 'color',
type: 'color',
required: true,
displayOptions: {
show: {
resource: [
'category',
],
operation: [
'create',
],
},
},
default: '0000FF',
description: 'Color of the category.',
},
{
displayName: 'Text Color',
name: 'textColor',
type: 'color',
required: true,
displayOptions: {
show: {
resource: [
'category',
],
operation: [
'create',
],
},
},
default: '0000FF',
description: 'Text color of the category.',
},

/* -------------------------------------------------------------------------- */
/* category:getAll */
/* -------------------------------------------------------------------------- */
{
displayName: 'Return All',
name: 'returnAll',
type: 'boolean',
displayOptions: {
show: {
resource: [
'category',
],
operation: [
'getAll',
],
},
},
default: false,
description: 'If all results should be returned or only up to a given limit.',
},
{
displayName: 'Limit',
name: 'limit',
type: 'number',
displayOptions: {
show: {
resource: [
'category',
],
operation: [
'getAll',
],
returnAll: [
false,
],
},
},
typeOptions: {
minValue: 1,
maxValue: 100,
},
default: 50,
description: 'How many results to return.',
},

/* -------------------------------------------------------------------------- */
/* category:update */
/* -------------------------------------------------------------------------- */
{
displayName: 'Category ID',
name: 'categoryId',
type: 'string',
required: true,
displayOptions: {
show: {
resource: [
'category',
],
operation: [
'update',
],
},
},
default: '',
description: 'ID of the category.',
},
{
displayName: 'Name',
name: 'name',
type: 'string',
required: true,
displayOptions: {
show: {
resource: [
'category',
],
operation: [
'update',
],
},
},
default: '',
description: 'New name of the category.',
},
{
displayName: 'Update Fields',
name: 'updateFields',
type: 'collection',
placeholder: 'Add Field',
default: {},
displayOptions: {
show: {
resource: [
'category',
],
operation: [
'update',
],
},
},
options: [
{
displayName: 'Color',
name: 'color',
type: 'color',
default: '0000FF',
description: 'Color of the category',
},
{
displayName: 'Text Color',
name: 'textColor',
type: 'color',
default: '0000FF',
description: 'Text color of the category',
},
],
},
];
Loading

0 comments on commit 48362f5

Please sign in to comment.