-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcli.py
697 lines (632 loc) · 25.7 KB
/
cli.py
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
import click
import platform
from tabulate import tabulate
from girder_client import GirderClient
from . import SlicerPackageManagerError, SlicerPackageClient, __version__, Constant
w = Constant.WIDTH
def _getOs():
return {
"Linux": "linux",
"Darwin": "macosx",
"Windows": "win",
}.get(platform.system(), None)
class SlicerPackageCli(SlicerPackageClient):
"""
A command line Python client for interacting with a Girder instance's
RESTful api, specifically for performing uploads into a Girder instance.
"""
def __init__(self, username, password, host=None, port=None, apiRoot=None,
scheme=None, apiUrl=None, apiKey=None):
"""
Initialization function to create a SlicerPackageCli instance, will attempt
to authenticate with the designated Girder instance. Aside from username, password,
apiKey, and sslVerify, all other kwargs are passed directly through to the
:py:class:`girder_client.GirderClient` base class constructor.
:param username: username to authenticate to Girder instance.
:param password: password to authenticate to Girder instance, leave
this blank to be prompted.
"""
def _progressBar(*args, **kwargs):
bar = click.progressbar(*args, **kwargs)
bar.bar_template = "[%(bar)s] %(info)s %(label)s"
bar.show_percent = True
bar.show_pos = True
return bar
super().__init__(host=host, port=port, apiRoot=apiRoot, scheme=scheme, apiUrl=apiUrl,
progressReporterCls=_progressBar)
interactive = password is None
if apiKey:
self.authenticate(apiKey=apiKey)
elif username:
self.authenticate(username, password, interactive=interactive)
def _requestFunc(self, *args, **kwargs):
return super()._requestFunc(*args, **kwargs)
class _HiddenOption(click.Option):
def get_help_record(self, ctx):
pass
class _AdvancedOption(click.Option):
pass
class _Group(click.Group):
def format_options(self, ctx, formatter):
opts = []
advanced_opts = []
for param in self.get_params(ctx):
rv = param.get_help_record(ctx)
if rv is None:
continue
if isinstance(param, _AdvancedOption):
advanced_opts.append(rv)
else:
opts.append(rv)
if opts:
with formatter.section('Options'):
formatter.write_dl(opts)
if advanced_opts:
with formatter.section('Advanced Options'):
formatter.write_dl(advanced_opts)
self.format_commands(ctx, formatter)
_CONTEXT_SETTINGS = {'help_option_names': ['-h', '--help']}
@click.group(context_settings=_CONTEXT_SETTINGS)
@click.option('--api-url', default=None,
help='RESTful API URL '
'(e.g https://girder.example.com:443/%s)' % GirderClient.DEFAULT_API_ROOT)
@click.option('--api-key', envvar='GIRDER_API_KEY', default=None,
help='[default: GIRDER_API_KEY env. variable]')
@click.option('--username', default=None)
@click.option('--password', default=None)
# Advanced options
@click.option('--host', default=None,
cls=_AdvancedOption,
help="[default: %s]" % GirderClient.DEFAULT_HOST)
@click.option('--scheme', default=None,
cls=_AdvancedOption,
help="[default: %s if %s else %s]" % (
GirderClient.getDefaultScheme(GirderClient.DEFAULT_HOST),
GirderClient.DEFAULT_HOST,
GirderClient.getDefaultScheme("girder.example.com")))
@click.option('--port', default=None,
cls=_AdvancedOption,
help="[default: %s if %s; %s if %s else %s]" % (
GirderClient.DEFAULT_HTTPS_PORT, "https",
GirderClient.DEFAULT_LOCALHOST_PORT, "localhost",
GirderClient.DEFAULT_HTTP_PORT,
))
@click.option('--api-root', default=None,
help='relative path to the Girder REST API '
'[default: %s]' % GirderClient.DEFAULT_API_ROOT,
show_default=True,
cls=_AdvancedOption)
@click.option('--no-ssl-verify', is_flag=True, default=False,
help='Disable SSL Verification',
show_default=True,
cls=_AdvancedOption)
@click.option('--certificate', default=None,
help='Specify path to SSL certificate',
show_default=True,
cls=_AdvancedOption)
@click.version_option(version=__version__, prog_name='Girder command line interface')
@click.pass_context
def main(ctx, username, password,
api_key, api_url, scheme, host, port, api_root,
no_ssl_verify, certificate):
"""
The recommended way to use credentials is to first generate an API key
and then specify the ``api-key`` argument or set the ``GIRDER_API_KEY``
environment variable.
The client also supports ``username`` and ``password`` args. If only the
``username`` is specified, the client will prompt the user to interactively
input his/her password.
"""
# --api-url and URL by part arguments are mutually exclusive
url_part_options = ['host', 'scheme', 'port', 'api_root']
has_api_url = ctx.params.get('api_url', None)
for name in url_part_options:
has_url_part = ctx.params.get(name, None)
if has_api_url and has_url_part:
msg = f'Option "--api-url" and option "--{name.replace("_", "-")}" are mutually exclusive.'
raise click.BadArgumentUsage(msg)
if certificate and no_ssl_verify:
msg = 'Option "--no-ssl-verify" and option "--certificate" are mutually exclusive.'
raise click.BadArgumentUsage(msg)
ctx.obj = SlicerPackageCli(
username, password, host=host, port=port, apiRoot=api_root,
scheme=scheme, apiUrl=api_url, apiKey=api_key)
if certificate and ctx.obj.scheme != 'https':
msg = 'A URI scheme of "https" is required for option "--certificate"'
raise click.BadArgumentUsage(msg)
@main.group(context_settings=_CONTEXT_SETTINGS)
@click.pass_obj
def app(_sc):
pass
@main.group(context_settings=_CONTEXT_SETTINGS)
@click.pass_obj
def release(_sc):
pass
@main.group(context_settings=_CONTEXT_SETTINGS)
@click.pass_obj
def draft(_sc):
pass
@main.group(context_settings=_CONTEXT_SETTINGS)
@click.pass_obj
def extension(_sc):
pass
@main.group(context_settings=_CONTEXT_SETTINGS)
@click.pass_obj
def package(_sc):
pass
@app.command('create')
@click.argument('name')
@click.option('--desc', default=None,
help='Description of the application',
show_default=True,
cls=_AdvancedOption)
@click.option('--coll_id', default=None, envvar='COLLECTION_ID',
help='ID of an existing collection',
show_default=True,
cls=_AdvancedOption)
@click.option('--coll_name', default=None,
help='Name of the new collection',
show_default=True,
cls=_AdvancedOption)
@click.option('--coll_desc', default=None,
help='Description of the new collection',
show_default=True,
cls=_AdvancedOption)
@click.option('--public/--private', is_flag=True, default=None,
help='Whether the collection should be publicly visible [default: public]',
show_default=False,
cls=_AdvancedOption)
@click.pass_obj
def _cli_createApp(sc: SlicerPackageClient, *args, **kwargs):
"""
Create a new application.
"""
try:
application = sc.createApp(*args, **kwargs)
print('%s (%s) %s' % (application['_id'], application['name'], 'CREATED'))
except SlicerPackageManagerError as exc_info:
print(exc_info)
@app.command('list')
@click.option('--coll_id', default=None, envvar='COLLECTION_ID',
help='ID of an existing collection',
show_default=True,
cls=_AdvancedOption)
@click.option('--name', default=None,
help='Name of the application',
cls=_AdvancedOption)
@click.pass_obj
def _cli_listApp(sc: SlicerPackageClient, *args, **kwargs):
"""
List all the applications.
"""
applications = sc.listApp(*args, **kwargs)
table = []
for application in applications:
table.append([application['name'], application['_id']])
print(tabulate(
table,
headers=['NAME', 'APPLICATION ID'],
tablefmt="simple", numalign="left"))
@app.command('delete')
@click.argument('name')
@click.option('--coll_id', default=None, envvar='COLLECTION_ID',
help='ID of an existing collection',
show_default=True,
cls=_AdvancedOption)
@click.pass_obj
def _cli_deleteApp(sc: SlicerPackageClient, *args, **kwargs):
"""
Delete an application.
"""
try:
application = sc.deleteApp(*args, **kwargs)
print('%s (%s) %s' % (application['name'], application['_id'], 'DELETED'))
except SlicerPackageManagerError as exc_info:
print(exc_info)
@release.command('create')
@click.argument('app_name', required=True)
@click.argument('name', required=True)
@click.argument('revision', required=True)
@click.option('--coll_id', default=None, envvar='COLLECTION_ID',
help='ID of an existing collection',
show_default=True,
cls=_AdvancedOption)
@click.option('--desc', default=None,
help='Description of the release',
cls=_AdvancedOption)
@click.pass_obj
def _cli_createRelease(sc: SlicerPackageClient, *args, **kwargs):
"""
Create a new release.
"""
try:
rls = sc.createRelease(*args, **kwargs)
print('%s %s (%s) %s' % (rls['name'], rls['meta']['revision'], rls['_id'], 'CREATED'))
except SlicerPackageManagerError as exc_info:
print(exc_info)
@release.command('list')
@click.argument('app_name')
@click.option('--coll_id', default=None, envvar='COLLECTION_ID',
help='ID of an existing collection',
show_default=True,
cls=_AdvancedOption)
@click.pass_obj
def _cli_listRelease(sc: SlicerPackageClient, *args, **kwargs):
"""
List all the releases within an application.
"""
try:
releases = sc.listRelease(*args, **kwargs)
table = []
for rls in releases:
revision = rls.get('meta', {}).get('revision', '')
table.append([revision, rls['name'], rls['_id']])
print(tabulate(
table,
headers=['APP REVISION', 'NAME', 'RELEASE ID'],
tablefmt="simple", numalign="left"))
except SlicerPackageManagerError as exc_info:
print(exc_info)
@release.command('delete')
@click.argument('app_name')
@click.argument('name')
@click.option('--coll_id', default=None, envvar='COLLECTION_ID',
help='ID of an existing collection',
show_default=True,
cls=_AdvancedOption)
@click.pass_obj
def _cli_deleteRelease(sc: SlicerPackageClient, *args, **kwargs):
"""
Delete a release.
"""
try:
rls = sc.deleteRelease(*args, **kwargs)
print('%s %s (%s) %s' % (rls['name'], rls['meta']['revision'], rls['_id'], 'DELETED'))
except SlicerPackageManagerError as exc_info:
print(exc_info)
@draft.command('list')
@click.argument('app_name')
@click.option('--coll_id', default=None, envvar='COLLECTION_ID',
help='ID of an existing collection',
show_default=True,
cls=_AdvancedOption)
@click.option('--revision', default=None,
help='Revision of the draft release',
cls=_AdvancedOption)
@click.option('--limit', default=Constant.DEFAULT_LIMIT,
help='The limit number of listed releases',
cls=_AdvancedOption)
@click.option('--offset', default=0,
help='Offset of the list',
cls=_AdvancedOption)
@click.pass_obj
def _cli_listDraftRelease(sc: SlicerPackageClient, *args, **kwargs):
"""
List all the revisions of the default preview within an application.
"""
try:
releases = sc.listDraftRelease(*args, **kwargs)
table = []
for rls in releases:
revision = rls.get('meta', {}).get('revision', '')
table.append([revision, rls['name'], rls['_id']])
print(tabulate(
table,
headers=['APP REVISION', 'NAME', 'RELEASE ID'],
tablefmt="simple", numalign="left"))
except SlicerPackageManagerError as exc_info:
print(exc_info)
@draft.command('delete')
@click.argument('app_name')
@click.argument('revision')
@click.option('--coll_id', default=None, envvar='COLLECTION_ID',
help='ID of an existing collection',
show_default=True,
cls=_AdvancedOption)
@click.pass_obj
def _cli_deleteDraftRelease(sc: SlicerPackageClient, *args, **kwargs):
"""
Delete a specific revision within the Draft release.
"""
try:
rls = sc.deleteDraftRelease(*args, **kwargs)
print('%s %s (%s) %s' % (rls['name'], rls['meta']['revision'], rls['_id'], 'DELETED'))
except SlicerPackageManagerError as exc_info:
print(exc_info)
@extension.command('upload')
@click.argument('app_name')
@click.argument('filepath')
@click.option('--os', 'ext_os', default=_getOs(),
help='The target operating system of the package',
cls=_AdvancedOption)
@click.option('--arch', default='amd64',
help='Architecture that is supported by the extension',
cls=_AdvancedOption)
@click.option('--name', prompt=True,
help='The baseName of the extension',
cls=_AdvancedOption)
@click.option('--repo_type', default='',
help='Type of the repository where find the extension',
cls=_AdvancedOption)
@click.option('--repo_url', default='',
help='URL of the repository where find the extension',
cls=_AdvancedOption)
@click.option('--revision', default='0.0.1',
help='Revision of the extension',
cls=_AdvancedOption)
@click.option('--app_revision', prompt=True,
help='Revision of the application',
cls=_AdvancedOption)
@click.option('--desc', default='',
help='Description of the extension',
cls=_AdvancedOption)
@click.option('--icon_url', default='',
help="Url of the extension's logo",
cls=_AdvancedOption)
@click.option('--category', default=None,
help='Category of the extension',
cls=_AdvancedOption)
@click.option('--tier', default=5,
help='Tier of the extension',
cls=_AdvancedOption)
@click.option('--homepage', default='',
help='Url of the extension homepage',
cls=_AdvancedOption)
@click.option('--screenshots', default=None,
help='Space-separate list of URLs of screenshots for the extension.',
cls=_AdvancedOption)
@click.option('--contributors', default=None,
help='List of contributors of the extension.',
cls=_AdvancedOption)
@click.option('--dependency', default=None,
help='List of the required extensions to use this one.',
cls=_AdvancedOption)
@click.option('--coll_id', default=None, envvar='COLLECTION_ID',
help='ID of an existing collection',
show_default=True,
cls=_AdvancedOption)
@click.option('--force', default=False,
help='Force the upload',
cls=_AdvancedOption)
@click.pass_obj
def _cli_uploadExtension(sc: SlicerPackageClient, *args, **kwargs):
"""
Upload an extension.
"""
try:
print('Create the extension %s' % kwargs['name'])
ext = sc.uploadExtension(*args, **kwargs)
if ext == Constant.EXTENSION_AREADY_UP_TO_DATE:
print('Extension "%s" is already up-to-date\t(Extension Item updated)' % kwargs['name'])
elif ext == Constant.EXTENSION_NOW_UP_TO_DATE:
print('%s %s %s' % (kwargs['name'], 'UPLOADED', 'The extension is now up-to-date'))
else:
print('%s (%s) %s' % (ext['name'], ext['_id'], 'UPLOADED'))
except SlicerPackageManagerError as exc_info:
print(exc_info)
@extension.command('download')
@click.argument('app_name')
@click.argument('id_or_name')
@click.option('--coll_id', default=None, envvar='COLLECTION_ID',
help='ID of an existing collection',
show_default=True,
cls=_AdvancedOption)
@click.option('--dir_path', default=Constant.CURRENT_FOLDER,
help='Path to the directory where will be downloaded the extension',
cls=_AdvancedOption)
@click.pass_obj
def _cli_downloadExtension(sc: SlicerPackageClient, *args, **kwargs):
"""
Download an extension.
"""
try:
print('Start download...')
ext = sc.downloadExtension(*args, **kwargs)
print('%s (%s) %s [%s]' % (ext['name'], ext['_id'], 'DOWNLOADED', kwargs['dir_path']))
except SlicerPackageManagerError as exc_info:
print(exc_info)
@extension.command('list')
@click.argument('app_name')
@click.option('--coll_id', default=None, envvar='COLLECTION_ID',
help='ID of an existing collection',
show_default=True,
cls=_AdvancedOption)
@click.option('--name', default=None,
help='The baseName of the extension',
cls=_AdvancedOption)
@click.option('--os', 'ext_os', type=click.Choice(['win', 'linux', 'macosx']))
@click.option('--arch', type=click.Choice(['amd64', 'i386']))
@click.option('--app_revision', default=None,
help='The revision of the application',
cls=_AdvancedOption)
@click.option('--release', default=Constant.DRAFT_RELEASE_NAME,
help='List all extension within the release',
cls=_AdvancedOption)
@click.option('--query', default=None,
help='Text expected to be found in the extension name or description',
cls=_AdvancedOption)
@click.option('--limit', default=Constant.DEFAULT_LIMIT,
help='The limit number of listed extensions ',
cls=_AdvancedOption)
@click.option('--all', is_flag=True,
default=False,
help='List all the extension of the application',
cls=_AdvancedOption)
@click.pass_obj
def _cli_listExtension(sc: SlicerPackageClient, *args, **kwargs):
"""
List all the extensions within an application.
"""
try:
extensions = sc.listExtension(*args, **kwargs)
rls_list = sc.listRelease(app_name=kwargs['app_name'], coll_id=kwargs['coll_id'])
table = []
for ext in extensions:
release_name = None
for rls in rls_list:
if rls['meta']['revision'] == ext['meta']['app_revision']:
release_name = rls['name']
break
if not release_name:
release_name = Constant.DRAFT_RELEASE_NAME
table.append([ext['meta']['revision'], ext['name'], release_name,
ext['meta']['app_revision'], ext['_id']])
print(tabulate(
table,
headers=['REVISION', 'NAME', 'RELEASE NAME', 'APP REVISION', 'EXTENSION ID'],
tablefmt="simple", numalign="left"))
except SlicerPackageManagerError as exc_info:
print(exc_info)
@extension.command('delete')
@click.argument('app_name')
@click.argument('id_or_name')
@click.option('--coll_id', default=None, envvar='COLLECTION_ID',
help='ID of an existing collection',
show_default=True,
cls=_AdvancedOption)
@click.pass_obj
def _cli_deleteExtension(sc: SlicerPackageClient, *args, **kwargs):
"""
Delete an extension by ID or Name.
"""
try:
ext = sc.deleteExtension(*args, **kwargs)
print('%s %s (%s) %s' % (ext['name'], ext['meta']['revision'], ext['_id'], 'DELETED'))
except SlicerPackageManagerError as exc_info:
print(exc_info)
@package.command('upload')
@click.argument('app_name')
@click.argument('filepath')
@click.option('--os', 'pkg_os', default=_getOs(),
help='The target operating system of the package',
cls=_AdvancedOption)
@click.option('--arch', default='amd64',
help='Architecture that is supported by the package',
cls=_AdvancedOption)
@click.option('--name', prompt=True,
help='The baseName of the package',
cls=_AdvancedOption)
@click.option('--repo_type', default='',
help='Type of the repository where find the package',
cls=_AdvancedOption)
@click.option('--repo_url', default='',
help='URL of the repository where find the package',
cls=_AdvancedOption)
@click.option('--revision', prompt=True,
help='Revision of the application',
cls=_AdvancedOption)
@click.option('--version', prompt=True,
help='The version of the application',
cls=_AdvancedOption)
@click.option('--build_date', default=None,
help='Build date of the package. [default: <now>]',
cls=_AdvancedOption)
@click.option('--coll_id', default=None, envvar='COLLECTION_ID',
help='ID of an existing collection',
show_default=True,
cls=_AdvancedOption)
@click.option('--desc', default='',
help='Description of the package',
cls=_AdvancedOption)
@click.option('--pre_release', is_flag=True, default=None,
help='Boolean to specify if the package is ready to be distributed',
cls=_AdvancedOption)
@click.pass_obj
def _cli_uploadApplicationPackage(sc: SlicerPackageClient, *args, **kwargs):
"""
Upload an application package.
"""
try:
print('Create the application package %s' % kwargs['name'])
pkg = sc.uploadApplicationPackage(*args, **kwargs)
if pkg == Constant.PACKAGE_NOW_UP_TO_DATE:
print('%s %s %s' % (kwargs['name'], 'UPLOADED', 'The package is now up-to-date'))
else:
print('%s (%s) %s' % (pkg['name'], pkg['_id'], 'UPLOADED'))
except SlicerPackageManagerError as exc_info:
print(exc_info)
@package.command('download')
@click.argument('app_name')
@click.argument('id_or_name')
@click.option('--coll_id', default=None, envvar='COLLECTION_ID',
help='ID of an existing collection',
show_default=True,
cls=_AdvancedOption)
@click.option('--dir_path', default=Constant.CURRENT_FOLDER,
help='Path to the directory where will be downloaded the package',
cls=_AdvancedOption)
@click.pass_obj
def _cli_downloadApplicationPackage(sc: SlicerPackageClient, *args, **kwargs):
"""
Download an application package.
"""
try:
print('Start download...')
pkg = sc.downloadApplicationPackage(*args, **kwargs)
print('%s (%s) %s [%s]' % (pkg['name'], pkg['_id'], 'DOWNLOADED', kwargs['dir_path']))
except SlicerPackageManagerError as exc_info:
print(exc_info)
@package.command('list')
@click.argument('app_name')
@click.option('--coll_id', default=None, envvar='COLLECTION_ID',
help='ID of an existing collection',
show_default=True,
cls=_AdvancedOption)
@click.option('--name', default=None,
help='The baseName of the package',
cls=_AdvancedOption)
@click.option('--os', 'pkg_os', type=click.Choice(['win', 'linux', 'macosx']))
@click.option('--arch', type=click.Choice(['amd64', 'i386']))
@click.option('--revision', default=None,
help='The revision of the application',
cls=_AdvancedOption)
@click.option('--version', default=None,
help='The version of the application',
cls=_AdvancedOption)
@click.option('--release', default=None,
help='List all packages within the release',
cls=_AdvancedOption)
@click.option('--limit', default=Constant.DEFAULT_LIMIT,
help='The limit number of listed packages ',
cls=_AdvancedOption)
@click.pass_obj
def _cli_listApplicationPackage(sc: SlicerPackageClient, *args, **kwargs):
"""
List all the application packages within an application.
"""
try:
packages = sc.listApplicationPackage(*args, **kwargs)
rls_list = sc.listRelease(app_name=kwargs['app_name'], coll_id=kwargs['coll_id'])
table = []
for pkg in packages:
release_name = None
for rls in rls_list:
if rls['meta']['revision'] == pkg['meta']['revision']:
release_name = rls['name']
break
if not release_name:
release_name = Constant.DRAFT_RELEASE_NAME
table.append([pkg['meta']['revision'], pkg['meta']['version'], pkg['name'], release_name, pkg['_id']])
print(tabulate(
table,
headers=['APP REVISION', 'VERSION', 'NAME', 'RELEASE NAME', 'PACKAGE ID'],
tablefmt="simple", numalign="left", floatfmt=".1f"))
except SlicerPackageManagerError as exc_info:
print(exc_info)
@package.command('delete')
@click.argument('app_name')
@click.argument('id_or_name')
@click.option('--coll_id', default=None, envvar='COLLECTION_ID',
help='ID of an existing collection',
show_default=True,
cls=_AdvancedOption)
@click.pass_obj
def _cli_deleteApplicationPackage(sc: SlicerPackageClient, *args, **kwargs):
"""
Delete an application package by ID or Name.
"""
try:
pkg = sc.deleteApplicationPackage(*args, **kwargs)
print('%s %s (%s) %s' % (pkg['name'], pkg['meta']['revision'], pkg['_id'], 'DELETED'))
except SlicerPackageManagerError as exc_info:
print(exc_info)