mirror of
https://github.com/gchq/CyberChef.git
synced 2024-11-16 17:08:31 +01:00
67 lines
1.9 KiB
JavaScript
67 lines
1.9 KiB
JavaScript
|
/**
|
||
|
* @author n1474335 [n1474335@gmail.com]
|
||
|
* @copyright Crown Copyright 2016
|
||
|
* @license Apache-2.0
|
||
|
*/
|
||
|
|
||
|
import Operation from "../Operation";
|
||
|
import moment from "moment-timezone";
|
||
|
import {UNITS} from "../lib/DateTime";
|
||
|
|
||
|
/**
|
||
|
* From UNIX Timestamp operation
|
||
|
*/
|
||
|
class FromUNIXTimestamp extends Operation {
|
||
|
|
||
|
/**
|
||
|
* FromUNIXTimestamp constructor
|
||
|
*/
|
||
|
constructor() {
|
||
|
super();
|
||
|
|
||
|
this.name = "From UNIX Timestamp";
|
||
|
this.module = "Default";
|
||
|
this.description = "Converts a UNIX timestamp to a datetime string.<br><br>e.g. <code>978346800</code> becomes <code>Mon 1 January 2001 11:00:00 UTC</code><br><br>A UNIX timestamp is a 32-bit value representing the number of seconds since January 1, 1970 UTC (the UNIX epoch).";
|
||
|
this.inputType = "number";
|
||
|
this.outputType = "string";
|
||
|
this.args = [
|
||
|
{
|
||
|
"name": "Units",
|
||
|
"type": "option",
|
||
|
"value": UNITS
|
||
|
}
|
||
|
];
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param {number} input
|
||
|
* @param {Object[]} args
|
||
|
* @returns {string}
|
||
|
*/
|
||
|
run(input, args) {
|
||
|
const units = args[0];
|
||
|
let d;
|
||
|
|
||
|
input = parseFloat(input);
|
||
|
|
||
|
if (units === "Seconds (s)") {
|
||
|
d = moment.unix(input);
|
||
|
return d.tz("UTC").format("ddd D MMMM YYYY HH:mm:ss") + " UTC";
|
||
|
} else if (units === "Milliseconds (ms)") {
|
||
|
d = moment(input);
|
||
|
return d.tz("UTC").format("ddd D MMMM YYYY HH:mm:ss.SSS") + " UTC";
|
||
|
} else if (units === "Microseconds (μs)") {
|
||
|
d = moment(input / 1000);
|
||
|
return d.tz("UTC").format("ddd D MMMM YYYY HH:mm:ss.SSS") + " UTC";
|
||
|
} else if (units === "Nanoseconds (ns)") {
|
||
|
d = moment(input / 1000000);
|
||
|
return d.tz("UTC").format("ddd D MMMM YYYY HH:mm:ss.SSS") + " UTC";
|
||
|
} else {
|
||
|
throw "Unrecognised unit";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
export default FromUNIXTimestamp;
|