234 lines
7.1 KiB
JSON
234 lines
7.1 KiB
JSON
|
{
|
||
|
"ownerApp" : "Orchestrator",
|
||
|
"name" : "group_created",
|
||
|
"createBy" : "Marco Lettere",
|
||
|
"description": "Handle workflow related to Portal event group_created",
|
||
|
"version" : 1,
|
||
|
"ownerEmail" : "marco.lettere@nubisware.com",
|
||
|
"inputParameters" : ["user", "group"],
|
||
|
"tasks" : [
|
||
|
{
|
||
|
"name": "LAMBDA_TASK",
|
||
|
"taskReferenceName": "init",
|
||
|
"type": "LAMBDA",
|
||
|
"inputParameters": {
|
||
|
"keycloak": "https://accounts.dev.d4science.org/auth/realms/d4science",
|
||
|
"keycloak_admin" : "https://accounts.dev.d4science.org/auth/admin/realms/d4science",
|
||
|
"clientId" : "${workflow.input.group}",
|
||
|
"scriptExpression": "return { 'name' : $.clientId.split('%2F').join('/').split('%2f').join('/')}"
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"name" : "pyrest",
|
||
|
"taskReferenceName" : "authorize",
|
||
|
"type" : "SIMPLE",
|
||
|
"inputParameters" : {
|
||
|
"url" : "${init.input.keycloak}/protocol/openid-connect/token",
|
||
|
"method" : "POST",
|
||
|
"headers" : {
|
||
|
"Accept" : "application/json"
|
||
|
},
|
||
|
"body" : {
|
||
|
"client_id" : "orchestrator",
|
||
|
"client_secret" : "c93501bd-abeb-4228-bc28-afac38877338",
|
||
|
"grant_type" : "client_credentials"
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"name" : "pyrest",
|
||
|
"taskReferenceName" : "lookup_user",
|
||
|
"type" : "SIMPLE",
|
||
|
"inputParameters" : {
|
||
|
"url" : "${init.input.keycloak_admin}/users?username=${workflow.input.user}",
|
||
|
"method" : "GET",
|
||
|
"headers" : {
|
||
|
"Authorization" : "Bearer ${authorize.output.body.access_token}",
|
||
|
"Accept" : "application/json"
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"name" : "pyrest",
|
||
|
"taskReferenceName" : "create_client",
|
||
|
"type" : "SIMPLE",
|
||
|
"inputParameters" : {
|
||
|
"url" : "${init.input.keycloak_admin}/clients",
|
||
|
"body" : {
|
||
|
"clientId": "${init.input.clientId}",
|
||
|
"name": "${init.output.result.name}",
|
||
|
"description": "Client representation for ${init.output.result.name} context",
|
||
|
"rootUrl": "http://localhost${init.output.result.name}",
|
||
|
"enabled": true,
|
||
|
"serviceAccountsEnabled": true,
|
||
|
"standardFlowEnabled": true,
|
||
|
"authorizationServicesEnabled": true,
|
||
|
"publicClient": false,
|
||
|
"protocol": "openid-connect"
|
||
|
},
|
||
|
"method" : "POST",
|
||
|
"headers" : {
|
||
|
"Authorization" : "Bearer ${authorize.output.body.access_token}",
|
||
|
"Content-Type" : "application/json"
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"name" : "fork_join",
|
||
|
"taskReferenceName" : "fork_role_creation",
|
||
|
"type" : "FORK_JOIN",
|
||
|
"forkTasks" : [
|
||
|
[{
|
||
|
"name" : "pyrest",
|
||
|
"taskReferenceName" : "create_role_member",
|
||
|
"type" : "SIMPLE",
|
||
|
"inputParameters" : {
|
||
|
"url" : "${create_client.output.headers.location}/roles",
|
||
|
"body" : {
|
||
|
"clientRole" : true, "name" : "Member", "description" : "Simple membership for ${init.output.result.name}"
|
||
|
},
|
||
|
"method" : "POST",
|
||
|
"headers" : {
|
||
|
"Authorization" : "Bearer ${authorize.output.body.access_token}",
|
||
|
"Content-Type" : "application/json"
|
||
|
}
|
||
|
}
|
||
|
}],
|
||
|
[{
|
||
|
"name" : "pyrest",
|
||
|
"taskReferenceName" : "create_role_accountingmanager",
|
||
|
"type" : "SIMPLE",
|
||
|
"inputParameters" : {
|
||
|
"url" : "${create_client.output.headers.location}/roles",
|
||
|
"body" : {
|
||
|
"clientRole" : true, "name" : "Accounting-Manager", "description" : "Accounting-Manager for ${init.output.result.name}"
|
||
|
},
|
||
|
"method" : "POST",
|
||
|
"headers" : {
|
||
|
"Authorization" : "Bearer ${authorize.output.body.access_token}",
|
||
|
"Content-Type" : "application/json"
|
||
|
}
|
||
|
}
|
||
|
}],
|
||
|
[{
|
||
|
"name" : "pyrest",
|
||
|
"taskReferenceName" : "create_role_catalogueadmin",
|
||
|
"type" : "SIMPLE",
|
||
|
"inputParameters" : {
|
||
|
"url" : "${create_client.output.headers.location}/roles",
|
||
|
"body" : {
|
||
|
"clientRole" : true, "name" : "Catalogue-Admin", "description" : "Catalogue-Admin for ${init.output.result.name}"
|
||
|
},
|
||
|
"method" : "POST",
|
||
|
"headers" : {
|
||
|
"Authorization" : "Bearer ${authorize.output.body.access_token}",
|
||
|
"Content-Type" : "application/json"
|
||
|
}
|
||
|
}
|
||
|
}],
|
||
|
[{
|
||
|
"name" : "pyrest",
|
||
|
"taskReferenceName" : "create_role_catalogueeditor",
|
||
|
"type" : "SIMPLE",
|
||
|
"inputParameters" : {
|
||
|
"url" : "${create_client.output.headers.location}/roles",
|
||
|
"body" : {
|
||
|
"clientRole" : true, "name" : "Catalogue-Editor", "description" : "Catalogue-Editor for ${init.output.result.name}"
|
||
|
},
|
||
|
"method" : "POST",
|
||
|
"headers" : {
|
||
|
"Authorization" : "Bearer ${authorize.output.body.access_token}",
|
||
|
"Content-Type" : "application/json"
|
||
|
}
|
||
|
}
|
||
|
}],
|
||
|
[{
|
||
|
"name" : "pyrest",
|
||
|
"taskReferenceName" : "create_role_datamanager",
|
||
|
"type" : "SIMPLE",
|
||
|
"inputParameters" : {
|
||
|
"url" : "${create_client.output.headers.location}/roles",
|
||
|
"body" : {
|
||
|
"clientRole" : true, "name" : "Data-Manager", "description" : "Data-Manager for ${init.output.result.name}"
|
||
|
},
|
||
|
"method" : "POST",
|
||
|
"headers" : {
|
||
|
"Authorization" : "Bearer ${authorize.output.body.access_token}",
|
||
|
"Content-Type" : "application/json"
|
||
|
}
|
||
|
}
|
||
|
}],
|
||
|
[{
|
||
|
"name" : "pyrest",
|
||
|
"taskReferenceName" : "create_role_dataminermanager",
|
||
|
"type" : "SIMPLE",
|
||
|
"inputParameters" : {
|
||
|
"url" : "${create_client.output.headers.location}/roles",
|
||
|
"body" : {
|
||
|
"clientRole" : true, "name" : "Dataminer-Manager", "description" : "Dataminer-Manager for ${init.output.result.name}"
|
||
|
},
|
||
|
"method" : "POST",
|
||
|
"headers" : {
|
||
|
"Authorization" : "Bearer ${authorize.output.body.access_token}",
|
||
|
"Content-Type" : "application/json"
|
||
|
}
|
||
|
}
|
||
|
}],
|
||
|
[{
|
||
|
"name" : "pyrest",
|
||
|
"taskReferenceName" : "create_role_voadmin",
|
||
|
"type" : "SIMPLE",
|
||
|
"inputParameters" : {
|
||
|
"url" : "${create_client.output.headers.location}/roles",
|
||
|
"body" : {
|
||
|
"clientRole" : true, "name" : "VO-Admin", "description" : "VO-Admin for ${init.output.result.name}"
|
||
|
},
|
||
|
"method" : "POST",
|
||
|
"headers" : {
|
||
|
"Authorization" : "Bearer ${authorize.output.body.access_token}",
|
||
|
"Content-Type" : "application/json"
|
||
|
}
|
||
|
}
|
||
|
}],
|
||
|
[{
|
||
|
"name" : "pyrest",
|
||
|
"taskReferenceName" : "create_role_vredesigner",
|
||
|
"type" : "SIMPLE",
|
||
|
"inputParameters" : {
|
||
|
"url" : "${create_client.output.headers.location}/roles",
|
||
|
"body" : {
|
||
|
"clientRole" : true, "name" : "VRE-Designer", "description" : "VRE-Designer for ${init.output.result.name}"
|
||
|
},
|
||
|
"method" : "POST",
|
||
|
"headers" : {
|
||
|
"Authorization" : "Bearer ${authorize.output.body.access_token}",
|
||
|
"Content-Type" : "application/json"
|
||
|
}
|
||
|
}
|
||
|
}],
|
||
|
[{
|
||
|
"name" : "pyrest",
|
||
|
"taskReferenceName" : "create_role_vremanager",
|
||
|
"type" : "SIMPLE",
|
||
|
"inputParameters" : {
|
||
|
"url" : "${create_client.output.headers.location}/roles",
|
||
|
"body" : {
|
||
|
"clientRole" : true, "name" : "VRE-Manager", "description" : "VRE-Manager for ${init.output.result.name}"
|
||
|
},
|
||
|
"method" : "POST",
|
||
|
"headers" : {
|
||
|
"Authorization" : "Bearer ${authorize.output.body.access_token}",
|
||
|
"Content-Type" : "application/json"
|
||
|
}
|
||
|
}
|
||
|
}]
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"name" : "join",
|
||
|
"taskReferenceName" : "join_role_creation",
|
||
|
"type" : "JOIN"
|
||
|
}
|
||
|
]
|
||
|
}
|