{ "ownerApp" : "Orchestrator", "name" : "user-group_created", "createBy" : "Marco Lettere", "description": "Handle workflow related to Portal event user-group_created", "version" : 1, "ownerEmail" : "m.lettere@gmail.com", "inputParameters" : ["user", "group"], "tasks" : [ { "name": "INLINE_TASK", "taskReferenceName": "init", "type": "INLINE", "inputParameters": { "keycloak": "{{ keycloak }}/{{ keycloak_realm }}", "keycloak_admin" : "{{ keycloak_admin }}/{{ keycloak_realm }}", "user" : "${workflow.input.user}", "group" : "${workflow.input.group}", "evaluatorType" : "javascript", "expression": "function e(v){ return (v == null || (v.trim && v.trim() === ''))}; if(e($.user) || e($.group)) throw('User and Group must not be empty'); function f(){ var path = $.group.startsWith('%2F') ? $.group.split('%2F').slice(1) : [$.group]; return { 'tree' : Java.to(path, 'java.lang.String[]'), 'name' : path.slice(path.length-1)[0], 'search' : encodeURIComponent(path.slice(path.length-1)[0])}} f()" } }, { "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" : "{{ keycloak_auth }}", "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": "INLINE_TASK", "taskReferenceName": "select_user", "inputParameters": { "foundusers": "${lookup_user.output.body}", "username": "${workflow.input.user}", "evaluatorType" : "javascript", "expression": "function f(){for(var i=0; i < $.foundusers.length;i++){if($.foundusers[i]['username'] == $.username) return $.foundusers[i]}} f()" }, "type": "INLINE" }, { "name": "check_user_existance", "taskReferenceName": "check_user_existance", "inputParameters": { "user": "${select_user.output.result}" }, "type": "SWITCH", "evaluatorType" : "javascript", "expression": "($.user == null ? 'true' : 'false')", "decisionCases": { "true": [ { "name" : "terminate", "taskReferenceName" : "terminate_when_no_user", "type" : "TERMINATE", "inputParameters" : { "terminationStatus" : "COMPLETED" } } ] } }, { "name" : "pyrest", "taskReferenceName" : "look_up_groups", "type" : "SIMPLE", "inputParameters" : { "url" : "${init.input.keycloak_admin}/groups?search=${init.output.result.search}", "headers" : { "Authorization" : "Bearer ${authorize.output.body.access_token}", "Accept" : "application/json" } } }, { "name": "INLINE_TASK", "taskReferenceName": "extract_group", "type": "INLINE", "inputParameters": { "tree" : "${init.output.result.tree}", "groups" : "${look_up_groups.output.body}", "expression": "function selectByPath(groups, path, level) { for (var i=0; i < groups.length; i++) {if (groups[i].name === path[level]) {if (level === path.length - 1) return groups[i];return selectByPath(groups[i].subGroups, path, level+1)}} return null; } function f() { return { 'group' : selectByPath($.groups, $.tree, 0)}} f()", "evaluatorType" : "javascript" } }, { "name" : "check_group_existance", "taskReferenceName" : "check_group_existance", "type" : "SWITCH", "evaluatorType" : "javascript", "inputParameters" :{ "group" : "${extract_group.output.result.group}" }, "expression": "(($.group != null) ? 'assign' : 'skip')", "decisionCases" : { "assign" : [ { "name" : "pyrest", "taskReferenceName" : "assign_user_to_group", "type" : "SIMPLE", "inputParameters" : { "url" : "${init.input.keycloak_admin}/users/${select_user.output.result.id}/groups/${extract_group.output.result.group.id}", "method" : "PUT", "headers" : { "Authorization" : "Bearer ${authorize.output.body.access_token}" } } } ] } } ] }