-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathserver.js
187 lines (159 loc) · 6.53 KB
/
server.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
import express from "express";
import fetch from "node-fetch";
import qs from "querystring";
import path from "path";
import fs from "fs";
import { fileURLToPath } from "url";
import { toJalaali } from "jalaali-js";
import https from 'https';
import http from 'http';
const app = express();
const CONFIG_FILE_NAME = "dvhost.config";
const BROWSER_KEYWORDS = ['Mozilla', 'Chrome', 'Safari', 'Edge', 'Opera', 'Firefox', 'Trident', 'WebKit'];
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const loadConfig = () => {
const configFile = path.join(__dirname, CONFIG_FILE_NAME);
if (!fs.existsSync(configFile)) {
console.error("Error: Configuration file 'dvhost.config' not found!");
process.exit(1);
}
return fs.readFileSync(configFile, "utf-8")
.split("\n")
.reduce((acc, line) => {
const [key, value] = line.split("=").map(item => item.trim());
if (key && value) acc[key] = value;
return acc;
}, {});
};
const config = loadConfig();
const {
HOST: dvhost_host = 'localhost',
PORT: dvhost_port = '8080',
PATH: dvhost_path = '',
USERNAME = '',
PASSWORD = '',
PROTOCOL = 'http',
SUBSCRIPTION = '',
PUBLIC_KEY_PATH = '',
PRIVATE_KEY_PATH = '',
TEMPLATE_NAME = 'default',
DEFAULT_LANG = 'en',
SUB_HTTP_PORT = '3000',
SUB_HTTPS_PORT = '443',
TELEGRAM_URL = '',
WHATSAPP_URL = '',
Backup_link: BACKUP_LINK = ""
} = config;
const dvhost_loginData = { username: USERNAME, password: PASSWORD };
const convertToJalali = (timestamp) => {
const date = new Date(timestamp);
const { jy, jm, jd } = toJalaali(date.getFullYear(), date.getMonth() + 1, date.getDate());
return `${jy}/${jm}/${jd}`;
};
const isBrowserRequest = (userAgent = '') =>
BROWSER_KEYWORDS.some(keyword => userAgent.includes(keyword));
// 5. Middleware و تنظیمات اکسپرس
app.use(express.static(path.join(__dirname, "public")));
app.set("views", path.join(__dirname, `views/templates/${TEMPLATE_NAME}`));
app.set("view engine", "ejs");
const fetchWithRetry = async (url, options, retries = 3) => {
try {
const response = await fetch(url, options);
if (!response.ok) throw new Error(`Request failed with status ${response.status}`);
return response;
} catch (error) {
if (retries <= 0) throw error;
return fetchWithRetry(url, options, retries - 1);
}
};
app.get(`/${SUBSCRIPTION.split('/')[3]}/:subId`, async (req, res) => {
try {
const { subId: targetSubId } = req.params;
const userAgent = req.headers['user-agent'] || '';
// 8. استفاده از Promise.all برای درخواستهای موازی
const [loginResponse, suburl_content] = await Promise.all([
fetchWithRetry(`${PROTOCOL}://${dvhost_host}:${dvhost_port}/${dvhost_path}/login`, {
method: "POST",
headers: { "Content-Type": "application/x-www-form-urlencoded" },
body: qs.stringify(dvhost_loginData),
}),
fetchUrlContent(`${SUBSCRIPTION}${targetSubId}`)
]);
if (!loginResponse.ok) throw new Error("Login request failed.");
const loginResult = await loginResponse.json();
if (!loginResult.success) throw new Error(loginResult.msg || "Login unsuccessful");
const cookie = loginResponse.headers.get("set-cookie");
const listResponse = await fetchWithRetry(`${PROTOCOL}://${dvhost_host}:${dvhost_port}/${dvhost_path}/panel/api/inbounds/list`, {
method: "GET",
headers: { cookie, "Accept": "application/json" }
});
const listResult = await listResponse.json();
const foundClient = listResult.obj
.flatMap(inbound => JSON.parse(inbound.settings).clients)
.find(client => client.subId === targetSubId);
if (!foundClient) return res.status(404).json({ message: "No object found with the specified subId." });
const trafficResponse = await fetchWithRetry(
`${PROTOCOL}://${dvhost_host}:${dvhost_port}/${dvhost_path}/panel/api/inbounds/getClientTraffics/${foundClient.email}`, {
method: "GET",
headers: { cookie, "Accept": "application/json" }
});
const trafficData = await trafficResponse.json();
const expiryTimeJalali = convertToJalali(trafficData.obj.expiryTime);
const suburl = `${req.protocol}://${req.get('host')}${req.originalUrl}`;
if (isBrowserRequest(userAgent)) {
return res.render("sub", {
data: {
...trafficData.obj,
expiryTimeJalali,
suburl,
suburl_content,
get_backup_link: BACKUP_LINK,
WHATSAPP_URL,
TELEGRAM_URL,
DEFAULT_LANG
},
});
}
const combinedContent = [BACKUP_LINK, Buffer.from(suburl_content, 'base64').toString('utf-8')]
.filter(Boolean)
.join('\n');
res.send(Buffer.from(combinedContent, 'utf-8').toString('base64'));
} catch (error) {
console.error("Error:", error.message);
res.status(500).json({ error: error.message });
}
});
const fetchUrlContent = async function fetchUrlContent(url) {
try {
const isHttps = url.startsWith('https://');
const agent = isHttps ? new https.Agent({ rejectUnauthorized: false })
: new http.Agent();
const response = await fetch(url, { agent });
if (!response.ok) {
throw new Error(`Failed to fetch URL: ${url}, Status: ${response.status}`);
}
return await response.text();
} catch (error) {
console.error(`Error fetching URL: ${url}`, error.message);
throw error;
}
};
const startServers = () => {
http.createServer(app).listen(SUB_HTTP_PORT, () => {
console.log(`HTTP Server is running on port ${SUB_HTTP_PORT}`);
});
if (PUBLIC_KEY_PATH && PRIVATE_KEY_PATH &&
fs.existsSync(PUBLIC_KEY_PATH) && fs.existsSync(PRIVATE_KEY_PATH)) {
const options = {
key: fs.readFileSync(PRIVATE_KEY_PATH),
cert: fs.readFileSync(PUBLIC_KEY_PATH)
};
https.createServer(options, app).listen(SUB_HTTPS_PORT, () => {
console.log(`HTTPS Server is running on port ${SUB_HTTPS_PORT}`);
});
} else {
console.warn('SSL certificates not found. Only HTTP server is running.');
}
};
startServers();