Coder Social home page Coder Social logo

dataweave-scripts's Introduction

DataWeave Scripts

DataWeave is a powerful transformation language that is used to transform data from one format to another. It is a core component of MuleSoft Anypoint Platform.

1. Transform

1.1. XML to JSON - Force Keys as Array

This script will convert an XML payload to a JSON payload. It will force keys to be arrays if there is only one element with that key since duplicateKeyAsArray only works when there are multiple elements with the same key.

Input XML Payload:
<?xml version="1.0" encoding="UTF-8"?>
<Root>
  <About>
    <Code>29329573000145</Code>
    <Name>COMPANY X</Name>
    <CodeStatus>Ativa</CodeStatus>
  </About>
  <Emails>
    <Email>[email protected]</Email>
  </Emails>
  <Emails>
    <Email>[email protected]</Email>
  </Emails>
  <Phones>
    <AreaCode>19</AreaCode>
    <Phone>34140000</Phone>
  </Phones>
  <Phones>
    <AreaCode>19</AreaCode>
    <Phone>34370005</Phone>
  </Phones>
  <Mobiles>
    <AreaCode>11</AreaCode>
    <Phone>912341234</Phone>
  </Mobiles>
  <Mobiles>
    <AreaCode>11</AreaCode>
    <Phone>956785678</Phone>
  </Mobiles>
</Root>
DataWeave Script:
%dw 2.0
output application/json
var root = 'Root'
var arrayKeys = ["Emails", "Phones", "Mobiles"]
var objectKeys = keysOf( (payload.'$(root)' default {}) as Object) -- (arrayKeys)
---
{
	(objectKeys map {
		(($): ((payload.'$(root)'.'$($)' default {}) as Object mapObject ((value, key, index) ->
        (key): (value match {
            case is String -> (
              if(trim(value) ~= "NULL") null else trim(value)
            )
            else -> value
        })
    )))
	}),
	(
		arrayKeys map {
		(
			($): (
				(payload.'$(root)'.*'$($)' default []) as Array map ((item, index) ->
					item as Object mapObject ((value, key, index) ->
						(key): (value match {
                case is String -> (
                  if(trim(value) ~= "NULL") null else trim(value)
                )
                else -> value
            })
					)
				)
			)
		) if(payload.'$(root)'.'$($)'?)
	})
}
Output JSON Payload:
{
  "About": {
    "Code": "29329573000145",
    "Name": "COMPANY X",
    "CodeStatus": "Ativa"
  },
  "Emails": [
    {
      "Email": "[email protected]"
    },
    {
      "Email": "[email protected]"
    }
  ],
  "Phones": [
    {
      "AreaCode": "19",
      "Phone": "34140000"
    },
    {
      "AreaCode": "19",
      "Phone": "34370005"
    }
  ],
  "Mobiles": [
    {
      "AreaCode": "11",
      "Phone": "912341234"
    },
    {
      "AreaCode": "11",
      "Phone": "956785678"
    }
  ]
}
DataWeave Playground

dataweave-scripts's People

Contributors

andydasilva52 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.