Update index.js
Browse files
index.js
CHANGED
@@ -26,15 +26,60 @@ const IPAddressAndUpdate = async (ip) => {
|
|
26 |
try {
|
27 |
const db = await connectToMongoDB();
|
28 |
const collection = db.collection("FastJsAPI");
|
29 |
-
const filter = { ip: ip};
|
30 |
const update = { $set: { ip: ip } };
|
31 |
-
await collection.updateOne(filter, update, { upsert: true });
|
32 |
-
|
|
|
|
|
|
|
|
|
|
|
33 |
} catch (error) {
|
34 |
-
console.error("Error:", error.message);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
}
|
36 |
};
|
37 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
app.get('/', (req, res) => {
|
39 |
res.redirect('https://t.me/RendyProjects');
|
40 |
});
|
@@ -58,12 +103,17 @@ app.use(async (req, res, next) => {
|
|
58 |
}
|
59 |
|
60 |
req.realIP = realIP;
|
|
|
|
|
|
|
|
|
61 |
/*
|
62 |
if (BlockedIp.includes(realIP)) {
|
63 |
console.log(`Blocked request from IP address: ${realIP}`);
|
64 |
res.status(403).send("access is blocked");
|
65 |
}
|
66 |
*/
|
|
|
67 |
await IPAddressAndUpdate(realIP);
|
68 |
console.log(`Real IP address is: ${realIP}, header: ${xForwardedFor ? "x-forwarded-for" : xRealIP ? "x-real-ip" : cfConnectingIP ? "cf-connecting-ip" : "req.ip"} `);
|
69 |
await next();
|
|
|
26 |
try {
|
27 |
const db = await connectToMongoDB();
|
28 |
const collection = db.collection("FastJsAPI");
|
29 |
+
const filter = { ip: ip };
|
30 |
const update = { $set: { ip: ip } };
|
31 |
+
const result = await collection.updateOne(filter, update, { upsert: true });
|
32 |
+
|
33 |
+
if (result.upsertedCount > 0) {
|
34 |
+
console.log("Inserted a new IP address:", ip);
|
35 |
+
} else {
|
36 |
+
console.log("Updated an existing IP address:", ip);
|
37 |
+
}
|
38 |
} catch (error) {
|
39 |
+
console.error("Error updating IP address:", error.message);
|
40 |
+
}
|
41 |
+
};
|
42 |
+
|
43 |
+
const AddIpisBlocked = async (ip) => {
|
44 |
+
try {
|
45 |
+
const db = await connectToMongoDB();
|
46 |
+
const collection = db.collection("FastJsAPI");
|
47 |
+
const filter = { ip: ip };
|
48 |
+
const update = { $set: { blocked: true } };
|
49 |
+
const result = await collection.updateOne(filter, update, { upsert: true });
|
50 |
+
|
51 |
+
if (result.upsertedCount > 0) {
|
52 |
+
console.log("Inserted a new IP address:", ip);
|
53 |
+
} else {
|
54 |
+
console.log("Updated an existing IP address:", ip);
|
55 |
+
}
|
56 |
+
} catch (error) {
|
57 |
+
console.error("Error updating IP address:", error.message);
|
58 |
}
|
59 |
};
|
60 |
|
61 |
+
|
62 |
+
const CheckIsBlocked = async (ip) => {
|
63 |
+
try {
|
64 |
+
const db = await connectToMongoDB();
|
65 |
+
const collection = db.collection("FastJsAPI");
|
66 |
+
const filter = { ip: ip };
|
67 |
+
const FindIp = await collection.findOne(filter);
|
68 |
+
|
69 |
+
if (FindIp) {
|
70 |
+
console.log("IP found in the database:", FindIp);
|
71 |
+
return FindIp;
|
72 |
+
} else {
|
73 |
+
console.log("IP not found in the database");
|
74 |
+
return null;
|
75 |
+
}
|
76 |
+
} catch (error) {
|
77 |
+
console.error("Error checking IP:", error.message);
|
78 |
+
return null;
|
79 |
+
}
|
80 |
+
};
|
81 |
+
|
82 |
+
|
83 |
app.get('/', (req, res) => {
|
84 |
res.redirect('https://t.me/RendyProjects');
|
85 |
});
|
|
|
103 |
}
|
104 |
|
105 |
req.realIP = realIP;
|
106 |
+
if (req.path === '/env') {
|
107 |
+
console.log("check path /env");
|
108 |
+
await AddIpisBlocked(realIP)
|
109 |
+
}
|
110 |
/*
|
111 |
if (BlockedIp.includes(realIP)) {
|
112 |
console.log(`Blocked request from IP address: ${realIP}`);
|
113 |
res.status(403).send("access is blocked");
|
114 |
}
|
115 |
*/
|
116 |
+
await CheckIsBlocked(realIP)
|
117 |
await IPAddressAndUpdate(realIP);
|
118 |
console.log(`Real IP address is: ${realIP}, header: ${xForwardedFor ? "x-forwarded-for" : xRealIP ? "x-real-ip" : cfConnectingIP ? "cf-connecting-ip" : "req.ip"} `);
|
119 |
await next();
|