2022-08-17 08:50:24 -07:00
import { INodeProperties } from 'n8n-workflow' ;
2021-05-20 14:31:23 -07:00
2022-07-04 02:12:08 -07:00
export const databaseOperations : INodeProperties [ ] = [
2021-05-20 14:31:23 -07:00
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
2022-05-20 14:47:24 -07:00
noDataExpression : true ,
2021-05-20 14:31:23 -07:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
version : [ 2 ] ,
resource : [ 'database' ] ,
2021-05-20 14:31:23 -07:00
} ,
} ,
options : [
{
name : 'Get' ,
value : 'get' ,
description : 'Get a database' ,
2022-07-10 13:50:51 -07:00
action : 'Get a database' ,
2021-05-20 14:31:23 -07:00
} ,
{
2022-09-07 07:51:14 -07:00
name : 'Get Many' ,
2021-05-20 14:31:23 -07:00
value : 'getAll' ,
2022-09-13 03:36:36 -07:00
description : 'Get many databases' ,
2022-09-08 08:10:13 -07:00
action : 'Get many databases' ,
2021-05-20 14:31:23 -07:00
} ,
2021-12-29 14:23:22 -08:00
{
name : 'Search' ,
value : 'search' ,
2022-06-03 10:23:49 -07:00
description : 'Search databases using text search' ,
2022-07-10 13:50:51 -07:00
action : 'Search a database' ,
2021-12-29 14:23:22 -08:00
} ,
2021-05-20 14:31:23 -07:00
] ,
default : 'get' ,
} ,
2021-12-29 14:23:22 -08:00
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
2022-05-20 14:47:24 -07:00
noDataExpression : true ,
2021-12-29 14:23:22 -08:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
version : [ 1 ] ,
resource : [ 'database' ] ,
2021-12-29 14:23:22 -08:00
} ,
} ,
options : [
{
name : 'Get' ,
value : 'get' ,
description : 'Get a database' ,
2022-07-10 13:50:51 -07:00
action : 'Get a database' ,
2021-12-29 14:23:22 -08:00
} ,
{
2022-09-07 07:51:14 -07:00
name : 'Get Many' ,
2021-12-29 14:23:22 -08:00
value : 'getAll' ,
2022-09-13 03:36:36 -07:00
description : 'Get many databases' ,
2022-09-08 08:10:13 -07:00
action : 'Get many databases' ,
2021-12-29 14:23:22 -08:00
} ,
] ,
default : 'get' ,
} ,
2022-07-04 02:12:08 -07:00
] ;
2021-05-20 14:31:23 -07:00
2022-07-04 02:12:08 -07:00
export const databaseFields : INodeProperties [ ] = [
2021-05-20 14:31:23 -07:00
/* -------------------------------------------------------------------------- */
/* database:get */
/* -------------------------------------------------------------------------- */
2022-11-11 04:37:52 -08:00
2021-05-20 14:31:23 -07:00
{
2022-11-11 04:37:52 -08:00
displayName : 'Database' ,
2021-05-20 14:31:23 -07:00
name : 'databaseId' ,
2022-11-11 04:37:52 -08:00
type : 'resourceLocator' ,
default : { mode : 'list' , value : '' } ,
2021-05-20 14:31:23 -07:00
required : true ,
2022-11-11 04:37:52 -08:00
modes : [
{
displayName : 'Database' ,
name : 'list' ,
type : 'list' ,
placeholder : 'Select a Database...' ,
typeOptions : {
searchListMethod : 'getDatabases' ,
searchable : true ,
} ,
} ,
{
displayName : 'Link' ,
name : 'url' ,
type : 'string' ,
placeholder :
'https://www.notion.so/0fe2f7de558b471eab07e9d871cdf4a9?v=f2d424ba0c404733a3f500c78c881610' ,
validation : [
{
type : 'regex' ,
properties : {
regex :
2022-11-22 04:43:28 -08:00
'(?:https|http)://www.notion.so/(?:[a-z0-9-]{2,}/)?([0-9a-f]{8}[0-9a-f]{4}4[0-9a-f]{3}[89ab][0-9a-f]{3}[0-9a-f]{12}).*' ,
errorMessage :
'Not a valid Notion Database URL. Hint: use the URL of the database itself, not a page containing it.' ,
2022-11-11 04:37:52 -08:00
} ,
} ,
] ,
extractValue : {
type : 'regex' ,
2022-11-22 04:43:28 -08:00
regex :
'(?:https|http)://www.notion.so/(?:[a-z0-9-]{2,}/)?([0-9a-f]{8}[0-9a-f]{4}4[0-9a-f]{3}[89ab][0-9a-f]{3}[0-9a-f]{12})' ,
2022-11-11 04:37:52 -08:00
} ,
} ,
{
displayName : 'ID' ,
name : 'id' ,
type : 'string' ,
placeholder : 'ab1545b247fb49fa92d6f4b49f4d8116' ,
validation : [
{
type : 'regex' ,
properties : {
2022-11-22 04:43:28 -08:00
regex :
'^(([0-9a-f]{8}[0-9a-f]{4}4[0-9a-f]{3}[89ab][0-9a-f]{3}[0-9a-f]{12})|([0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}))[ \t]*' ,
2022-11-11 04:37:52 -08:00
errorMessage : 'Not a valid Notion Database ID' ,
} ,
} ,
] ,
extractValue : {
type : 'regex' ,
regex : '^([0-9a-f]{8}-?[0-9a-f]{4}-?4[0-9a-f]{3}-?[89ab][0-9a-f]{3}-?[0-9a-f]{12})' ,
} ,
url : '=https://www.notion.so/{{$value.replace(/-/g, "")}}' ,
} ,
] ,
2021-05-20 14:31:23 -07:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'database' ] ,
operation : [ 'get' ] ,
2021-05-20 14:31:23 -07:00
} ,
} ,
2022-11-22 04:43:28 -08:00
description : 'The Notion Database to get' ,
2021-05-20 14:31:23 -07:00
} ,
/* -------------------------------------------------------------------------- */
/* database:getAll */
/* -------------------------------------------------------------------------- */
2022-11-09 02:26:13 -08:00
{
displayName :
'In Notion, make sure you <a href="https://www.notion.so/help/add-and-manage-connections-with-the-api#add-connections-to-pages" target="_blank">share your database with your integration</a> . Otherwise it won\'t be accessible, or listed here.' ,
name : 'notionNotice' ,
type : 'notice' ,
default : '' ,
displayOptions : {
show : {
resource : [ 'database' ] ,
operation : [ 'getAll' ] ,
} ,
} ,
} ,
2021-05-20 14:31:23 -07:00
{
displayName : 'Return All' ,
name : 'returnAll' ,
type : 'boolean' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'database' ] ,
operation : [ 'getAll' ] ,
2021-05-20 14:31:23 -07:00
} ,
} ,
default : false ,
2022-05-06 14:01:25 -07:00
description : 'Whether to return all results or only up to a given limit' ,
2021-05-20 14:31:23 -07:00
} ,
{
displayName : 'Limit' ,
name : 'limit' ,
type : 'number' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'database' ] ,
operation : [ 'getAll' ] ,
returnAll : [ false ] ,
2021-05-20 14:31:23 -07:00
} ,
} ,
typeOptions : {
minValue : 1 ,
maxValue : 100 ,
} ,
default : 50 ,
2022-05-06 14:01:25 -07:00
description : 'Max number of results to return' ,
2021-12-29 14:23:22 -08:00
} ,
{
2022-05-20 14:47:24 -07:00
displayName : 'Simplify' ,
2021-12-29 14:23:22 -08:00
name : 'simple' ,
type : 'boolean' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
version : [ 2 ] ,
resource : [ 'database' ] ,
operation : [ 'getAll' , 'get' ] ,
2021-12-29 14:23:22 -08:00
} ,
} ,
default : true ,
description : 'Whether to return a simplified version of the response instead of the raw data' ,
} ,
/* -------------------------------------------------------------------------- */
/* database:search */
/* -------------------------------------------------------------------------- */
{
displayName : 'Search Text' ,
name : 'text' ,
type : 'string' ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'database' ] ,
operation : [ 'search' ] ,
2021-12-29 14:23:22 -08:00
} ,
} ,
description : 'The text to search for' ,
} ,
{
displayName : 'Return All' ,
name : 'returnAll' ,
type : 'boolean' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'database' ] ,
operation : [ 'search' ] ,
2021-12-29 14:23:22 -08:00
} ,
} ,
default : false ,
description : 'Whether to return all results or only up to a given limit' ,
} ,
{
displayName : 'Limit' ,
name : 'limit' ,
type : 'number' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'database' ] ,
operation : [ 'search' ] ,
returnAll : [ false ] ,
2021-12-29 14:23:22 -08:00
} ,
} ,
typeOptions : {
minValue : 1 ,
maxValue : 100 ,
} ,
default : 50 ,
2022-05-06 14:01:25 -07:00
description : 'Max number of results to return' ,
2021-12-29 14:23:22 -08:00
} ,
{
2022-05-20 14:47:24 -07:00
displayName : 'Simplify' ,
2021-12-29 14:23:22 -08:00
name : 'simple' ,
type : 'boolean' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'database' ] ,
operation : [ 'search' ] ,
2021-12-29 14:23:22 -08:00
} ,
} ,
default : true ,
description : 'Whether to return a simplified version of the response instead of the raw data' ,
} ,
{
displayName : 'Options' ,
name : 'options' ,
type : 'collection' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'database' ] ,
operation : [ 'search' ] ,
2021-12-29 14:23:22 -08:00
} ,
} ,
default : { } ,
placeholder : 'Add Field' ,
options : [
{
displayName : 'Sort' ,
name : 'sort' ,
placeholder : 'Add Sort' ,
type : 'fixedCollection' ,
typeOptions : {
multipleValues : false ,
} ,
default : { } ,
options : [
{
displayName : 'Sort' ,
name : 'sortValue' ,
values : [
{
displayName : 'Direction' ,
name : 'direction' ,
type : 'options' ,
options : [
{
name : 'Ascending' ,
value : 'ascending' ,
} ,
{
name : 'Descending' ,
value : 'descending' ,
} ,
] ,
default : 'descending' ,
description : 'The direction to sort' ,
} ,
{
displayName : 'Timestamp' ,
name : 'timestamp' ,
type : 'options' ,
options : [
{
name : 'Last Edited Time' ,
value : 'last_edited_time' ,
} ,
] ,
default : 'last_edited_time' ,
2022-05-06 14:01:25 -07:00
description : 'The name of the timestamp to sort against' ,
2021-12-29 14:23:22 -08:00
} ,
] ,
} ,
] ,
} ,
] ,
2021-05-20 14:31:23 -07:00
} ,
2022-07-04 02:12:08 -07:00
] ;