mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 00:54:06 -08:00
90bb6ba417
Github issue / Community forum post (link here to close automatically): https://github.com/n8n-io/n8n/issues/7825 This adds support for getting a users profile which returns different data to the existing user info (Get) operation we have. Test Workflow ``` { "meta": { "instanceId": "8c8c5237b8e37b006a7adce87f4369350c58e41f3ca9de16196d3197f69eabcd" }, "nodes": [ { "parameters": {}, "id": "69f437fb-9962-4d51-91bb-0ef4b3827e49", "name": "When clicking \"Execute Workflow\"", "type": "n8n-nodes-base.manualTrigger", "typeVersion": 1, "position": [ 880, 380 ] }, { "parameters": { "resource": "user", "user": { "__rl": true, "value": "U035F563JSW", "mode": "list", "cachedResultName": "jonathan" } }, "id": "826828db-598b-40c7-b085-5b01f2c10d73", "name": "Get Info", "type": "n8n-nodes-base.slack", "typeVersion": 2.1, "position": [ 1120, 260 ], "credentials": { "slackApi": { "id": "E4DnXIyNuRxi5GSz", "name": "Slack account" } } }, { "parameters": { "resource": "user", "operation": "getProfile", "user": { "__rl": true, "value": "U035F563JSW", "mode": "list", "cachedResultName": "jonathan" } }, "id": "9de02c3f-e17c-4a32-a64e-11aaa0b36120", "name": "Get Profile", "type": "n8n-nodes-base.slack", "typeVersion": 2.1, "position": [ 1120, 440 ], "credentials": { "slackApi": { "id": "E4DnXIyNuRxi5GSz", "name": "Slack account" } } } ], "connections": { "When clicking \"Execute Workflow\"": { "main": [ [ { "node": "Get Info", "type": "main", "index": 0 }, { "node": "Get Profile", "type": "main", "index": 0 } ] ] } }, "pinData": {} } ```
304 lines
7 KiB
TypeScript
304 lines
7 KiB
TypeScript
import type { INodeProperties } from 'n8n-workflow';
|
|
|
|
export const userOperations: INodeProperties[] = [
|
|
{
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['user'],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
name: 'Get',
|
|
value: 'info',
|
|
description: 'Get information about a user',
|
|
action: 'Get information about a user',
|
|
},
|
|
{
|
|
name: 'Get Many',
|
|
value: 'getAll',
|
|
description: 'Get a list of many users',
|
|
action: 'Get many users',
|
|
},
|
|
{
|
|
name: "Get User's Profile",
|
|
value: 'getProfile',
|
|
description: "Get a user's",
|
|
action: "Get a user's profile",
|
|
},
|
|
{
|
|
name: "Get User's Status",
|
|
value: 'getPresence',
|
|
description: 'Get online status of a user',
|
|
action: "Get a user's presence status",
|
|
},
|
|
{
|
|
name: "Update User's Profile",
|
|
value: 'updateProfile',
|
|
description: "Update a user's profile",
|
|
action: "Update a user's profile",
|
|
},
|
|
],
|
|
default: 'info',
|
|
},
|
|
];
|
|
|
|
export const userFields: INodeProperties[] = [
|
|
/* -------------------------------------------------------------------------- */
|
|
/* user:info */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'User',
|
|
name: 'user',
|
|
type: 'resourceLocator',
|
|
default: { mode: 'list', value: '' },
|
|
placeholder: 'Select a user...',
|
|
description: 'The ID of the user to get information about',
|
|
displayOptions: {
|
|
show: {
|
|
operation: ['info', 'getProfile'],
|
|
resource: ['user'],
|
|
},
|
|
},
|
|
modes: [
|
|
{
|
|
displayName: 'From List',
|
|
name: 'list',
|
|
type: 'list',
|
|
placeholder: 'Select a user...',
|
|
typeOptions: {
|
|
searchListMethod: 'getUsers',
|
|
searchable: true,
|
|
},
|
|
},
|
|
{
|
|
displayName: 'By ID',
|
|
name: 'id',
|
|
type: 'string',
|
|
validation: [
|
|
{
|
|
type: 'regex',
|
|
properties: {
|
|
regex: '[a-zA-Z0-9]{2,}',
|
|
errorMessage: 'Not a valid Slack User ID',
|
|
},
|
|
},
|
|
],
|
|
placeholder: 'U123AB45JGM',
|
|
},
|
|
],
|
|
},
|
|
/* -------------------------------------------------------------------------- */
|
|
/* user:getAll */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Return All',
|
|
name: 'returnAll',
|
|
type: 'boolean',
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['user'],
|
|
operation: ['getAll'],
|
|
},
|
|
},
|
|
default: false,
|
|
description: 'Whether to return all results or only up to a given limit',
|
|
},
|
|
{
|
|
displayName: 'Limit',
|
|
name: 'limit',
|
|
type: 'number',
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['user'],
|
|
operation: ['getAll'],
|
|
returnAll: [false],
|
|
},
|
|
},
|
|
typeOptions: {
|
|
minValue: 1,
|
|
maxValue: 100,
|
|
},
|
|
default: 50,
|
|
description: 'Max number of results to return',
|
|
},
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* user:getPresence */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'User',
|
|
name: 'user',
|
|
type: 'resourceLocator',
|
|
default: { mode: 'list', value: '' },
|
|
placeholder: 'Select a user...',
|
|
description: 'The ID of the user to get the online status of',
|
|
displayOptions: {
|
|
show: {
|
|
operation: ['getPresence'],
|
|
resource: ['user'],
|
|
},
|
|
},
|
|
modes: [
|
|
{
|
|
displayName: 'From List',
|
|
name: 'list',
|
|
type: 'list',
|
|
placeholder: 'Select a user...',
|
|
typeOptions: {
|
|
searchListMethod: 'getUsers',
|
|
searchable: true,
|
|
},
|
|
},
|
|
{
|
|
displayName: 'By ID',
|
|
name: 'id',
|
|
type: 'string',
|
|
validation: [
|
|
{
|
|
type: 'regex',
|
|
properties: {
|
|
regex: '[a-zA-Z0-9]{2,}',
|
|
errorMessage: 'Not a valid Slack User ID',
|
|
},
|
|
},
|
|
],
|
|
placeholder: 'U123AB45JGM',
|
|
},
|
|
],
|
|
},
|
|
/* -------------------------------------------------------------------------- */
|
|
/* user:update user profile */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Options',
|
|
name: 'options',
|
|
type: 'collection',
|
|
placeholder: 'Add Field',
|
|
default: {},
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['user'],
|
|
operation: ['updateProfile'],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
displayName: 'Custom Fields',
|
|
name: 'customFieldUi',
|
|
placeholder: 'Add Custom Fields',
|
|
type: 'fixedCollection',
|
|
typeOptions: {
|
|
multipleValues: true,
|
|
},
|
|
default: {},
|
|
options: [
|
|
{
|
|
name: 'customFieldValues',
|
|
displayName: 'Custom Field',
|
|
values: [
|
|
{
|
|
displayName: 'Field Name or ID',
|
|
name: 'id',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getTeamFields',
|
|
},
|
|
default: '',
|
|
description:
|
|
'ID of the field to set. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
|
|
},
|
|
{
|
|
displayName: 'Field Value',
|
|
name: 'value',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'Value of the field to set',
|
|
},
|
|
{
|
|
displayName: 'Alt',
|
|
name: 'alt',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
displayName: 'Email',
|
|
name: 'email',
|
|
type: 'string',
|
|
placeholder: 'name@email.com',
|
|
default: '',
|
|
description: 'This field can only be changed by admins for users on paid teams',
|
|
},
|
|
{
|
|
displayName: 'First Name',
|
|
name: 'first_name',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Last Name',
|
|
name: 'last_name',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Set Status',
|
|
name: 'status',
|
|
type: 'fixedCollection',
|
|
typeOptions: {
|
|
multipleValues: true,
|
|
},
|
|
default: {},
|
|
placeholder: 'Set Status',
|
|
options: [
|
|
{
|
|
displayName: 'Set Status',
|
|
name: 'set_status',
|
|
values: [
|
|
{
|
|
displayName: 'Status Emoji',
|
|
name: 'status_emoji',
|
|
type: 'string',
|
|
default: '',
|
|
description:
|
|
'Is a string referencing an emoji enabled for the Slack team, such as :mountain_railway:',
|
|
},
|
|
{
|
|
displayName: 'Status Expiration',
|
|
name: 'status_expiration',
|
|
type: 'dateTime',
|
|
default: '',
|
|
description:
|
|
'The number of minutes to wait until this status expires and is cleared. Optional.',
|
|
},
|
|
{
|
|
displayName: 'Status Text',
|
|
name: 'status_text',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'Allows up to 100 characters, though we strongly encourage brevity',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
displayName: 'User ID',
|
|
name: 'user',
|
|
type: 'string',
|
|
default: '',
|
|
description:
|
|
'ID of user to change. This argument may only be specified by team admins on paid teams.',
|
|
},
|
|
],
|
|
},
|
|
];
|