// Ensure compatibility with both JDK 7 and 8 JSR-223 Script Engines try { load("nashorn:mozilla_compat.js"); } catch(e) { } // Import the serializable Java type we'll use for the output data. importClass(java.util.LinkedHashMap); importPackage(java.util); importPackage(java.io.UnsupportedEncodingException); importPackage(java.security); importPackage(javax.crypto); importPackage(java.nio); /** * Create an object that implements the methods defined by the "ScriptHook" * interface. We'll be passing this object to the constructor for the * ScriptHook interface. */ var impl = { /* * These variables (input, output, error, log) are defined by the * ExecuteScript snap when evaluating this script. */ input : input, output : output, error : error, log : log, /** * The "execute()" method is called once when the pipeline is started * and allowed to process its inputs or just send data to its outputs. * * Exceptions are automatically caught and sent to the error view. */ execute : function () { this.log.info("Executing Transform Script"); while (this.input.hasNext()) { try { var value_to_decode = new java.lang.String(); value_to_decode = "uw6AEGxH"; var KEY_AES = new java.lang.String(); KEY_AES = "Expo2021@DXB"; var IV = new java.lang.String(); IV = "2021-01-14T19:03:50.547"; var key_array = Java.type("byte[]"); var iv_array = Java.type("byte[]"); var encrypted_array = Java.type("byte[]"); key_array = java.util.Base64.getDecoder().decode(KEY_AES); iv_array = java.util.Base64.getDecoder().decode(IV); encrypted_array = java.util.Base64.getDecoder().decode(value_to_decode); Security.addProvider(new org.bouncycastle.jce.provider.BouncyCastleProvider()); var secretKeySpec = new javax.crypto.spec.SecretKeySpec(key_array, "AES"); var parameters = java.security.AlgorithmParameters.getInstance("AES"); parameters.init(new javax.crypto.spec.IvParameterSpec(iv_array)); var cipher = Java.type("javax.crypto.Cipher"); cipher = cipher.getInstance("AES/CBC/PKCS7Padding", "BC"); cipher.init(Cipher.DECRYPT_MODE, secretKeySpec, parameters); var decoded_array = Java.type("byte[]"); decoded_array = cipher.doFinal(encrypted_array); var decoded = new java.lang.String(decoded_array); // Read the next input document, store it a new LinkedHashMap, and write this as an output document. // We must use a serializable Java type liked LinkedHashMap for each output instead of a native // JavaScript object so that downstream Snaps like Copy can process it correctly. var inDoc = this.input.next(); var outDoc = new LinkedHashMap(); outDoc.put("original", inDoc); this.output.write(inDoc, outDoc); } catch (err) { var errDoc = new LinkedHashMap(); errDoc.put("error", err); this.log.error(err); this.error.write(errDoc); } } this.log.info("Script executed"); }, /** * The "cleanup()" method is called after the snap has exited the execute() method */ cleanup : function () { this.log.info("Cleaning up") } }; /** * The Script Snap will look for a ScriptHook object in the "hook" * variable. The snap will then call the hook's "execute" method. */ var hook = new com.snaplogic.scripting.language.ScriptHook(impl);
Write, Run & Share Javascript code online using OneCompiler's JS online compiler for free. It's one of the robust, feature-rich online compilers for Javascript language. Getting started with the OneCompiler's Javascript editor is easy and fast. The editor shows sample boilerplate code when you choose language as Javascript and start coding.
Javascript(JS) is a object-oriented programming language which adhere to ECMA Script Standards. Javascript is required to design the behaviour of the web pages.
var readline = require('readline');
var rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
terminal: false
});
rl.on('line', function(line){
console.log("Hello, " + line);
});
Keyword | Description | Scope |
---|---|---|
var | Var is used to declare variables(old way of declaring variables) | Function or global scope |
let | let is also used to declare variables(new way) | Global or block Scope |
const | const is used to declare const values. Once the value is assigned, it can not be modified | Global or block Scope |
let greetings = `Hello ${name}`
const msg = `
hello
world!
`
An array is a collection of items or values.
let arrayName = [value1, value2,..etc];
// or
let arrayName = new Array("value1","value2",..etc);
let mobiles = ["iPhone", "Samsung", "Pixel"];
// accessing an array
console.log(mobiles[0]);
// changing an array element
mobiles[3] = "Nokia";
Arrow Functions helps developers to write code in concise way, it’s introduced in ES6.
Arrow functions can be written in multiple ways. Below are couple of ways to use arrow function but it can be written in many other ways as well.
() => expression
const numbers = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
const squaresOfEvenNumbers = numbers.filter(ele => ele % 2 == 0)
.map(ele => ele ** 2);
console.log(squaresOfEvenNumbers);
let [firstName, lastName] = ['Foo', 'Bar']
let {firstName, lastName} = {
firstName: 'Foo',
lastName: 'Bar'
}
const {
title,
firstName,
lastName,
...rest
} = record;
//Object spread
const post = {
...options,
type: "new"
}
//array spread
const users = [
...adminUsers,
...normalUsers
]
function greetings({ name = 'Foo' } = {}) { //Defaulting name to Foo
console.log(`Hello ${name}!`);
}
greet() // Hello Foo
greet({ name: 'Bar' }) // Hi Bar
IF is used to execute a block of code based on a condition.
if(condition){
// code
}
Else part is used to execute the block of code when the condition fails.
if(condition){
// code
} else {
// code
}
Switch is used to replace nested If-Else statements.
switch(condition){
case 'value1' :
//code
[break;]
case 'value2' :
//code
[break;]
.......
default :
//code
[break;]
}
For loop is used to iterate a set of statements based on a condition.
for(Initialization; Condition; Increment/decrement){
//code
}
While is also used to iterate a set of statements based on a condition. Usually while is preferred when number of iterations are not known in advance.
while (condition) {
// code
}
Do-while is also used to iterate a set of statements based on a condition. It is mostly used when you need to execute the statements atleast once.
do {
// code
} while (condition);
ES6 introduced classes along with OOPS concepts in JS. Class is similar to a function which you can think like kind of template which will get called when ever you initialize class.
class className {
constructor() { ... } //Mandatory Class method
method1() { ... }
method2() { ... }
...
}
class Mobile {
constructor(model) {
this.name = model;
}
}
mbl = new Mobile("iPhone");