@@ -212,12 +212,12 @@ class DataSinkInputSpec(DynamicTraitedSpec, BaseInterfaceInputSpec):
212
212
"""
213
213
214
214
# Init inputspec data attributes
215
- base_directory = Directory (desc = "Path to the base directory for storing data." )
215
+ base_directory = Str (desc = "Path to the base directory for storing data." )
216
216
container = Str (desc = "Folder within base directory in which to store output" )
217
217
parameterization = traits .Bool (
218
218
True , usedefault = True , desc = "store output in parametrized structure"
219
219
)
220
- strip_dir = Directory (desc = "path to strip out of filename" )
220
+ strip_dir = Str (desc = "path to strip out of filename" )
221
221
substitutions = InputMultiPath (
222
222
traits .Tuple (Str , Str ),
223
223
desc = (
@@ -440,7 +440,6 @@ def _check_s3_base_dir(self):
440
440
is not a valid S3 path, defaults to '<N/A>'
441
441
"""
442
442
443
- # Init variables
444
443
s3_str = "s3://"
445
444
bucket_name = "<N/A>"
446
445
base_directory = self .inputs .base_directory
@@ -449,22 +448,10 @@ def _check_s3_base_dir(self):
449
448
s3_flag = False
450
449
return s3_flag , bucket_name
451
450
452
- # Explicitly lower-case the "s3"
453
- if base_directory .lower ().startswith (s3_str ):
454
- base_dir_sp = base_directory .split ("/" )
455
- base_dir_sp [0 ] = base_dir_sp [0 ].lower ()
456
- base_directory = "/" .join (base_dir_sp )
457
-
458
- # Check if 's3://' in base dir
459
- if base_directory .startswith (s3_str ):
460
- # Expects bucket name to be 's3://bucket_name/base_dir/..'
461
- bucket_name = base_directory .split (s3_str )[1 ].split ("/" )[0 ]
462
- s3_flag = True
463
- # Otherwise it's just a normal datasink
464
- else :
465
- s3_flag = False
451
+ s3_flag = base_directory .lower ().startswith (s3_str )
452
+ if s3_flag :
453
+ bucket_name = base_directory [len (s3_str ):].partition ('/' )[0 ]
466
454
467
- # Return s3_flag
468
455
return s3_flag , bucket_name
469
456
470
457
# Function to return AWS secure environment variables
@@ -618,13 +605,12 @@ def _upload_to_s3(self, bucket, src, dst):
618
605
619
606
from botocore .exceptions import ClientError
620
607
621
- # Init variables
622
608
s3_str = "s3://"
623
609
s3_prefix = s3_str + bucket .name
624
610
625
611
# Explicitly lower-case the "s3"
626
- if dst [: len ( s3_str )] .lower () == s3_str :
627
- dst = s3_str + dst [len (s3_str ) :]
612
+ if dst .lower (). startswith ( s3_str ) :
613
+ dst = s3_str + dst [len (s3_str ):]
628
614
629
615
# If src is a directory, collect files (this assumes dst is a dir too)
630
616
if os .path .isdir (src ):
0 commit comments