Skip to content

Commit

Permalink
cli: upload multiple files
Browse files Browse the repository at this point in the history
closes: cernanalysispreservation#79

Signed-off-by: Ana Trisovic <ana.trisovic@gmail.com>
  • Loading branch information
atrisovic committed Jul 24, 2018
1 parent 1d91d31 commit a17f985
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 7 deletions.
12 changes: 7 additions & 5 deletions cap_client/cli/files_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def files():
default=None,
required=True
)
@click.argument('file', type=click.Path(exists=False))
@click.argument('file', type=click.Path(exists=False), nargs=-1)
@click.option(
'--output-file',
'-o',
Expand All @@ -69,11 +69,13 @@ def upload(ctx, pid, file, yes, output_file=None, docker=False):
if docker:
ctx.obj.cap_api.upload_docker_img(pid=pid, img_name=file,
output_img_name=output_file)
click.echo("Docker image uploaded successfully.")
else:
ctx.obj.cap_api.upload_file(
pid=pid, filepath=file,
output_filename=output_file, yes=yes)
click.echo("File uploaded successfully.")
for _file in file:
ctx.obj.cap_api.upload_file(
pid=pid, filepath=_file,
output_filename=output_file, yes=yes)
click.echo(_file + " uploaded successfully.")

except BadStatusCode as e:
logging.error(str(e))
Expand Down
12 changes: 10 additions & 2 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ You need to specify
Upload file
-----------

You can upload a file to an analysis only if you have at least read access to it.
You can upload a file (or multiple files) to an analysis only if you have at least read access to it.

You need to specify

Expand All @@ -566,7 +566,15 @@ You need to specify
$ cap-client files upload file.json -p 89b593c498874ec8bcafc88944c458a7
File uploaded successfully.
file.json uploaded successfully.
$ cap-client files upload config.txt history.txt dict.json -p bf6b8501822c4d2ba46028611354df7e
config.txt uploaded successfully.
history.txt uploaded successfully.
dict.json uploaded successfully.
Upload Docker image
Expand Down

0 comments on commit a17f985

Please sign in to comment.