2018-05-16 22:51:04 +02:00
|
|
|
/**
|
|
|
|
* @author n1474335 [n1474335@gmail.com]
|
|
|
|
* @copyright Crown Copyright 2016
|
|
|
|
* @license Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
import Operation from "../Operation";
|
2018-05-29 01:48:30 +02:00
|
|
|
import OperationError from "../errors/OperationError";
|
2018-05-16 22:51:04 +02:00
|
|
|
import Utils from "../Utils";
|
2018-05-29 01:48:30 +02:00
|
|
|
import {fromHex} from "../lib/Hex";
|
2018-05-16 22:51:04 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Change IP format operation
|
|
|
|
*/
|
|
|
|
class ChangeIPFormat extends Operation {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ChangeIPFormat constructor
|
|
|
|
*/
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
|
|
|
|
this.name = "Change IP format";
|
2018-08-19 23:58:31 +02:00
|
|
|
this.module = "Default";
|
2018-05-16 22:51:04 +02:00
|
|
|
this.description = "Convert an IP address from one format to another, e.g. <code>172.20.23.54</code> to <code>ac141736</code>";
|
|
|
|
this.inputType = "string";
|
|
|
|
this.outputType = "string";
|
|
|
|
this.args = [
|
|
|
|
{
|
|
|
|
"name": "Input format",
|
|
|
|
"type": "option",
|
2018-08-19 23:58:31 +02:00
|
|
|
"value": ["Dotted Decimal", "Decimal", "Hex"]
|
2018-05-16 22:51:04 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Output format",
|
|
|
|
"type": "option",
|
2018-08-19 23:58:31 +02:00
|
|
|
"value": ["Dotted Decimal", "Decimal", "Hex"]
|
2018-05-16 22:51:04 +02:00
|
|
|
}
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {string} input
|
|
|
|
* @param {Object[]} args
|
|
|
|
* @returns {string}
|
|
|
|
*/
|
|
|
|
run(input, args) {
|
2018-05-29 01:48:30 +02:00
|
|
|
const [inFormat, outFormat] = args,
|
2018-05-16 22:51:04 +02:00
|
|
|
lines = input.split("\n");
|
|
|
|
let output = "",
|
|
|
|
j = 0;
|
|
|
|
|
|
|
|
for (let i = 0; i < lines.length; i++) {
|
|
|
|
if (lines[i] === "") continue;
|
|
|
|
let baIp = [];
|
|
|
|
let octets;
|
|
|
|
let decimal;
|
|
|
|
|
|
|
|
if (inFormat === outFormat) {
|
|
|
|
output += lines[i] + "\n";
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert to byte array IP from input format
|
|
|
|
switch (inFormat) {
|
|
|
|
case "Dotted Decimal":
|
|
|
|
octets = lines[i].split(".");
|
|
|
|
for (j = 0; j < octets.length; j++) {
|
|
|
|
baIp.push(parseInt(octets[j], 10));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case "Decimal":
|
|
|
|
decimal = lines[i].toString();
|
|
|
|
baIp.push(decimal >> 24 & 255);
|
|
|
|
baIp.push(decimal >> 16 & 255);
|
|
|
|
baIp.push(decimal >> 8 & 255);
|
|
|
|
baIp.push(decimal & 255);
|
|
|
|
break;
|
|
|
|
case "Hex":
|
|
|
|
baIp = fromHex(lines[i]);
|
|
|
|
break;
|
|
|
|
default:
|
2018-05-29 01:48:30 +02:00
|
|
|
throw new OperationError("Unsupported input IP format");
|
2018-05-16 22:51:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
let ddIp;
|
|
|
|
let decIp;
|
|
|
|
let hexIp;
|
|
|
|
|
|
|
|
// Convert byte array IP to output format
|
|
|
|
switch (outFormat) {
|
|
|
|
case "Dotted Decimal":
|
|
|
|
ddIp = "";
|
|
|
|
for (j = 0; j < baIp.length; j++) {
|
|
|
|
ddIp += baIp[j] + ".";
|
|
|
|
}
|
|
|
|
output += ddIp.slice(0, ddIp.length-1) + "\n";
|
|
|
|
break;
|
|
|
|
case "Decimal":
|
|
|
|
decIp = ((baIp[0] << 24) | (baIp[1] << 16) | (baIp[2] << 8) | baIp[3]) >>> 0;
|
|
|
|
output += decIp.toString() + "\n";
|
|
|
|
break;
|
|
|
|
case "Hex":
|
|
|
|
hexIp = "";
|
|
|
|
for (j = 0; j < baIp.length; j++) {
|
|
|
|
hexIp += Utils.hex(baIp[j]);
|
|
|
|
}
|
|
|
|
output += hexIp + "\n";
|
|
|
|
break;
|
|
|
|
default:
|
2018-05-29 01:48:30 +02:00
|
|
|
throw new OperationError("Unsupported output IP format");
|
2018-05-16 22:51:04 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return output.slice(0, output.length-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
export default ChangeIPFormat;
|