2021-06-30 16:05:48 +02:00
|
|
|
{
|
|
|
|
"ownerApp" : "Orchestrator",
|
|
|
|
"name" : "add_all_system_services_to_vre",
|
|
|
|
"createBy" : "Marco Lettere",
|
|
|
|
"description": "All system services retrieved from the IS through IC Proxy are added as Member to a VRE",
|
|
|
|
"version" : 1,
|
|
|
|
"ownerEmail" : "marco.lettere@nubisware.com",
|
2021-06-30 18:39:36 +02:00
|
|
|
"inputParameters" : ["client_resource_id"],
|
2021-06-30 16:05:48 +02:00
|
|
|
"tasks" : [
|
|
|
|
{
|
|
|
|
"name": "LAMBDA_TASK",
|
|
|
|
"taskReferenceName": "init",
|
|
|
|
"type": "LAMBDA",
|
|
|
|
"inputParameters": {
|
|
|
|
"keycloak": "{{ keycloak }}/{{ keycloak_realm }}",
|
|
|
|
"keycloak_admin" : "{{ keycloak_admin }}/{{ keycloak_realm }}",
|
|
|
|
"iC_proxy" : "{{ ic_proxy }}",
|
|
|
|
"scriptExpression": "1 == 1"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name" : "pyrest",
|
2021-06-30 16:37:40 +02:00
|
|
|
"taskReferenceName" : "authorize_on_realm",
|
2021-06-30 16:05:48 +02:00
|
|
|
"type" : "SIMPLE",
|
|
|
|
"inputParameters" : {
|
2021-06-30 16:37:40 +02:00
|
|
|
"url" : "{{ keycloak }}/{{ keycloak_realm }}/protocol/openid-connect/token",
|
2021-06-30 16:05:48 +02:00
|
|
|
"method" : "POST",
|
|
|
|
"headers" : {
|
|
|
|
"Accept" : "application/json"
|
|
|
|
},
|
|
|
|
"body" : {
|
|
|
|
"client_id" : "orchestrator",
|
2021-06-30 16:37:40 +02:00
|
|
|
"client_secret" : "{{ keycloak_auth }}",
|
2021-06-30 16:05:48 +02:00
|
|
|
"grant_type" : "client_credentials"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2021-06-30 17:24:51 +02:00
|
|
|
{
|
|
|
|
"name" : "pyrest",
|
|
|
|
"taskReferenceName" : "authorize_with_uma_rpt",
|
|
|
|
"type" : "SIMPLE",
|
|
|
|
"inputParameters" : {
|
|
|
|
"url" : "{{ keycloak }}/{{ keycloak_realm }}/protocol/openid-connect/token",
|
|
|
|
"method" : "POST",
|
|
|
|
"headers" : {
|
2021-06-30 17:26:58 +02:00
|
|
|
"Accept" : "application/json",
|
|
|
|
"Authorization" : "Bearer ${authorize_on_realm.output.body.access_token}"
|
2021-06-30 17:24:51 +02:00
|
|
|
},
|
|
|
|
"body" : {
|
|
|
|
"audience" : "{{ root_vo }}",
|
|
|
|
"grant_type" : "urn:ietf:params:oauth:grant-type:uma-ticket"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2021-06-30 16:05:48 +02:00
|
|
|
{
|
|
|
|
"name" : "pyrest",
|
2021-06-30 18:39:36 +02:00
|
|
|
"taskReferenceName" : "retrieve_system_service_names",
|
2021-06-30 16:05:48 +02:00
|
|
|
"type" : "SIMPLE",
|
|
|
|
"inputParameters" : {
|
|
|
|
"url" : "{{ ic_proxy }}/icproxy/gcube/service/ServiceEndpoint/SystemService",
|
|
|
|
"method" : "GET",
|
|
|
|
"headers" : {
|
2021-06-30 16:22:22 +02:00
|
|
|
"Accept" : "application/xml",
|
2021-06-30 17:24:51 +02:00
|
|
|
"Authorization" : "Bearer ${authorize_with_uma_rpt.output.body.access_token}"
|
2021-06-30 16:05:48 +02:00
|
|
|
}
|
|
|
|
}
|
2021-06-30 16:37:40 +02:00
|
|
|
},
|
2021-06-30 17:42:22 +02:00
|
|
|
{
|
|
|
|
"name" : "pyeval",
|
2021-06-30 18:39:36 +02:00
|
|
|
"taskReferenceName" : "extract_system_service_ids",
|
2021-06-30 17:42:22 +02:00
|
|
|
"type" : "SIMPLE",
|
|
|
|
"inputParameters" : {
|
2021-06-30 18:12:12 +02:00
|
|
|
"code" : "exec('import xml.etree.ElementTree as ET') or list(map(lambda n: n.text, ET.fromstring(data['xmlstring']).findall('Resource/Profile/Name')))",
|
2021-06-30 17:42:22 +02:00
|
|
|
"xmlstring" : "${retrieve_system_services.output.body}"
|
|
|
|
}
|
|
|
|
},
|
2021-06-30 16:37:40 +02:00
|
|
|
{
|
|
|
|
"name" : "pyrest",
|
|
|
|
"taskReferenceName" : "authorize",
|
|
|
|
"type" : "SIMPLE",
|
|
|
|
"inputParameters" : {
|
|
|
|
"url" : "{{ keycloak }}/master/protocol/openid-connect/token",
|
|
|
|
"method" : "POST",
|
|
|
|
"headers" : {
|
|
|
|
"Accept" : "application/json"
|
|
|
|
},
|
|
|
|
"body" : {
|
|
|
|
"client_id" : "orchestrator",
|
|
|
|
"client_secret" : "{{ keycloak_auth_master }}",
|
|
|
|
"grant_type" : "client_credentials"
|
|
|
|
}
|
|
|
|
}
|
2021-06-30 18:39:36 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name" : "pyrest",
|
|
|
|
"taskReferenceName" : "get_vre",
|
|
|
|
"type" : "SIMPLE",
|
|
|
|
"inputParameters" : {
|
|
|
|
"url" : "${init.input.keycloak_admin}/clients/${workflow.input.client_resource_id}",
|
|
|
|
"method" : "GET",
|
|
|
|
"headers" : {
|
|
|
|
"Authorization" : "Bearer ${authorize.output.body.access_token}",
|
|
|
|
"Accept" : "application/json"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "LAMBDA_TASK",
|
|
|
|
"taskReferenceName": "build_get_system_services_tasks",
|
|
|
|
"type": "LAMBDA",
|
|
|
|
"inputParameters": {
|
|
|
|
"url" : "${init.input.keycloak_admin}/clients/search=true&clientId=",
|
|
|
|
"services" : "${retrieve_system_service_names.output.result}",
|
2021-06-30 18:43:36 +02:00
|
|
|
"scriptExpression": "inputs={},tasks=[];for(var i=0;i<$.services.length;i++)s=$.services[i],tasks.push({name:'pyrest',type:'SIMPLE',taskReferenceName:'get_system_service'+i,inputs['get_system_service'+i]={url: $.url + s, method : 'GET', headers : {Authorization : 'Bearer ${authorize.output.body.access_token}', Accept : 'application/json'}};return {tasks:Java.to(tasks,'java.util.Map[]'),inputs:inputs};"
|
2021-06-30 18:39:36 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name" : "fork_dynamic",
|
|
|
|
"type" : "FORK_JOIN_DYNAMIC",
|
|
|
|
"taskReferenceName" : "parallel_get_system_services_tasks",
|
|
|
|
"inputParameters" : {
|
|
|
|
"tasks" : "${build_get_system_services_tasks.output.result.tasks}",
|
|
|
|
"inputs" : "${build_get_system_services_tasks.output.result.inputs}"
|
|
|
|
},
|
|
|
|
"dynamicForkTasksParam": "tasks",
|
|
|
|
"dynamicForkTasksInputParamName": "inputs"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name" : "join",
|
|
|
|
"type" : "JOIN",
|
|
|
|
"taskReferenceName" : "join_parallel_build_member_roles_assignment_tasks"
|
2021-06-30 16:38:39 +02:00
|
|
|
}
|
2021-06-30 16:05:48 +02:00
|
|
|
]
|
|
|
|
}
|