File size: 9,057 Bytes
8db0f37 |
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 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 |
// app.js
const express = require('express');
const bodyParser = require('body-parser');
const axios = require('axios');
const path = require('path');
const mysql = require('mysql2');
const morgan = require('morgan'); // For logging HTTP requests
const helmet = require('helmet'); // For securing HTTP headers
const { body, validationResult } = require('express-validator'); // For input validation
require('dotenv').config(); // For environment variables
const app = express();
const port = process.env.PORT || 3000;
// Middleware Setup
app.use(bodyParser.urlencoded({ extended: true }));
app.use(bodyParser.json());
app.use(helmet());
app.use(morgan('combined'));
app.use(express.static('public')); // Serve static files from 'public' directory
// Database Connection Configuration with Connection Pooling
const pool = mysql.createPool({
host: process.env.DB_HOST,
port: process.env.DB_PORT || 3306,
user: process.env.DB_USER,
password: process.env.DB_PASSWORD,
database: process.env.DB_NAME,
waitForConnections: true,
connectionLimit: 10, // Adjust based on your requirements
queueLimit: 0
});
// Promisify for async/await usage
const promisePool = pool.promise();
// Function to Initialize Database Tables
async function initializeDatabase() {
try {
// Create redemption_codes Table
const createRedemptionCodesTable = `
CREATE TABLE IF NOT EXISTS redemption_codes (
id INT AUTO_INCREMENT PRIMARY KEY,
code TEXT NOT NULL,
name VARCHAR(255),
quota INT,
count INT,
user_ip VARCHAR(45),
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
)
`;
await promisePool.query(createRedemptionCodesTable);
console.log('Redemption codes table is ready.');
// Create session_cookies Table
const createSessionCookiesTable = `
CREATE TABLE IF NOT EXISTS session_cookies (
id INT AUTO_INCREMENT PRIMARY KEY,
username VARCHAR(255) NOT NULL,
session_cookies TEXT NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
)
`;
await promisePool.query(createSessionCookiesTable);
console.log('Session_cookies table is ready.');
} catch (err) {
console.error('Error initializing database tables:', err);
process.exit(1);
}
}
// Initialize Database Tables
initializeDatabase();
// Serve the HTML Form (Assuming you have an index.html in the 'views' directory)
app.get('/', (req, res) => {
res.sendFile(path.join(__dirname, 'views', 'index.html'));
});
// Utility Function to Get User's IP Address
function getUserIP(req) {
const xForwardedFor = req.headers['x-forwarded-for'];
if (xForwardedFor) {
const ips = xForwardedFor.split(',').map(ip => ip.trim());
return ips[0];
}
return req.socket.remoteAddress;
}
// Function to Save Session Cookies to the Database
async function saveSessionCookies(username, sessionCookies) {
try {
const insertQuery = `
INSERT INTO session_cookies (username, session_cookies)
VALUES (?, ?)
`;
await promisePool.query(insertQuery, [username, sessionCookies]);
console.log(`New session cookies for user '${username}' saved successfully.`);
} catch (err) {
console.error(`Error saving session cookies for user '${username}':`, err);
throw err;
}
}
// Function to Perform Login and Retrieve Session Cookies
async function performLogin() {
const loginUrl = `${process.env.REDEMPTION_API_BASE_URL}/api/user/login?turnstile=`;
const headers = {
'Accept': 'application/json, text/plain, */*',
'Accept-Language': 'en-US,en;q=0.9',
'Connection': 'keep-alive',
'Content-Type': 'application/json',
'Origin': process.env.REDEMPTION_API_BASE_URL,
'Referer': `${process.env.REDEMPTION_API_BASE_URL}/login`,
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
'VoApi-User': '-1'
};
const data = {
username: process.env.ADMIN_USERNAME,
password: process.env.ADMIN_PASSWORD
};
try {
const response = await axios.post(loginUrl, data, {
headers: headers,
withCredentials: true,
httpsAgent: new (require('https').Agent)({ rejectUnauthorized: false }) // Equivalent to --insecure
});
// Extract all cookies from response headers
const setCookieHeader = response.headers['set-cookie'];
if (setCookieHeader) {
// Parse the set-cookie header to extract all cookies
const cookies = setCookieHeader.map(cookie => cookie.split(';')[0]);
const cookieString = cookies.join('; '); // Join all cookies into a single string
if (cookieString) {
console.log('Session cookies obtained from login.');
return cookieString;
}
}
throw new Error('No session cookies received from login response.');
} catch (error) {
if (error.response) {
throw new Error(`Login API Error: ${JSON.stringify(error.response.data)}`);
} else if (error.request) {
throw new Error('Login API Error: No response received from the login service.');
} else {
throw new Error(`Login Error: ${error.message}`);
}
}
}
// Function to Generate Redemption Code
async function generateRedemptionCode(name, quota, count, sessionCookies) {
console.log(`Using session cookies: ${sessionCookies}`); // Log the cookies being used
const url = `${process.env.REDEMPTION_API_BASE_URL}/api/redemption/`;
const headers = {
'Accept': 'application/json, text/plain, */*',
'Accept-Language': 'en-US,en;q=0.9',
'Connection': 'keep-alive',
'Content-Type': 'application/json',
'Origin': process.env.REDEMPTION_API_BASE_URL,
'Referer': `${process.env.REDEMPTION_API_BASE_URL}/redemption`,
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',
'VoApi-User': '1',
'Cookie': sessionCookies // Use all stored cookies
};
const data = {
name: name,
quota: parseInt(quota),
count: parseInt(count)
};
try {
const response = await axios.post(url, data, {
headers: headers,
httpsAgent: new (require('https').Agent)({ rejectUnauthorized: false }) // Equivalent to --insecure
});
console.log('Redemption code generated successfully.');
return response.data;
} catch (error) {
if (error.response) {
throw new Error(`API Error: ${JSON.stringify(error.response.data)}`);
} else if (error.request) {
throw new Error('API Error: No response received from the redemption service.');
} else {
throw new Error(`Error: ${error.message}`);
}
}
}
// Function to Save Redemption Code to the Database
async function saveRedemptionCode(codeData, name, quota, count, userIP) {
try {
// Assuming the API returns the code in codeData.code
const code = codeData.code || JSON.stringify(codeData);
const insertQuery = `
INSERT INTO redemption_codes (code, name, quota, count, user_ip)
VALUES (?, ?, ?, ?, ?)
`;
await promisePool.query(insertQuery, [code, name, quota, count, userIP]);
console.log('Redemption code saved to database.');
} catch (err) {
console.error('Error saving redemption code to database:', err);
throw err;
}
}
// Route: POST /api/create
app.post('/api/create', [
body('username').isString().trim().notEmpty(),
body('name').isString().trim().notEmpty(),
body('quota').isInt({ min: 1 }),
body('count').isInt({ min: 1 })
], async (req, res) => {
// Validate Input
const errors = validationResult(req);
if (!errors.isEmpty()) {
return res.status(400).json({ success: false, errors: errors.array() });
}
const { username, name, quota, count } = req.body;
const userIP = getUserIP(req);
const apiKey = req.headers['x-api-key'];
// Check API Key
if (apiKey !== process.env.API_KEY) {
return res.status(401).json({
success: false,
error: 'Unauthorized: Invalid API key'
});
}
try {
// Perform Login to Obtain New Session Cookies
console.log('Performing login to obtain new session cookies...');
const sessionCookies = await performLogin();
// Save the New Session Cookies to the Database
await saveSessionCookies(username, sessionCookies);
console.log('New session cookies saved to the database.');
// Generate Redemption Code Using the New Session Cookies
const redemptionCode = await generateRedemptionCode(name, quota, count, sessionCookies);
// Save Redemption Code to Database
await saveRedemptionCode(redemptionCode, name, quota, count, userIP);
res.json({
success: true,
data: redemptionCode
});
} catch (error) {
console.error('Error:', error.message);
res.status(500).json({
success: false,
error: error.message
});
}
});
// Start the Server
app.listen(port, () => {
console.log(`App is running at http://localhost:${port}`);
});
|