-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
76 lines (70 loc) · 3.01 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/*
Import the ip-cidr npm package.
See https://www.npmjs.com/package/ip-cidr
The ip-cidr package exports a class.
Assign the class definition to variable IPCIDR.
*/
const IPCIDR = require('ip-cidr');
/*
Import the built-in path module.
See https://nodejs.org/api/path.html
The path module provides utilities for working with file and directory paths.
IAP requires the path module to access local file modules.
The path module exports an object.
Assign the imported object to variable path.
*/
const path = require('path');
/**
* Import helper function module located in the same directory
* as this module. IAP requires the path object's join method
* to unequivocally locate the file module.
*/
const { getIpv4MappedIpv6Address } = require(path.join(__dirname, 'ipv6.js'));
/**
* Calculate and return the first host IP address from a CIDR subnet.
* @param {string} cidrStr - The IPv4 subnet expressed
* in CIDR format.
* @param {callback} callback - A callback function.
* @return {string} (firstIpAddress.ipv4) - An IPv4 address.
* @return {string} (firstIpAddress.ipv6) - An IPv6 address.
*/
class IpAddress {
constructor() {
// IAP's global log object is used to output errors, warnings, and other
// information to the console, IAP's log files, or a Syslog server.
// For more information, consult the Log Class guide on the Itential
// Developer Hub https://developer.itential.io/ located
// under Documentation -> Developer Guides -> Log Class Guide
log.info('Starting the IpAddress product.');
}
getFirstIpAddress(cidrStr, callback) {
// Initialize return arguments for callback
let firstIpAddress = { "ipv4":null, "ipv6":null };
let callbackError = null;
// Instantiate an object from the imported class and assign the instance to variable cidr.
const cidr = new IPCIDR(cidrStr);
// Initialize options for the toArray() method.
// We want an offset of one and a limit of one.
// This returns an array with a single element, the first host address from the subnet.
const options = {
from: 1,
limit: 1
};
// Use the object's isValid() method to verify the passed CIDR.
if (!cidr.isValid()) {
// If the passed CIDR is invalid, set an error message.
callbackError = 'Error: Invalid CIDR passed to getFirstIpAddress.';
} else {
// If the passed CIDR is valid, call the object's toArray() method.
// Notice the destructering assignment syntax to get the value of the first array's element.
[firstIpAddress.ipv4] = cidr.toArray(options);
[firstIpAddress.ipv6] = [getIpv4MappedIpv6Address(firstIpAddress.ipv4)];
}
// Call the passed callback function.
// Node.js convention is to pass error data as the first argument to a callback.
// The IAP convention is to pass returned data as the first argument and error
// data as the second argument to the callback function.
return callback(firstIpAddress, callbackError);
}
}
module.exports = new IpAddress;