mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
827 lines
16 KiB
TypeScript
827 lines
16 KiB
TypeScript
import { INodeProperties } from 'n8n-workflow';
|
|
|
|
export const postOperations: INodeProperties[] = [
|
|
{
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
type: 'options',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'post',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
name: 'Create',
|
|
value: 'create',
|
|
description: 'Create a post',
|
|
},
|
|
// {
|
|
// name: 'Delete',
|
|
// value: 'delete',
|
|
// description: 'Delete a post',
|
|
// },
|
|
{
|
|
name: 'Get',
|
|
value: 'get',
|
|
description: 'Get a post',
|
|
},
|
|
{
|
|
name: 'Get All',
|
|
value: 'getAll',
|
|
description: 'Get all posts',
|
|
},
|
|
{
|
|
name: 'Update',
|
|
value: 'update',
|
|
description: 'Update a post',
|
|
},
|
|
],
|
|
default: 'create',
|
|
description: 'The operation to perform.',
|
|
},
|
|
];
|
|
|
|
export const postFields: INodeProperties[] = [
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* post:create */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Title',
|
|
name: 'title',
|
|
type: 'string',
|
|
required: true,
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'post',
|
|
],
|
|
operation: [
|
|
'create',
|
|
],
|
|
},
|
|
},
|
|
description: 'The title for the post',
|
|
},
|
|
{
|
|
displayName: 'Additional Fields',
|
|
name: 'additionalFields',
|
|
type: 'collection',
|
|
placeholder: 'Add Field',
|
|
default: {},
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'post',
|
|
],
|
|
operation: [
|
|
'create',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
displayName: 'Author ID',
|
|
name: 'authorId',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getAuthors',
|
|
},
|
|
default: '',
|
|
description: 'The ID for the author of the object.',
|
|
},
|
|
{
|
|
displayName: 'Content',
|
|
name: 'content',
|
|
type: 'string',
|
|
typeOptions: {
|
|
alwaysOpenEditWindow: true,
|
|
},
|
|
default: '',
|
|
description: 'The content for the post',
|
|
},
|
|
{
|
|
displayName: 'Slug',
|
|
name: 'slug',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'An alphanumeric identifier for the object unique to its type.',
|
|
},
|
|
{
|
|
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: [
|
|
{
|
|
name: 'Draft',
|
|
value: 'draft',
|
|
},
|
|
{
|
|
name: 'Future',
|
|
value: 'future',
|
|
},
|
|
{
|
|
name: 'Pending',
|
|
value: 'pending',
|
|
},
|
|
{
|
|
name: 'Private',
|
|
value: 'private',
|
|
},
|
|
{
|
|
name: 'Publish',
|
|
value: 'publish',
|
|
},
|
|
],
|
|
default: 'draft',
|
|
description: 'A named status for the post.',
|
|
},
|
|
{
|
|
displayName: 'Comment Status',
|
|
name: 'commentStatus',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Open',
|
|
value: 'open',
|
|
},
|
|
{
|
|
name: 'Close',
|
|
value: 'closed',
|
|
},
|
|
],
|
|
default: 'open',
|
|
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: 'open',
|
|
description: 'If the a message should be send to announce the post.',
|
|
},
|
|
{
|
|
displayName: 'Format',
|
|
name: 'format',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Standard',
|
|
value: 'standard',
|
|
},
|
|
{
|
|
name: 'Aside',
|
|
value: 'aside',
|
|
},
|
|
{
|
|
name: 'Chat',
|
|
value: 'chat',
|
|
},
|
|
{
|
|
name: 'Gallery',
|
|
value: 'gallery',
|
|
},
|
|
{
|
|
name: 'Link',
|
|
value: 'link',
|
|
},
|
|
{
|
|
name: 'Image',
|
|
value: 'image',
|
|
},
|
|
{
|
|
name: 'Quote',
|
|
value: 'quote',
|
|
},
|
|
{
|
|
name: 'Status',
|
|
value: 'status',
|
|
},
|
|
{
|
|
name: 'Video',
|
|
value: 'video',
|
|
},
|
|
{
|
|
name: 'Audio',
|
|
value: 'audio',
|
|
},
|
|
],
|
|
default: 'standard',
|
|
description: 'Whether or not comments are open on the post.',
|
|
},
|
|
{
|
|
displayName: 'Sticky',
|
|
name: 'sticky',
|
|
type: 'boolean',
|
|
default: false,
|
|
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: 'Tags',
|
|
name: 'tags',
|
|
type: 'multiOptions',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getTags',
|
|
},
|
|
default: [],
|
|
description: 'The terms assigned to the object in the post_tag taxonomy.',
|
|
},
|
|
],
|
|
},
|
|
/* -------------------------------------------------------------------------- */
|
|
/* post:update */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Post ID',
|
|
name: 'postId',
|
|
type: 'string',
|
|
required: true,
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'post',
|
|
],
|
|
operation: [
|
|
'update',
|
|
],
|
|
},
|
|
},
|
|
description: 'Unique identifier for the object.',
|
|
},
|
|
{
|
|
displayName: 'Update Fields',
|
|
name: 'updateFields',
|
|
type: 'collection',
|
|
placeholder: 'Add Field',
|
|
default: {},
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'post',
|
|
],
|
|
operation: [
|
|
'update',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
displayName: 'Author ID',
|
|
name: 'authorId',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getAuthors',
|
|
},
|
|
default: '',
|
|
description: 'The ID for the author of the object.',
|
|
},
|
|
{
|
|
displayName: 'Title',
|
|
name: 'title',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'The title for the post',
|
|
},
|
|
{
|
|
displayName: 'Content',
|
|
name: 'content',
|
|
type: 'string',
|
|
typeOptions: {
|
|
alwaysOpenEditWindow: true,
|
|
},
|
|
default: '',
|
|
description: 'The content for the post',
|
|
},
|
|
{
|
|
displayName: 'Slug',
|
|
name: 'slug',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'An alphanumeric identifier for the object unique to its type.',
|
|
},
|
|
{
|
|
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: [
|
|
{
|
|
name: 'Publish',
|
|
value: 'publish',
|
|
},
|
|
{
|
|
name: 'Future',
|
|
value: 'future',
|
|
},
|
|
{
|
|
name: 'Draft',
|
|
value: 'draft',
|
|
},
|
|
{
|
|
name: 'Pending',
|
|
value: 'pending',
|
|
},
|
|
{
|
|
name: 'Private',
|
|
value: 'private',
|
|
},
|
|
],
|
|
default: 'draft',
|
|
description: 'A named status for the post.',
|
|
},
|
|
{
|
|
displayName: 'Comment Status',
|
|
name: 'commentStatus',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Open',
|
|
value: 'open',
|
|
},
|
|
{
|
|
name: 'Close',
|
|
value: 'closed',
|
|
},
|
|
],
|
|
default: 'open',
|
|
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: 'open',
|
|
description: 'Whether or not comments are open on the post.',
|
|
},
|
|
{
|
|
displayName: 'Format',
|
|
name: 'format',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Standard',
|
|
value: 'standard',
|
|
},
|
|
{
|
|
name: 'Aside',
|
|
value: 'aside',
|
|
},
|
|
{
|
|
name: 'Chat',
|
|
value: 'chat',
|
|
},
|
|
{
|
|
name: 'Gallery',
|
|
value: 'gallery',
|
|
},
|
|
{
|
|
name: 'Link',
|
|
value: 'link',
|
|
},
|
|
{
|
|
name: 'Image',
|
|
value: 'image',
|
|
},
|
|
{
|
|
name: 'Quote',
|
|
value: 'quote',
|
|
},
|
|
{
|
|
name: 'Status',
|
|
value: 'status',
|
|
},
|
|
{
|
|
name: 'Video',
|
|
value: 'video',
|
|
},
|
|
{
|
|
name: 'Audio',
|
|
value: 'audio',
|
|
},
|
|
],
|
|
default: 'standard',
|
|
description: 'The format of the post.',
|
|
},
|
|
{
|
|
displayName: 'Sticky',
|
|
name: 'sticky',
|
|
type: 'boolean',
|
|
default: false,
|
|
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: 'Tags',
|
|
name: 'tags',
|
|
type: 'multiOptions',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getTags',
|
|
},
|
|
default: [],
|
|
description: 'The terms assigned to the object in the post_tag taxonomy.',
|
|
},
|
|
],
|
|
},
|
|
/* -------------------------------------------------------------------------- */
|
|
/* post:get */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Post ID',
|
|
name: 'postId',
|
|
type: 'string',
|
|
required: true,
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'post',
|
|
],
|
|
operation: [
|
|
'get',
|
|
],
|
|
},
|
|
},
|
|
description: 'Unique identifier for the object.',
|
|
},
|
|
{
|
|
displayName: 'Options',
|
|
name: 'options',
|
|
type: 'collection',
|
|
placeholder: 'Add Option',
|
|
default: {},
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'post',
|
|
],
|
|
operation: [
|
|
'get',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
displayName: 'Password',
|
|
name: 'password',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'The password for the post if it is password protected.',
|
|
},
|
|
{
|
|
displayName: 'Context',
|
|
name: 'context',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'View',
|
|
value: 'view',
|
|
},
|
|
{
|
|
name: 'Embed',
|
|
value: 'embed',
|
|
},
|
|
{
|
|
name: 'Edit',
|
|
value: 'edit',
|
|
},
|
|
],
|
|
default: 'view',
|
|
description: 'Scope under which the request is made; determines fields present in response.',
|
|
},
|
|
],
|
|
},
|
|
/* -------------------------------------------------------------------------- */
|
|
/* post:getAll */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Return All',
|
|
name: 'returnAll',
|
|
type: 'boolean',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'post',
|
|
],
|
|
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: [
|
|
'post',
|
|
],
|
|
operation: [
|
|
'getAll',
|
|
],
|
|
returnAll: [
|
|
false,
|
|
],
|
|
},
|
|
},
|
|
typeOptions: {
|
|
minValue: 1,
|
|
maxValue: 10,
|
|
},
|
|
default: 5,
|
|
description: 'How many results to return.',
|
|
},
|
|
{
|
|
displayName: 'Options',
|
|
name: 'options',
|
|
type: 'collection',
|
|
placeholder: 'Add Option',
|
|
default: {},
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'post',
|
|
],
|
|
operation: [
|
|
'getAll',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
displayName: 'Context',
|
|
name: 'context',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'View',
|
|
value: 'view',
|
|
},
|
|
{
|
|
name: 'Embed',
|
|
value: 'embed',
|
|
},
|
|
{
|
|
name: 'Edit',
|
|
value: 'edit',
|
|
},
|
|
],
|
|
default: 'view',
|
|
description: 'Scope under which the request is made; determines fields present in response.',
|
|
},
|
|
{
|
|
displayName: 'Order By',
|
|
name: 'orderBy',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Author',
|
|
value: 'author',
|
|
},
|
|
{
|
|
name: 'Date',
|
|
value: 'date',
|
|
},
|
|
{
|
|
name: 'ID',
|
|
value: 'id',
|
|
},
|
|
{
|
|
name: 'Include',
|
|
value: 'include',
|
|
},
|
|
{
|
|
name: 'Modified',
|
|
value: 'modified',
|
|
},
|
|
{
|
|
name: 'Parent',
|
|
value: 'parent',
|
|
},
|
|
{
|
|
name: 'Relevance',
|
|
value: 'relevance',
|
|
},
|
|
{
|
|
name: 'Slug',
|
|
value: 'slug',
|
|
},
|
|
{
|
|
name: 'Include Slugs',
|
|
value: 'include_slugs',
|
|
},
|
|
{
|
|
name: 'Title',
|
|
value: 'title',
|
|
},
|
|
],
|
|
default: 'id',
|
|
description: 'Sort collection by object attribute.',
|
|
},
|
|
{
|
|
displayName: 'Order',
|
|
name: 'order',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'ASC',
|
|
value: 'asc',
|
|
},
|
|
{
|
|
name: 'DESC',
|
|
value: 'desc',
|
|
},
|
|
],
|
|
default: 'desc',
|
|
description: 'Order sort attribute ascending or descending.',
|
|
},
|
|
{
|
|
displayName: 'Search',
|
|
name: 'search',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'Limit results to those matching a string.',
|
|
},
|
|
{
|
|
displayName: 'After',
|
|
name: 'after',
|
|
type: 'dateTime',
|
|
default: '',
|
|
description: 'Limit response to posts published after a given ISO8601 compliant date.',
|
|
},
|
|
{
|
|
displayName: 'Before',
|
|
name: 'before',
|
|
type: 'dateTime',
|
|
default: '',
|
|
description: 'Limit response to posts published before a given ISO8601 compliant date.',
|
|
},
|
|
{
|
|
displayName: 'Author',
|
|
name: 'author',
|
|
type: 'multiOptions',
|
|
default: [],
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getAuthors',
|
|
},
|
|
description: 'Limit result set to posts assigned to specific authors.',
|
|
},
|
|
{
|
|
displayName: 'Categories',
|
|
name: 'categories',
|
|
type: 'multiOptions',
|
|
default: [],
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getCategories',
|
|
},
|
|
description: 'Limit result set to all items that have the specified term assigned in the categories taxonomy.',
|
|
},
|
|
{
|
|
displayName: 'Exclude Categories',
|
|
name: 'excludedCategories',
|
|
type: 'multiOptions',
|
|
default: [],
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getCategories',
|
|
},
|
|
description: 'Limit result set to all items except those that have the specified term assigned in the categories taxonomy.',
|
|
},
|
|
{
|
|
displayName: 'Tags',
|
|
name: 'tags',
|
|
type: 'multiOptions',
|
|
default: [],
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getTags',
|
|
},
|
|
description: 'Limit result set to all items that have the specified term assigned in the tags taxonomy.',
|
|
},
|
|
{
|
|
displayName: 'Exclude Tags',
|
|
name: 'excludedTags',
|
|
type: 'multiOptions',
|
|
default: [],
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getTags',
|
|
},
|
|
description: 'Limit result set to all items except those that have the specified term assigned in the tags taxonomy.',
|
|
},
|
|
{
|
|
displayName: 'Sticky',
|
|
name: 'sticky',
|
|
type: 'boolean',
|
|
default: false,
|
|
description: 'Limit result set to items that are sticky.',
|
|
},
|
|
|
|
],
|
|
},
|
|
/* -------------------------------------------------------------------------- */
|
|
/* post:delete */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Post ID',
|
|
name: 'postId',
|
|
type: 'string',
|
|
required: true,
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'post',
|
|
],
|
|
operation: [
|
|
'delete',
|
|
],
|
|
},
|
|
},
|
|
description: 'Unique identifier for the object.',
|
|
},
|
|
{
|
|
displayName: 'Options',
|
|
name: 'options',
|
|
type: 'collection',
|
|
placeholder: 'Add Option',
|
|
default: {},
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'post',
|
|
],
|
|
operation: [
|
|
'delete',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
displayName: 'Force',
|
|
name: 'force',
|
|
type: 'boolean',
|
|
default: false,
|
|
description: 'Whether to bypass trash and force deletion.',
|
|
},
|
|
],
|
|
},
|
|
];
|