mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
done
This commit is contained in:
parent
a6403fcc81
commit
c490d4bc84
|
@ -40,6 +40,29 @@ export async function wordpressApiRequest(this: IExecuteFunctions | IExecuteSing
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export async function intercomApiRequestAllItems(this: IExecuteFunctions, propertyName: string, method: string, endpoint: string, body: any = {}, query: IDataObject = {}): Promise<any> { // tslint:disable-line:no-any
|
||||||
|
|
||||||
|
const returnData: IDataObject[] = [];
|
||||||
|
|
||||||
|
let responseData;
|
||||||
|
|
||||||
|
query.per_page = 10;
|
||||||
|
query.page = 1;
|
||||||
|
|
||||||
|
let uri: string | undefined;
|
||||||
|
|
||||||
|
do {
|
||||||
|
responseData = await wordpressApiRequest.call(this, method, endpoint, body, query, uri);
|
||||||
|
uri = responseData.pages.next;
|
||||||
|
} while (
|
||||||
|
responseData.pages !== undefined &&
|
||||||
|
responseData.pages.next !== undefined &&
|
||||||
|
responseData.pages.next !== null
|
||||||
|
);
|
||||||
|
|
||||||
|
return returnData;
|
||||||
|
}
|
||||||
|
|
||||||
export function validateJSON(json: string | undefined): any { // tslint:disable-line:no-any
|
export function validateJSON(json: string | undefined): any { // tslint:disable-line:no-any
|
||||||
let result;
|
let result;
|
||||||
try {
|
try {
|
||||||
|
|
|
@ -31,39 +31,22 @@ export const postFields = [
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
|
|
||||||
{
|
{
|
||||||
displayName: 'ID',
|
displayName: 'Title',
|
||||||
name: 'id',
|
name: 'title',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
required: true,
|
required: true,
|
||||||
default: '',
|
default: '',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource: [
|
||||||
'user',
|
'post',
|
||||||
],
|
],
|
||||||
operation: [
|
operation: [
|
||||||
'create',
|
'create',
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
description: 'The unique identifier of the customer',
|
description: 'The title for the post',
|
||||||
},
|
|
||||||
{
|
|
||||||
displayName: 'JSON Parameters',
|
|
||||||
name: 'jsonParameters',
|
|
||||||
type: 'boolean',
|
|
||||||
default: false,
|
|
||||||
description: '',
|
|
||||||
displayOptions: {
|
|
||||||
show: {
|
|
||||||
resource: [
|
|
||||||
'user',
|
|
||||||
],
|
|
||||||
operation: [
|
|
||||||
'create',
|
|
||||||
]
|
|
||||||
},
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Additional Fields',
|
displayName: 'Additional Fields',
|
||||||
|
@ -74,7 +57,7 @@ export const postFields = [
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
resource: [
|
resource: [
|
||||||
'user',
|
'post',
|
||||||
],
|
],
|
||||||
operation: [
|
operation: [
|
||||||
'create',
|
'create',
|
||||||
|
@ -83,84 +66,108 @@ export const postFields = [
|
||||||
},
|
},
|
||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
displayName: 'Email',
|
displayName: 'Content',
|
||||||
name: 'email',
|
name: 'content',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The table to create the row in.',
|
description: 'The content for the post',
|
||||||
},
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Data',
|
displayName: 'Slug',
|
||||||
name: 'dataAttributesUi',
|
name: 'slug',
|
||||||
placeholder: 'Add Data',
|
type: 'string',
|
||||||
description: 'key value pairs that represent the custom user properties you want to update',
|
default: '',
|
||||||
type: 'fixedCollection',
|
description: 'An alphanumeric identifier for the object unique to its type.',
|
||||||
typeOptions: {
|
|
||||||
multipleValues: true,
|
|
||||||
},
|
|
||||||
default: {},
|
|
||||||
displayOptions: {
|
|
||||||
show: {
|
|
||||||
resource: [
|
|
||||||
'user',
|
|
||||||
],
|
|
||||||
operation: [
|
|
||||||
'create',
|
|
||||||
],
|
|
||||||
jsonParameters: [
|
|
||||||
false,
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Password',
|
||||||
|
name: 'password',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
description: 'A password to protect access to the content and excerpt.',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Status',
|
||||||
|
name: 'status',
|
||||||
|
type: 'options',
|
||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
name: 'dataAttributesValues',
|
name: 'Publish',
|
||||||
displayName: 'Data',
|
value: 'publish'
|
||||||
values: [
|
|
||||||
{
|
|
||||||
displayName: 'Key',
|
|
||||||
name: 'key',
|
|
||||||
type: 'string',
|
|
||||||
default: '',
|
|
||||||
description: 'Name of the property to set.',
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Value',
|
name: 'Future',
|
||||||
name: 'value',
|
value: 'future'
|
||||||
type: 'string',
|
},
|
||||||
|
{
|
||||||
|
name: 'Draft',
|
||||||
|
value: 'draft'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Pending',
|
||||||
|
value: 'pending'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Private',
|
||||||
|
value: 'private'
|
||||||
|
},
|
||||||
|
],
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Value of the property to set.',
|
description: 'A named status for the post.',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Content Status',
|
||||||
|
name: 'contentStatus',
|
||||||
|
type: 'options',
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
name: 'Open',
|
||||||
|
value: 'open'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Close',
|
||||||
|
value: 'closed'
|
||||||
|
},
|
||||||
|
],
|
||||||
|
default: '',
|
||||||
|
description: 'Whether or not comments are open on the post.',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Ping Status',
|
||||||
|
name: 'pingStatus',
|
||||||
|
type: 'options',
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
name: 'Open',
|
||||||
|
value: 'open'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Close',
|
||||||
|
value: 'closed'
|
||||||
|
},
|
||||||
|
],
|
||||||
|
default: '',
|
||||||
|
description: 'Whether or not comments are open on the post.',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Sticky',
|
||||||
|
name: 'sticky',
|
||||||
|
type: 'boolean',
|
||||||
|
default: '',
|
||||||
|
description: 'Whether or not the object should be treated as sticky.',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Categories',
|
||||||
|
name: 'categories',
|
||||||
|
type: 'multiOptions',
|
||||||
|
typeOptions: {
|
||||||
|
loadOptionsMethod: 'getCategories',
|
||||||
|
},
|
||||||
|
default: [],
|
||||||
|
description: 'The terms assigned to the object in the category taxonomy.',
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
displayName: 'Data',
|
|
||||||
name: 'dataAttributesJson',
|
|
||||||
type: 'json',
|
|
||||||
default: '',
|
|
||||||
required: false,
|
|
||||||
typeOptions: {
|
|
||||||
alwaysOpenEditWindow: true,
|
|
||||||
},
|
|
||||||
description: 'key value pairs that represent the custom user properties you want to update',
|
|
||||||
displayOptions: {
|
|
||||||
show: {
|
|
||||||
resource: [
|
|
||||||
'user',
|
|
||||||
],
|
|
||||||
operation: [
|
|
||||||
'create',
|
|
||||||
],
|
|
||||||
jsonParameters: [
|
|
||||||
true,
|
|
||||||
],
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
/* user:alias */
|
/* user:alias */
|
||||||
|
|
|
@ -6,6 +6,8 @@ import {
|
||||||
INodeTypeDescription,
|
INodeTypeDescription,
|
||||||
INodeExecutionData,
|
INodeExecutionData,
|
||||||
INodeType,
|
INodeType,
|
||||||
|
ILoadOptionsFunctions,
|
||||||
|
INodePropertyOptions,
|
||||||
} from 'n8n-workflow';
|
} from 'n8n-workflow';
|
||||||
import {
|
import {
|
||||||
wordpressApiRequest,
|
wordpressApiRequest,
|
||||||
|
@ -56,6 +58,33 @@ export class Wordpress implements INodeType {
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
|
methods = {
|
||||||
|
loadOptions: {
|
||||||
|
// Get all the available categories to display them to user so that he can
|
||||||
|
// select them easily
|
||||||
|
async getCategories(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
|
||||||
|
const returnData: INodePropertyOptions[] = [];
|
||||||
|
let categories;
|
||||||
|
try {
|
||||||
|
categories = await wordpressApiRequest.call(this, 'GET', '/categories', {});
|
||||||
|
} catch (err) {
|
||||||
|
throw new Error(`Mandrill Error: ${err}`);
|
||||||
|
}
|
||||||
|
for (const category of categories) {
|
||||||
|
const categoryName = category.name;
|
||||||
|
const categoryId = category.id;
|
||||||
|
|
||||||
|
returnData.push({
|
||||||
|
name: categoryName,
|
||||||
|
value: categoryId,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
return returnData;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
||||||
const credentials = this.getCredentials('flowApi');
|
const credentials = this.getCredentials('flowApi');
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue