@@ -418,6 +418,14 @@ def meth_delete(args):
418
418
print ("Method %s removed from project %s" % (args .method ,args .namespace ))
419
419
return 0
420
420
421
+ @fiss_cmd
422
+ def meth_wdl (args ):
423
+ ''' Retrieve WDL for given version of a repository method'''
424
+ r = fapi .get_repository_method (args .namespace , args .method ,
425
+ args .snapshot_id , True )
426
+ fapi ._check_response_code (r , 200 )
427
+ return r .text
428
+
421
429
@fiss_cmd
422
430
def meth_acl (args ):
423
431
''' Retrieve access control list for given version of a repository method'''
@@ -565,6 +573,20 @@ def config_get(args):
565
573
return json .dumps (r .json (), indent = 4 , separators = (',' , ': ' ),
566
574
sort_keys = True , ensure_ascii = False )
567
575
576
+ @fiss_cmd
577
+ def config_wdl (args ):
578
+ """ Retrieve the WDL for a method config in a workspace, send stdout """
579
+ r = fapi .get_workspace_config (args .project , args .workspace ,
580
+ args .namespace , args .config )
581
+ fapi ._check_response_code (r , 200 )
582
+
583
+ method = r .json ()["methodRepoMethod" ]
584
+ args .namespace = method ["methodNamespace" ]
585
+ args .method = method ["methodName" ]
586
+ args .snapshot_id = method ["methodVersion" ]
587
+
588
+ return meth_wdl (args )
589
+
568
590
@fiss_cmd
569
591
def config_diff (args ):
570
592
"""Compare method configuration definitions across workspaces. Ignores
@@ -2046,6 +2068,12 @@ def main(argv=None):
2046
2068
description = 'Redact method from the methods repository' ,
2047
2069
parents = [meth_parent , snapshot_parent ])
2048
2070
subp .set_defaults (func = meth_delete )
2071
+
2072
+ # Retreive the WDL of a method
2073
+ subp = subparsers .add_parser ('meth_wdl' ,
2074
+ description = 'Retrieve the WDL of a method' ,
2075
+ parents = [meth_parent , snapshot_parent ])
2076
+ subp .set_defaults (func = meth_wdl )
2049
2077
2050
2078
# Access control list operations (upon methods)
2051
2079
# Get ACL
@@ -2102,6 +2130,15 @@ def main(argv=None):
2102
2130
help = proj_help , required = proj_required )
2103
2131
subp .set_defaults (func = config_get )
2104
2132
2133
+ subp = subparsers .add_parser ('config_wdl' ,
2134
+ description = 'Retrieve method configuration WDL' ,
2135
+ parents = [conf_parent ])
2136
+ subp .add_argument ('-w' , '--workspace' , help = 'Workspace name' ,
2137
+ default = fcconfig .workspace , required = workspace_required )
2138
+ subp .add_argument ('-p' , '--project' , default = fcconfig .project ,
2139
+ help = proj_help , required = proj_required )
2140
+ subp .set_defaults (func = config_wdl )
2141
+
2105
2142
subp = subparsers .add_parser ('config_diff' ,
2106
2143
description = 'Compare method configuration definitions across workspaces' ,
2107
2144
parents = [conf_parent ])
0 commit comments