-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathfunctions.js
1628 lines (1377 loc) · 61.4 KB
/
functions.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
const fs = require('fs');
const pathLib = require('path');
const tar = require("tar");
const ignore = require("ignore");
const { promisify } = require('util');
const libClient = require('../client.js');
const { getAllFiles, showConsoleLink } = require('../utils.js');
const { Command } = require('commander');
const { sdkForProject, sdkForConsole } = require('../sdks')
const { parse, actionRunner, parseInteger, parseBool, commandDescriptions, success, log } = require('../parser')
const { localConfig, globalConfig } = require("../config");
const { File } = require('undici');
const { ReadableStream } = require('stream/web');
/**
* @param {fs.ReadStream} readStream
* @returns {ReadableStream}
*/
function convertReadStreamToReadableStream(readStream) {
return new ReadableStream({
start(controller) {
readStream.on("data", (chunk) => {
controller.enqueue(chunk);
});
readStream.on("end", () => {
controller.close();
});
readStream.on("error", (err) => {
controller.error(err);
});
},
cancel() {
readStream.destroy();
},
});
}
const functions = new Command("functions").description(commandDescriptions['functions'] ?? '').configureHelp({
helpWidth: process.stdout.columns || 80
})
/**
* @typedef {Object} FunctionsListRequestParams
* @property {string[]} queries Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https://appwrite.io/docs/queries). Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: name, enabled, runtime, deployment, schedule, scheduleNext, schedulePrevious, timeout, entrypoint, commands, installationId
* @property {string} search Search term to filter your list results. Max length: 256 chars.
* @property {boolean} overrideForCli
* @property {boolean} parseOutput
* @property {libClient | undefined} sdk
*/
/**
* @param {FunctionsListRequestParams} params
*/
const functionsList = async ({queries,search,parseOutput = true, overrideForCli = false, sdk = undefined, console}) => {
let client = !sdk ? await sdkForProject() :
sdk;
let apiPath = '/functions';
let payload = {};
if (typeof queries !== 'undefined') {
payload['queries'] = queries;
}
if (typeof search !== 'undefined') {
payload['search'] = search;
}
let response = undefined;
response = await client.call('get', apiPath, {
'content-type': 'application/json',
}, payload);
if (parseOutput) {
if(console) {
showConsoleLink('functions', 'list');
} else {
parse(response)
}
}
return response;
}
/**
* @typedef {Object} FunctionsCreateRequestParams
* @property {string} functionId Function ID. Choose a custom ID or generate a random ID with 'ID.unique()'. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.
* @property {string} name Function name. Max length: 128 chars.
* @property {Runtime} runtime Execution runtime.
* @property {string[]} execute An array of role strings with execution permissions. By default no user is granted with any execute permissions. [learn more about roles](https://appwrite.io/docs/permissions#permission-roles). Maximum of 100 roles are allowed, each 64 characters long.
* @property {string[]} events Events list. Maximum of 100 events are allowed.
* @property {string} schedule Schedule CRON syntax.
* @property {number} timeout Function maximum execution time in seconds.
* @property {boolean} enabled Is function enabled? When set to 'disabled', users cannot access the function but Server SDKs with and API key can still access the function. No data is lost when this is toggled.
* @property {boolean} logging Whether executions will be logged. When set to false, executions will not be logged, but will reduce resource used by your Appwrite project.
* @property {string} entrypoint Entrypoint File. This path is relative to the "providerRootDirectory".
* @property {string} commands Build Commands.
* @property {string[]} scopes List of scopes allowed for API key auto-generated for every execution. Maximum of 100 scopes are allowed.
* @property {string} installationId Appwrite Installation ID for VCS (Version Control System) deployment.
* @property {string} providerRepositoryId Repository ID of the repo linked to the function.
* @property {string} providerBranch Production branch for the repo linked to the function.
* @property {boolean} providerSilentMode Is the VCS (Version Control System) connection in silent mode for the repo linked to the function? In silent mode, comments will not be made on commits and pull requests.
* @property {string} providerRootDirectory Path to function code in the linked repo.
* @property {string} templateRepository Repository name of the template.
* @property {string} templateOwner The name of the owner of the template.
* @property {string} templateRootDirectory Path to function code in the template repo.
* @property {string} templateVersion Version (tag) for the repo linked to the function template.
* @property {string} specification Runtime specification for the function and builds.
* @property {boolean} overrideForCli
* @property {boolean} parseOutput
* @property {libClient | undefined} sdk
*/
/**
* @param {FunctionsCreateRequestParams} params
*/
const functionsCreate = async ({functionId,name,runtime,execute,events,schedule,timeout,enabled,logging,entrypoint,commands,scopes,installationId,providerRepositoryId,providerBranch,providerSilentMode,providerRootDirectory,templateRepository,templateOwner,templateRootDirectory,templateVersion,specification,parseOutput = true, overrideForCli = false, sdk = undefined}) => {
let client = !sdk ? await sdkForProject() :
sdk;
let apiPath = '/functions';
let payload = {};
if (typeof functionId !== 'undefined') {
payload['functionId'] = functionId;
}
if (typeof name !== 'undefined') {
payload['name'] = name;
}
if (typeof runtime !== 'undefined') {
payload['runtime'] = runtime;
}
execute = execute === true ? [] : execute;
if (typeof execute !== 'undefined') {
payload['execute'] = execute;
}
events = events === true ? [] : events;
if (typeof events !== 'undefined') {
payload['events'] = events;
}
if (typeof schedule !== 'undefined') {
payload['schedule'] = schedule;
}
if (typeof timeout !== 'undefined') {
payload['timeout'] = timeout;
}
if (typeof enabled !== 'undefined') {
payload['enabled'] = enabled;
}
if (typeof logging !== 'undefined') {
payload['logging'] = logging;
}
if (typeof entrypoint !== 'undefined') {
payload['entrypoint'] = entrypoint;
}
if (typeof commands !== 'undefined') {
payload['commands'] = commands;
}
scopes = scopes === true ? [] : scopes;
if (typeof scopes !== 'undefined') {
payload['scopes'] = scopes;
}
if (typeof installationId !== 'undefined') {
payload['installationId'] = installationId;
}
if (typeof providerRepositoryId !== 'undefined') {
payload['providerRepositoryId'] = providerRepositoryId;
}
if (typeof providerBranch !== 'undefined') {
payload['providerBranch'] = providerBranch;
}
if (typeof providerSilentMode !== 'undefined') {
payload['providerSilentMode'] = providerSilentMode;
}
if (typeof providerRootDirectory !== 'undefined') {
payload['providerRootDirectory'] = providerRootDirectory;
}
if (typeof templateRepository !== 'undefined') {
payload['templateRepository'] = templateRepository;
}
if (typeof templateOwner !== 'undefined') {
payload['templateOwner'] = templateOwner;
}
if (typeof templateRootDirectory !== 'undefined') {
payload['templateRootDirectory'] = templateRootDirectory;
}
if (typeof templateVersion !== 'undefined') {
payload['templateVersion'] = templateVersion;
}
if (typeof specification !== 'undefined') {
payload['specification'] = specification;
}
let response = undefined;
response = await client.call('post', apiPath, {
'content-type': 'application/json',
}, payload);
if (parseOutput) {
parse(response)
}
return response;
}
/**
* @typedef {Object} FunctionsListRuntimesRequestParams
* @property {boolean} overrideForCli
* @property {boolean} parseOutput
* @property {libClient | undefined} sdk
*/
/**
* @param {FunctionsListRuntimesRequestParams} params
*/
const functionsListRuntimes = async ({parseOutput = true, overrideForCli = false, sdk = undefined}) => {
let client = !sdk ? await sdkForProject() :
sdk;
let apiPath = '/functions/runtimes';
let payload = {};
let response = undefined;
response = await client.call('get', apiPath, {
'content-type': 'application/json',
}, payload);
if (parseOutput) {
parse(response)
}
return response;
}
/**
* @typedef {Object} FunctionsListSpecificationsRequestParams
* @property {boolean} overrideForCli
* @property {boolean} parseOutput
* @property {libClient | undefined} sdk
*/
/**
* @param {FunctionsListSpecificationsRequestParams} params
*/
const functionsListSpecifications = async ({parseOutput = true, overrideForCli = false, sdk = undefined, console}) => {
let client = !sdk ? await sdkForProject() :
sdk;
let apiPath = '/functions/specifications';
let payload = {};
let response = undefined;
response = await client.call('get', apiPath, {
'content-type': 'application/json',
}, payload);
if (parseOutput) {
if(console) {
showConsoleLink('functions', 'listSpecifications');
} else {
parse(response)
}
}
return response;
}
/**
* @typedef {Object} FunctionsListTemplatesRequestParams
* @property {string[]} runtimes List of runtimes allowed for filtering function templates. Maximum of 100 runtimes are allowed.
* @property {string[]} useCases List of use cases allowed for filtering function templates. Maximum of 100 use cases are allowed.
* @property {number} limit Limit the number of templates returned in the response. Default limit is 25, and maximum limit is 5000.
* @property {number} offset Offset the list of returned templates. Maximum offset is 5000.
* @property {boolean} overrideForCli
* @property {boolean} parseOutput
* @property {libClient | undefined} sdk
*/
/**
* @param {FunctionsListTemplatesRequestParams} params
*/
const functionsListTemplates = async ({runtimes,useCases,limit,offset,parseOutput = true, overrideForCli = false, sdk = undefined, console}) => {
let client = !sdk ? await sdkForProject() :
sdk;
let apiPath = '/functions/templates';
let payload = {};
if (typeof runtimes !== 'undefined') {
payload['runtimes'] = runtimes;
}
if (typeof useCases !== 'undefined') {
payload['useCases'] = useCases;
}
if (typeof limit !== 'undefined') {
payload['limit'] = limit;
}
if (typeof offset !== 'undefined') {
payload['offset'] = offset;
}
let response = undefined;
response = await client.call('get', apiPath, {
'content-type': 'application/json',
}, payload);
if (parseOutput) {
if(console) {
showConsoleLink('functions', 'listTemplates');
} else {
parse(response)
}
}
return response;
}
/**
* @typedef {Object} FunctionsGetTemplateRequestParams
* @property {string} templateId Template ID.
* @property {boolean} overrideForCli
* @property {boolean} parseOutput
* @property {libClient | undefined} sdk
*/
/**
* @param {FunctionsGetTemplateRequestParams} params
*/
const functionsGetTemplate = async ({templateId,parseOutput = true, overrideForCli = false, sdk = undefined, console}) => {
let client = !sdk ? await sdkForProject() :
sdk;
let apiPath = '/functions/templates/{templateId}'.replace('{templateId}', templateId);
let payload = {};
let response = undefined;
response = await client.call('get', apiPath, {
'content-type': 'application/json',
}, payload);
if (parseOutput) {
if(console) {
showConsoleLink('functions', 'getTemplate', templateId);
} else {
parse(response)
}
}
return response;
}
/**
* @typedef {Object} FunctionsGetUsageRequestParams
* @property {FunctionUsageRange} range Date range.
* @property {boolean} overrideForCli
* @property {boolean} parseOutput
* @property {libClient | undefined} sdk
*/
/**
* @param {FunctionsGetUsageRequestParams} params
*/
const functionsGetUsage = async ({range,parseOutput = true, overrideForCli = false, sdk = undefined}) => {
let client = !sdk ? await sdkForProject() :
sdk;
let apiPath = '/functions/usage';
let payload = {};
if (typeof range !== 'undefined') {
payload['range'] = range;
}
let response = undefined;
response = await client.call('get', apiPath, {
'content-type': 'application/json',
}, payload);
if (parseOutput) {
parse(response)
}
return response;
}
/**
* @typedef {Object} FunctionsGetRequestParams
* @property {string} functionId Function ID.
* @property {boolean} overrideForCli
* @property {boolean} parseOutput
* @property {libClient | undefined} sdk
*/
/**
* @param {FunctionsGetRequestParams} params
*/
const functionsGet = async ({functionId,parseOutput = true, overrideForCli = false, sdk = undefined, console}) => {
let client = !sdk ? await sdkForProject() :
sdk;
let apiPath = '/functions/{functionId}'.replace('{functionId}', functionId);
let payload = {};
let response = undefined;
response = await client.call('get', apiPath, {
'content-type': 'application/json',
}, payload);
if (parseOutput) {
if(console) {
showConsoleLink('functions', 'get', functionId);
} else {
parse(response)
}
}
return response;
}
/**
* @typedef {Object} FunctionsUpdateRequestParams
* @property {string} functionId Function ID.
* @property {string} name Function name. Max length: 128 chars.
* @property {Runtime} runtime Execution runtime.
* @property {string[]} execute An array of role strings with execution permissions. By default no user is granted with any execute permissions. [learn more about roles](https://appwrite.io/docs/permissions#permission-roles). Maximum of 100 roles are allowed, each 64 characters long.
* @property {string[]} events Events list. Maximum of 100 events are allowed.
* @property {string} schedule Schedule CRON syntax.
* @property {number} timeout Maximum execution time in seconds.
* @property {boolean} enabled Is function enabled? When set to 'disabled', users cannot access the function but Server SDKs with and API key can still access the function. No data is lost when this is toggled.
* @property {boolean} logging Whether executions will be logged. When set to false, executions will not be logged, but will reduce resource used by your Appwrite project.
* @property {string} entrypoint Entrypoint File. This path is relative to the "providerRootDirectory".
* @property {string} commands Build Commands.
* @property {string[]} scopes List of scopes allowed for API Key auto-generated for every execution. Maximum of 100 scopes are allowed.
* @property {string} installationId Appwrite Installation ID for VCS (Version Controle System) deployment.
* @property {string} providerRepositoryId Repository ID of the repo linked to the function
* @property {string} providerBranch Production branch for the repo linked to the function
* @property {boolean} providerSilentMode Is the VCS (Version Control System) connection in silent mode for the repo linked to the function? In silent mode, comments will not be made on commits and pull requests.
* @property {string} providerRootDirectory Path to function code in the linked repo.
* @property {string} specification Runtime specification for the function and builds.
* @property {boolean} overrideForCli
* @property {boolean} parseOutput
* @property {libClient | undefined} sdk
*/
/**
* @param {FunctionsUpdateRequestParams} params
*/
const functionsUpdate = async ({functionId,name,runtime,execute,events,schedule,timeout,enabled,logging,entrypoint,commands,scopes,installationId,providerRepositoryId,providerBranch,providerSilentMode,providerRootDirectory,specification,parseOutput = true, overrideForCli = false, sdk = undefined}) => {
let client = !sdk ? await sdkForProject() :
sdk;
let apiPath = '/functions/{functionId}'.replace('{functionId}', functionId);
let payload = {};
if (typeof name !== 'undefined') {
payload['name'] = name;
}
if (typeof runtime !== 'undefined') {
payload['runtime'] = runtime;
}
execute = execute === true ? [] : execute;
if (typeof execute !== 'undefined') {
payload['execute'] = execute;
}
events = events === true ? [] : events;
if (typeof events !== 'undefined') {
payload['events'] = events;
}
if (typeof schedule !== 'undefined') {
payload['schedule'] = schedule;
}
if (typeof timeout !== 'undefined') {
payload['timeout'] = timeout;
}
if (typeof enabled !== 'undefined') {
payload['enabled'] = enabled;
}
if (typeof logging !== 'undefined') {
payload['logging'] = logging;
}
if (typeof entrypoint !== 'undefined') {
payload['entrypoint'] = entrypoint;
}
if (typeof commands !== 'undefined') {
payload['commands'] = commands;
}
scopes = scopes === true ? [] : scopes;
if (typeof scopes !== 'undefined') {
payload['scopes'] = scopes;
}
if (typeof installationId !== 'undefined') {
payload['installationId'] = installationId;
}
if (typeof providerRepositoryId !== 'undefined') {
payload['providerRepositoryId'] = providerRepositoryId;
}
if (typeof providerBranch !== 'undefined') {
payload['providerBranch'] = providerBranch;
}
if (typeof providerSilentMode !== 'undefined') {
payload['providerSilentMode'] = providerSilentMode;
}
if (typeof providerRootDirectory !== 'undefined') {
payload['providerRootDirectory'] = providerRootDirectory;
}
if (typeof specification !== 'undefined') {
payload['specification'] = specification;
}
let response = undefined;
response = await client.call('put', apiPath, {
'content-type': 'application/json',
}, payload);
if (parseOutput) {
parse(response)
}
return response;
}
/**
* @typedef {Object} FunctionsDeleteRequestParams
* @property {string} functionId Function ID.
* @property {boolean} overrideForCli
* @property {boolean} parseOutput
* @property {libClient | undefined} sdk
*/
/**
* @param {FunctionsDeleteRequestParams} params
*/
const functionsDelete = async ({functionId,parseOutput = true, overrideForCli = false, sdk = undefined}) => {
let client = !sdk ? await sdkForProject() :
sdk;
let apiPath = '/functions/{functionId}'.replace('{functionId}', functionId);
let payload = {};
let response = undefined;
response = await client.call('delete', apiPath, {
'content-type': 'application/json',
}, payload);
if (parseOutput) {
parse(response)
}
return response;
}
/**
* @typedef {Object} FunctionsListDeploymentsRequestParams
* @property {string} functionId Function ID.
* @property {string[]} queries Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https://appwrite.io/docs/queries). Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: size, buildId, activate, entrypoint, commands, type, size
* @property {string} search Search term to filter your list results. Max length: 256 chars.
* @property {boolean} overrideForCli
* @property {boolean} parseOutput
* @property {libClient | undefined} sdk
*/
/**
* @param {FunctionsListDeploymentsRequestParams} params
*/
const functionsListDeployments = async ({functionId,queries,search,parseOutput = true, overrideForCli = false, sdk = undefined, console}) => {
let client = !sdk ? await sdkForProject() :
sdk;
let apiPath = '/functions/{functionId}/deployments'.replace('{functionId}', functionId);
let payload = {};
if (typeof queries !== 'undefined') {
payload['queries'] = queries;
}
if (typeof search !== 'undefined') {
payload['search'] = search;
}
let response = undefined;
response = await client.call('get', apiPath, {
'content-type': 'application/json',
}, payload);
if (parseOutput) {
if(console) {
showConsoleLink('functions', 'listDeployments', functionId);
} else {
parse(response)
}
}
return response;
}
/**
* @typedef {Object} FunctionsCreateDeploymentRequestParams
* @property {string} functionId Function ID.
* @property {string} code Gzip file with your code package. When used with the Appwrite CLI, pass the path to your code directory, and the CLI will automatically package your code. Use a path that is within the current directory.
* @property {boolean} activate Automatically activate the deployment when it is finished building.
* @property {string} entrypoint Entrypoint File.
* @property {string} commands Build Commands.
* @property {boolean} overrideForCli
* @property {boolean} parseOutput
* @property {libClient | undefined} sdk
* @property {CallableFunction} onProgress
*/
/**
* @param {FunctionsCreateDeploymentRequestParams} params
*/
const functionsCreateDeployment = async ({functionId,code,activate,entrypoint,commands,parseOutput = true, overrideForCli = false, sdk = undefined,onProgress = () => {}}) => {
let client = !sdk ? await sdkForProject() :
sdk;
let apiPath = '/functions/{functionId}/deployments'.replace('{functionId}', functionId);
let payload = {};
if (typeof entrypoint !== 'undefined') {
payload['entrypoint'] = entrypoint;
}
if (typeof commands !== 'undefined') {
payload['commands'] = commands;
}
const folderPath = fs.realpathSync(code);
if (!fs.lstatSync(folderPath).isDirectory()) {
throw new Error('The path is not a directory.');
}
const ignorer = ignore();
const func = localConfig.getFunction(functionId);
ignorer.add('.appwrite');
if (func.ignore) {
ignorer.add(func.ignore);
} else if (fs.existsSync(pathLib.join(code, '.gitignore'))) {
ignorer.add(fs.readFileSync(pathLib.join(code, '.gitignore')).toString());
}
const files = getAllFiles(code).map((file) => pathLib.relative(code, file)).filter((file) => !ignorer.ignores(file));
const archiveFileName = `${functionId}-code.tar.gz`;
await tar
.create({
gzip: true,
sync: true,
cwd: folderPath,
file: archiveFileName
}, files);
let archivePath = fs.realpathSync(archiveFileName)
if (typeof archivePath !== 'undefined') {
payload['code'] = archivePath;
code = archivePath;
}
const filePath = fs.realpathSync(code);
const nodeStream = fs.createReadStream(filePath);
const stream = convertReadStreamToReadableStream(nodeStream);
if (typeof filePath !== 'undefined') {
code = { type: 'file', stream, filename: pathLib.basename(filePath), size: fs.statSync(filePath).size };
payload['code'] = code
}
if (typeof activate !== 'undefined') {
payload['activate'] = activate;
}
const size = code.size;
const apiHeaders = {
'content-type': 'multipart/form-data',
};
let id = undefined;
let response = undefined;
let chunksUploaded = 0;
let currentChunk = 1;
let currentPosition = 0;
let uploadableChunk = new Uint8Array(client.CHUNK_SIZE);
const uploadChunk = async (lastUpload = false) => {
if(currentChunk <= chunksUploaded) {
return;
}
const start = ((currentChunk - 1) * client.CHUNK_SIZE);
let end = start + currentPosition - 1;
if(!lastUpload || currentChunk !== 1) {
apiHeaders['content-range'] = 'bytes ' + start + '-' + end + '/' + size;
}
let uploadableChunkTrimmed;
if(currentPosition + 1 >= client.CHUNK_SIZE) {
uploadableChunkTrimmed = uploadableChunk;
} else {
uploadableChunkTrimmed = new Uint8Array(currentPosition);
for(let i = 0; i <= currentPosition; i++) {
uploadableChunkTrimmed[i] = uploadableChunk[i];
}
}
if (id) {
apiHeaders['x-appwrite-id'] = id;
}
payload['code'] = { type: 'file', file: new File([uploadableChunkTrimmed], code.filename), filename: code.filename };
response = await client.call('post', apiPath, apiHeaders, payload);
if (!id) {
id = response['$id'];
}
if (onProgress !== null) {
onProgress({
$id: response['$id'],
progress: Math.min((currentChunk) * client.CHUNK_SIZE, size) / size * 100,
sizeUploaded: end+1,
chunksTotal: response['chunksTotal'],
chunksUploaded: response['chunksUploaded']
});
}
uploadableChunk = new Uint8Array(client.CHUNK_SIZE);
currentChunk++;
currentPosition = 0;
}
for await (const chunk of code.stream) {
for(const b of chunk) {
uploadableChunk[currentPosition] = b;
currentPosition++;
if(currentPosition >= client.CHUNK_SIZE) {
await uploadChunk();
currentPosition = 0;
}
}
}
if (currentPosition > 0) { // Check if there's any remaining data for the last chunk
await uploadChunk(true);
}
await fs.unlink(filePath,()=>{});
if (parseOutput) {
parse(response)
}
return response;
}
/**
* @typedef {Object} FunctionsGetDeploymentRequestParams
* @property {string} functionId Function ID.
* @property {string} deploymentId Deployment ID.
* @property {boolean} overrideForCli
* @property {boolean} parseOutput
* @property {libClient | undefined} sdk
*/
/**
* @param {FunctionsGetDeploymentRequestParams} params
*/
const functionsGetDeployment = async ({functionId,deploymentId,parseOutput = true, overrideForCli = false, sdk = undefined, console}) => {
let client = !sdk ? await sdkForProject() :
sdk;
let apiPath = '/functions/{functionId}/deployments/{deploymentId}'.replace('{functionId}', functionId).replace('{deploymentId}', deploymentId);
let payload = {};
let response = undefined;
response = await client.call('get', apiPath, {
'content-type': 'application/json',
}, payload);
if (parseOutput) {
if(console) {
showConsoleLink('functions', 'getDeployment', functionId, deploymentId);
} else {
parse(response)
}
}
return response;
}
/**
* @typedef {Object} FunctionsUpdateDeploymentRequestParams
* @property {string} functionId Function ID.
* @property {string} deploymentId Deployment ID.
* @property {boolean} overrideForCli
* @property {boolean} parseOutput
* @property {libClient | undefined} sdk
*/
/**
* @param {FunctionsUpdateDeploymentRequestParams} params
*/
const functionsUpdateDeployment = async ({functionId,deploymentId,parseOutput = true, overrideForCli = false, sdk = undefined}) => {
let client = !sdk ? await sdkForProject() :
sdk;
let apiPath = '/functions/{functionId}/deployments/{deploymentId}'.replace('{functionId}', functionId).replace('{deploymentId}', deploymentId);
let payload = {};
let response = undefined;
response = await client.call('patch', apiPath, {
'content-type': 'application/json',
}, payload);
if (parseOutput) {
parse(response)
}
return response;
}
/**
* @typedef {Object} FunctionsDeleteDeploymentRequestParams
* @property {string} functionId Function ID.
* @property {string} deploymentId Deployment ID.
* @property {boolean} overrideForCli
* @property {boolean} parseOutput
* @property {libClient | undefined} sdk
*/
/**
* @param {FunctionsDeleteDeploymentRequestParams} params
*/
const functionsDeleteDeployment = async ({functionId,deploymentId,parseOutput = true, overrideForCli = false, sdk = undefined}) => {
let client = !sdk ? await sdkForProject() :
sdk;
let apiPath = '/functions/{functionId}/deployments/{deploymentId}'.replace('{functionId}', functionId).replace('{deploymentId}', deploymentId);
let payload = {};
let response = undefined;
response = await client.call('delete', apiPath, {
'content-type': 'application/json',
}, payload);
if (parseOutput) {
parse(response)
}
return response;
}
/**
* @typedef {Object} FunctionsCreateBuildRequestParams
* @property {string} functionId Function ID.
* @property {string} deploymentId Deployment ID.
* @property {string} buildId Build unique ID.
* @property {boolean} overrideForCli
* @property {boolean} parseOutput
* @property {libClient | undefined} sdk
*/
/**
* @param {FunctionsCreateBuildRequestParams} params
*/
const functionsCreateBuild = async ({functionId,deploymentId,buildId,parseOutput = true, overrideForCli = false, sdk = undefined}) => {
let client = !sdk ? await sdkForProject() :
sdk;
let apiPath = '/functions/{functionId}/deployments/{deploymentId}/build'.replace('{functionId}', functionId).replace('{deploymentId}', deploymentId);
let payload = {};
if (typeof buildId !== 'undefined') {
payload['buildId'] = buildId;
}
let response = undefined;
response = await client.call('post', apiPath, {
'content-type': 'application/json',
}, payload);
if (parseOutput) {
parse(response)
}
return response;
}
/**
* @typedef {Object} FunctionsUpdateDeploymentBuildRequestParams
* @property {string} functionId Function ID.
* @property {string} deploymentId Deployment ID.
* @property {boolean} overrideForCli
* @property {boolean} parseOutput
* @property {libClient | undefined} sdk
*/
/**
* @param {FunctionsUpdateDeploymentBuildRequestParams} params
*/
const functionsUpdateDeploymentBuild = async ({functionId,deploymentId,parseOutput = true, overrideForCli = false, sdk = undefined}) => {
let client = !sdk ? await sdkForProject() :
sdk;
let apiPath = '/functions/{functionId}/deployments/{deploymentId}/build'.replace('{functionId}', functionId).replace('{deploymentId}', deploymentId);
let payload = {};
let response = undefined;
response = await client.call('patch', apiPath, {
'content-type': 'application/json',
}, payload);
if (parseOutput) {
parse(response)
}
return response;
}
/**
* @typedef {Object} FunctionsGetDeploymentDownloadRequestParams
* @property {string} functionId Function ID.
* @property {string} deploymentId Deployment ID.
* @property {boolean} overrideForCli
* @property {boolean} parseOutput
* @property {libClient | undefined} sdk
* @property {string} destination
*/
/**
* @param {FunctionsGetDeploymentDownloadRequestParams} params
*/
const functionsGetDeploymentDownload = async ({functionId,deploymentId,parseOutput = true, overrideForCli = false, sdk = undefined, destination, console}) => {
let client = !sdk ? await sdkForProject() :
sdk;
let apiPath = '/functions/{functionId}/deployments/{deploymentId}/download'.replace('{functionId}', functionId).replace('{deploymentId}', deploymentId);
let payload = {};
if (!overrideForCli) {
payload['project'] = localConfig.getProject().projectId
payload['key'] = globalConfig.getKey();
const queryParams = new URLSearchParams(payload);
apiPath = `${globalConfig.getEndpoint()}${apiPath}?${queryParams.toString()}`;
}
let response = undefined;
response = await client.call('get', apiPath, {
'content-type': 'application/json',
}, payload, 'arraybuffer');
if (overrideForCli) {
response = Buffer.from(response);
}
fs.writeFileSync(destination, response);
if (parseOutput) {
if(console) {
showConsoleLink('functions', 'getDeploymentDownload', functionId, deploymentId);
} else {
parse(response)
}
}
return response;
}
/**
* @typedef {Object} FunctionsListExecutionsRequestParams
* @property {string} functionId Function ID.
* @property {string[]} queries Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https://appwrite.io/docs/queries). Maximum of 100 queries are allowed, each 4096 characters long. You may filter on the following attributes: trigger, status, responseStatusCode, duration, requestMethod, requestPath, deploymentId
* @property {string} search Search term to filter your list results. Max length: 256 chars.
* @property {boolean} overrideForCli
* @property {boolean} parseOutput
* @property {libClient | undefined} sdk
*/
/**
* @param {FunctionsListExecutionsRequestParams} params
*/
const functionsListExecutions = async ({functionId,queries,search,parseOutput = true, overrideForCli = false, sdk = undefined, console}) => {
let client = !sdk ? await sdkForProject() :
sdk;
let apiPath = '/functions/{functionId}/executions'.replace('{functionId}', functionId);
let payload = {};
if (typeof queries !== 'undefined') {
payload['queries'] = queries;
}
if (typeof search !== 'undefined') {