@tom-schorn/n8n-nodes-paperless 0.1.3 → 0.2.0-dev.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -4,10 +4,218 @@ exports.description = void 0;
|
|
|
4
4
|
exports.execute = execute;
|
|
5
5
|
const n8n_workflow_1 = require("n8n-workflow");
|
|
6
6
|
const transport_1 = require("../../transport");
|
|
7
|
-
|
|
7
|
+
const tagResourceLocator = {
|
|
8
|
+
displayName: 'Tag',
|
|
9
|
+
name: 'tag',
|
|
10
|
+
default: { mode: 'list', value: '' },
|
|
11
|
+
description: 'The tag ID',
|
|
12
|
+
modes: [
|
|
13
|
+
{
|
|
14
|
+
displayName: 'From List',
|
|
15
|
+
name: 'list',
|
|
16
|
+
placeholder: 'Select a Tag...',
|
|
17
|
+
type: 'list',
|
|
18
|
+
typeOptions: {
|
|
19
|
+
searchListMethod: 'tagSearch',
|
|
20
|
+
searchFilterRequired: false,
|
|
21
|
+
searchable: true,
|
|
22
|
+
},
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
displayName: 'By ID',
|
|
26
|
+
name: 'id',
|
|
27
|
+
placeholder: 'Enter Tag ID...',
|
|
28
|
+
type: 'string',
|
|
29
|
+
validation: [
|
|
30
|
+
{
|
|
31
|
+
type: 'regex',
|
|
32
|
+
properties: {
|
|
33
|
+
regex: '^[1-9][0-9]*$',
|
|
34
|
+
errorMessage: 'The ID must be a positive integer',
|
|
35
|
+
},
|
|
36
|
+
},
|
|
37
|
+
],
|
|
38
|
+
},
|
|
39
|
+
],
|
|
40
|
+
type: 'resourceLocator',
|
|
41
|
+
};
|
|
42
|
+
function singleResourceLocator(name, displayName, searchMethod, description) {
|
|
43
|
+
return {
|
|
44
|
+
displayName,
|
|
45
|
+
name,
|
|
46
|
+
default: { mode: 'list', value: '' },
|
|
47
|
+
description,
|
|
48
|
+
modes: [
|
|
49
|
+
{
|
|
50
|
+
displayName: 'From List',
|
|
51
|
+
name: 'list',
|
|
52
|
+
placeholder: `Select a ${displayName}...`,
|
|
53
|
+
type: 'list',
|
|
54
|
+
typeOptions: {
|
|
55
|
+
searchListMethod: searchMethod,
|
|
56
|
+
searchFilterRequired: false,
|
|
57
|
+
searchable: true,
|
|
58
|
+
},
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
displayName: 'By ID',
|
|
62
|
+
name: 'id',
|
|
63
|
+
placeholder: `Enter ${displayName} ID...`,
|
|
64
|
+
type: 'string',
|
|
65
|
+
validation: [
|
|
66
|
+
{
|
|
67
|
+
type: 'regex',
|
|
68
|
+
properties: {
|
|
69
|
+
regex: '^[1-9][0-9]*$',
|
|
70
|
+
errorMessage: 'The ID must be a positive integer',
|
|
71
|
+
},
|
|
72
|
+
},
|
|
73
|
+
],
|
|
74
|
+
},
|
|
75
|
+
],
|
|
76
|
+
type: 'resourceLocator',
|
|
77
|
+
};
|
|
78
|
+
}
|
|
79
|
+
exports.description = [
|
|
80
|
+
{
|
|
81
|
+
displayName: 'Filters',
|
|
82
|
+
name: 'filters',
|
|
83
|
+
type: 'collection',
|
|
84
|
+
default: {},
|
|
85
|
+
hint: 'Narrow down the documents to return. All filters are combined (AND).',
|
|
86
|
+
displayOptions: {
|
|
87
|
+
show: {
|
|
88
|
+
resource: ['document'],
|
|
89
|
+
operation: ['list'],
|
|
90
|
+
},
|
|
91
|
+
},
|
|
92
|
+
placeholder: 'Add Filter',
|
|
93
|
+
options: [
|
|
94
|
+
singleResourceLocator('correspondent__id', 'Correspondent', 'correspondentSearch', 'Only documents with this correspondent'),
|
|
95
|
+
{
|
|
96
|
+
displayName: 'Created After',
|
|
97
|
+
name: 'created__date__gte',
|
|
98
|
+
default: '',
|
|
99
|
+
description: 'Only documents created on or after this date',
|
|
100
|
+
type: 'dateTime',
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
displayName: 'Created Before',
|
|
104
|
+
name: 'created__date__lte',
|
|
105
|
+
default: '',
|
|
106
|
+
description: 'Only documents created on or before this date',
|
|
107
|
+
type: 'dateTime',
|
|
108
|
+
},
|
|
109
|
+
singleResourceLocator('document_type__id', 'Document Type', 'documentTypeSearch', 'Only documents of this type'),
|
|
110
|
+
{
|
|
111
|
+
displayName: 'Has All Tags',
|
|
112
|
+
name: 'tags__id__all',
|
|
113
|
+
default: {},
|
|
114
|
+
description: 'Only documents that have all of these tags',
|
|
115
|
+
options: [
|
|
116
|
+
{
|
|
117
|
+
displayName: 'Tag',
|
|
118
|
+
name: 'values',
|
|
119
|
+
values: [tagResourceLocator],
|
|
120
|
+
},
|
|
121
|
+
],
|
|
122
|
+
placeholder: 'Add Tag',
|
|
123
|
+
type: 'fixedCollection',
|
|
124
|
+
typeOptions: { multipleValues: true },
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
displayName: 'Has None of Tags',
|
|
128
|
+
name: 'tags__id__none',
|
|
129
|
+
default: {},
|
|
130
|
+
description: 'Exclude documents that have any of these tags',
|
|
131
|
+
options: [
|
|
132
|
+
{
|
|
133
|
+
displayName: 'Tag',
|
|
134
|
+
name: 'values',
|
|
135
|
+
values: [tagResourceLocator],
|
|
136
|
+
},
|
|
137
|
+
],
|
|
138
|
+
placeholder: 'Add Tag',
|
|
139
|
+
type: 'fixedCollection',
|
|
140
|
+
typeOptions: { multipleValues: true },
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
displayName: 'Limit',
|
|
144
|
+
name: 'page_size',
|
|
145
|
+
default: 25,
|
|
146
|
+
description: 'Max number of results to return',
|
|
147
|
+
type: 'number',
|
|
148
|
+
typeOptions: { minValue: 1 },
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
displayName: 'Ordering',
|
|
152
|
+
name: 'ordering',
|
|
153
|
+
default: '-created',
|
|
154
|
+
description: 'How to sort the results',
|
|
155
|
+
type: 'options',
|
|
156
|
+
options: [
|
|
157
|
+
{ name: 'Added (Newest First)', value: '-added' },
|
|
158
|
+
{ name: 'Added (Oldest First)', value: 'added' },
|
|
159
|
+
{ name: 'Created (Newest First)', value: '-created' },
|
|
160
|
+
{ name: 'Created (Oldest First)', value: 'created' },
|
|
161
|
+
{ name: 'Title (A-Z)', value: 'title' },
|
|
162
|
+
{ name: 'Title (Z-A)', value: '-title' },
|
|
163
|
+
],
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
displayName: 'Search Query',
|
|
167
|
+
name: 'query',
|
|
168
|
+
default: '',
|
|
169
|
+
description: 'Full-text search across document content and metadata',
|
|
170
|
+
type: 'string',
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
displayName: 'Similar to Document ID',
|
|
174
|
+
name: 'more_like_id',
|
|
175
|
+
default: '',
|
|
176
|
+
description: 'Return documents similar to the document with this ID',
|
|
177
|
+
type: 'number',
|
|
178
|
+
},
|
|
179
|
+
singleResourceLocator('storage_path__id', 'Storage Path', 'storagePathSearch', 'Only documents with this storage path'),
|
|
180
|
+
],
|
|
181
|
+
},
|
|
182
|
+
];
|
|
8
183
|
async function execute(itemIndex) {
|
|
184
|
+
var _a, _b, _c, _d, _e, _f, _g;
|
|
9
185
|
const endpoint = '/documents/';
|
|
10
|
-
const
|
|
186
|
+
const filters = this.getNodeParameter('filters', itemIndex, {});
|
|
187
|
+
const qs = {};
|
|
188
|
+
if (filters.query)
|
|
189
|
+
qs.query = filters.query;
|
|
190
|
+
if (filters.ordering)
|
|
191
|
+
qs.ordering = filters.ordering;
|
|
192
|
+
if (filters.more_like_id)
|
|
193
|
+
qs.more_like_id = filters.more_like_id;
|
|
194
|
+
const correspondent = (_a = filters.correspondent__id) === null || _a === void 0 ? void 0 : _a.value;
|
|
195
|
+
if (correspondent)
|
|
196
|
+
qs.correspondent__id = correspondent;
|
|
197
|
+
const documentType = (_b = filters.document_type__id) === null || _b === void 0 ? void 0 : _b.value;
|
|
198
|
+
if (documentType)
|
|
199
|
+
qs.document_type__id = documentType;
|
|
200
|
+
const storagePath = (_c = filters.storage_path__id) === null || _c === void 0 ? void 0 : _c.value;
|
|
201
|
+
if (storagePath)
|
|
202
|
+
qs.storage_path__id = storagePath;
|
|
203
|
+
const tagsAll = (_e = (_d = filters.tags__id__all) === null || _d === void 0 ? void 0 : _d.values) === null || _e === void 0 ? void 0 : _e.map((t) => Number(t.tag.value)).filter((id) => !Number.isNaN(id));
|
|
204
|
+
if (tagsAll === null || tagsAll === void 0 ? void 0 : tagsAll.length)
|
|
205
|
+
qs.tags__id__all = tagsAll.join(',');
|
|
206
|
+
const tagsNone = (_g = (_f = filters.tags__id__none) === null || _f === void 0 ? void 0 : _f.values) === null || _g === void 0 ? void 0 : _g.map((t) => Number(t.tag.value)).filter((id) => !Number.isNaN(id));
|
|
207
|
+
if (tagsNone === null || tagsNone === void 0 ? void 0 : tagsNone.length)
|
|
208
|
+
qs.tags__id__none = tagsNone.join(',');
|
|
209
|
+
if (filters.created__date__gte)
|
|
210
|
+
qs.created__date__gte = String(filters.created__date__gte).slice(0, 10);
|
|
211
|
+
if (filters.created__date__lte)
|
|
212
|
+
qs.created__date__lte = String(filters.created__date__lte).slice(0, 10);
|
|
213
|
+
if (filters.page_size) {
|
|
214
|
+
qs.page_size = filters.page_size;
|
|
215
|
+
const response = (await transport_1.apiRequest.call(this, itemIndex, 'GET', endpoint, undefined, qs));
|
|
216
|
+
return { json: { results: response.results } };
|
|
217
|
+
}
|
|
218
|
+
const responses = (await transport_1.apiRequestPaginated.call(this, itemIndex, 'GET', endpoint, undefined, qs));
|
|
11
219
|
const statusCode = responses.reduce((acc, response) => acc + response.statusCode, 0) / responses.length;
|
|
12
220
|
if (statusCode !== 200) {
|
|
13
221
|
throw new n8n_workflow_1.NodeOperationError(this.getNode(), `The documents you are requesting could not be found`, {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list.operation.js","sourceRoot":"","sources":["../../../../../../nodes/Paperless/v2/actions/document/list.operation.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"list.operation.js","sourceRoot":"","sources":["../../../../../../nodes/Paperless/v2/actions/document/list.operation.ts"],"names":[],"mappings":"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"}
|
package/dist/package.json
CHANGED